diff --git a/.github/workflows/sub_buildMacOSCondaApple.yml b/.github/workflows/sub_buildMacOSCondaApple.yml index f92043c755..59fc1666f2 100644 --- a/.github/workflows/sub_buildMacOSCondaApple.yml +++ b/.github/workflows/sub_buildMacOSCondaApple.yml @@ -78,7 +78,7 @@ jobs: with: activate-environment: .conda/freecad environment-file: conda/conda-env.yaml - channels: conda-forge,defaults + channels: conda-forge channel-priority: true miniforge-version: latest - name: Install FreeCAD dependencies diff --git a/.github/workflows/sub_buildMacOSCondaIntel.yml b/.github/workflows/sub_buildMacOSCondaIntel.yml index 102ca48cf8..b4d4e80b32 100644 --- a/.github/workflows/sub_buildMacOSCondaIntel.yml +++ b/.github/workflows/sub_buildMacOSCondaIntel.yml @@ -78,7 +78,7 @@ jobs: with: activate-environment: .conda/freecad environment-file: conda/conda-env.yaml - channels: conda-forge,defaults + channels: conda-forge channel-priority: true miniforge-version: latest - name: Install FreeCAD dependencies diff --git a/.github/workflows/sub_buildUbuntu2204Conda.yml b/.github/workflows/sub_buildUbuntu2204Conda.yml index 4e47caacad..43d31ec714 100644 --- a/.github/workflows/sub_buildUbuntu2204Conda.yml +++ b/.github/workflows/sub_buildUbuntu2204Conda.yml @@ -76,7 +76,7 @@ jobs: with: activate-environment: .conda/freecad environment-file: conda/conda-env.yaml - channels: conda-forge,defaults + channels: conda-forge channel-priority: true miniforge-version: latest - name: Install FreeCAD dependencies diff --git a/.github/workflows/sub_buildUbuntu2204CondaQt6.yml b/.github/workflows/sub_buildUbuntu2204CondaQt6.yml index 9c4cd26616..59fca06b8d 100644 --- a/.github/workflows/sub_buildUbuntu2204CondaQt6.yml +++ b/.github/workflows/sub_buildUbuntu2204CondaQt6.yml @@ -76,7 +76,7 @@ jobs: with: activate-environment: .conda/freecad environment-file: conda/conda-env-qt6.yaml - channels: conda-forge,defaults + channels: conda-forge channel-priority: true miniforge-version: latest - name: Install FreeCAD dependencies diff --git a/.github/workflows/sub_buildWindowsConda.yml b/.github/workflows/sub_buildWindowsConda.yml index 8acb274bcd..e51d5cc35a 100644 --- a/.github/workflows/sub_buildWindowsConda.yml +++ b/.github/workflows/sub_buildWindowsConda.yml @@ -71,7 +71,7 @@ jobs: with: activate-environment: .conda/freecad environment-file: conda/conda-env.yaml - channels: conda-forge,defaults + channels: conda-forge channel-priority: true miniforge-version: latest - name: Install FreeCAD dependencies diff --git a/CMakePresets.json b/CMakePresets.json index 43c45c1890..4dc3309a1c 100644 --- a/CMakePresets.json +++ b/CMakePresets.json @@ -151,6 +151,10 @@ }, "cmakeExecutable": "${sourceDir}/conda/cmake.sh", "cacheVariables": { + "CMAKE_IGNORE_PREFIX_PATH": { + "type": "STRING", + "value": "/opt/homebrew;/usr/local/homebrew" + }, "CMAKE_INCLUDE_PATH": { "type": "FILEPATH", "value": "${sourceDir}/.conda/freecad/include" diff --git a/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake b/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake index 44a9dd2b4e..7710219fe0 100644 --- a/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake +++ b/cMake/FreeCAD_Helpers/SetGlobalCompilerAndLinkerSettings.cmake @@ -34,6 +34,7 @@ macro(SetGlobalCompilerAndLinkerSettings) if(FREECAD_RELEASE_PDB) set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} /Zi") set (CMAKE_SHARED_LINKER_FLAGS_RELEASE "${CMAKE_SHARED_LINKER_FLAGS_RELEASE} /DEBUG") + set (CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} /DEBUG") endif(FREECAD_RELEASE_PDB) if(FREECAD_RELEASE_SEH) # remove /EHsc or /EHs flags because they are incompatible with /EHa diff --git a/conda/conda-env-qt6.yaml b/conda/conda-env-qt6.yaml index ed542fbf70..7fe8ee0ab4 100644 --- a/conda/conda-env-qt6.yaml +++ b/conda/conda-env-qt6.yaml @@ -2,6 +2,7 @@ name: freecad channels: - conda-forge dependencies: +- conda-forge/noarch::conda-libmamba-solver==24.7.0 - conda-devenv - mamba - python==3.12.* diff --git a/conda/conda-env.yaml b/conda/conda-env.yaml index eb2448722f..ecc36e8410 100644 --- a/conda/conda-env.yaml +++ b/conda/conda-env.yaml @@ -2,6 +2,7 @@ name: freecad channels: - conda-forge dependencies: +- conda-forge/noarch::conda-libmamba-solver==24.7.0 - conda-devenv - mamba - python==3.11.* diff --git a/conda/environment-qt6.devenv.yml b/conda/environment-qt6.devenv.yml index ad4025587c..6f44acd7de 100644 --- a/conda/environment-qt6.devenv.yml +++ b/conda/environment-qt6.devenv.yml @@ -3,6 +3,7 @@ channels: - conda-forge - conda-forge/label/pivy_rc dependencies: +- conda-forge/noarch::conda-libmamba-solver==24.7.0 - libspnav # [linux] - kernel-headers_linux-64 # [linux and x86_64] - libdrm-cos7-x86_64 # [linux and x86_64] diff --git a/conda/environment.devenv.yml b/conda/environment.devenv.yml index 45dd753303..20c93e576b 100644 --- a/conda/environment.devenv.yml +++ b/conda/environment.devenv.yml @@ -2,6 +2,7 @@ name: freecad channels: - conda-forge dependencies: +- conda-forge/noarch::conda-libmamba-solver==24.7.0 - libspnav # [linux] - kernel-headers_linux-64 # [linux and x86_64] - libdrm-cos6-x86_64 # [linux and x86_64] diff --git a/src/App/Application.cpp b/src/App/Application.cpp index c7e1f6ac3f..e348c19662 100644 --- a/src/App/Application.cpp +++ b/src/App/Application.cpp @@ -427,6 +427,10 @@ void Application::setupPythonException(PyObject* module) Base::PyExc_FC_PropertyError = PyErr_NewException("Base.PropertyError", PyExc_AttributeError, nullptr); Py_INCREF(Base::PyExc_FC_PropertyError); PyModule_AddObject(module, "PropertyError", Base::PyExc_FC_PropertyError); + + Base::PyExc_FC_AbortIOException = PyErr_NewException("Base.PyExc_FC_AbortIOException", PyExc_BaseException, nullptr); + Py_INCREF(Base::PyExc_FC_AbortIOException); + PyModule_AddObject(module, "AbortIOException", Base::PyExc_FC_AbortIOException); } // clang-format on diff --git a/src/App/Document.cpp b/src/App/Document.cpp index 91b330bdb8..c3e3f921d5 100644 --- a/src/App/Document.cpp +++ b/src/App/Document.cpp @@ -1475,6 +1475,7 @@ Document::readObjects(Base::XMLReader& reader) void Document::addRecomputeObject(DocumentObject *obj) { if(testStatus(Status::Restoring) && obj) { + setStatus(Status::RecomputeOnRestore, true); d->touchedObjs.insert(obj); obj->touch(); } diff --git a/src/App/Document.h b/src/App/Document.h index c178df04e9..c49434ff7b 100644 --- a/src/App/Document.h +++ b/src/App/Document.h @@ -77,6 +77,7 @@ public: RestoreError = 10, LinkStampChanged = 11, // Indicates during restore time if any linked document's time stamp has changed IgnoreErrorOnRecompute = 12, // Don't report errors if the recompute failed + RecomputeOnRestore = 13, // Mark pending recompute on restore for migration purposes }; /** @name Properties */ diff --git a/src/App/DocumentObject.h b/src/App/DocumentObject.h index af4867a5bd..8c5ae02155 100644 --- a/src/App/DocumentObject.h +++ b/src/App/DocumentObject.h @@ -442,6 +442,12 @@ public: /* Return true to cause PropertyView to show linked object's property */ virtual bool canLinkProperties() const {return true;} + /* Return whether this object is a link */ + virtual bool isLink() const {return false;}; + + /* Return whether this object is a link group */ + virtual bool isLinkGroup() const {return false;}; + /* Return true to bypass duplicate label checking */ virtual bool allowDuplicateLabel() const {return false;} diff --git a/src/App/DocumentPy.xml b/src/App/DocumentPy.xml index c43726622c..2e929d7ac1 100644 --- a/src/App/DocumentPy.xml +++ b/src/App/DocumentPy.xml @@ -56,6 +56,18 @@ For a temporary document it returns its transient directory. + + + getUniqueObjectName(objName) -> objName + + Return the same name, or the name made unique, for Example Box -> Box002 if there are conflicting name + already in the document. + + ObjName : str + Object name. + + + Merges this document with another project file diff --git a/src/App/DocumentPyImp.cpp b/src/App/DocumentPyImp.cpp index c9beed7a99..229ba5d7d7 100644 --- a/src/App/DocumentPyImp.cpp +++ b/src/App/DocumentPyImp.cpp @@ -217,6 +217,18 @@ PyObject* DocumentPy::getFileName(PyObject* args) return Py::new_reference_to(Py::String(fn)); } +PyObject* DocumentPy::getUniqueObjectName(PyObject *args) +{ + char *sName; + if (!PyArg_ParseTuple(args, "s", &sName)) + return nullptr; + PY_TRY { + auto newName = getDocumentPtr()->getUniqueObjectName(sName); + return Py::new_reference_to(Py::String(newName)); + } + PY_CATCH; +} + PyObject* DocumentPy::mergeProject(PyObject * args) { char* filename; diff --git a/src/App/GeoFeature.cpp b/src/App/GeoFeature.cpp index 03f3ccfe4f..e3f448fac9 100644 --- a/src/App/GeoFeature.cpp +++ b/src/App/GeoFeature.cpp @@ -25,6 +25,8 @@ #include +#include + #include "ComplexGeoData.h" #include "Document.h" #include "GeoFeature.h" @@ -157,7 +159,7 @@ DocumentObject *GeoFeature::resolveElement(DocumentObject *obj, const char *subn } if(geoFeature) *geoFeature = geo; - if(!obj || (filter && obj!=filter)) + if(filter && geo!=filter) return nullptr; if(!element || !element[0]) { if(append) @@ -270,3 +272,63 @@ GeoFeature::getHigherElements(const char *element, bool silent) const return {}; return prop->getComplexData()->getHigherElements(element, silent); } + +Base::Placement GeoFeature::getPlacementFromProp(App::DocumentObject* obj, const char* propName) +{ + Base::Placement plc = Base::Placement(); + auto* propPlacement = dynamic_cast(obj->getPropertyByName(propName)); + if (propPlacement) { + plc = propPlacement->getValue(); + } + return plc; +} + +Base::Placement GeoFeature::getGlobalPlacement(App::DocumentObject* targetObj, + App::DocumentObject* rootObj, + const std::string& sub) +{ + if (!targetObj || !rootObj || sub.empty()) { + return Base::Placement(); + } + std::vector names = Base::Tools::splitSubName(sub); + + App::Document* doc = rootObj->getDocument(); + Base::Placement plc = getPlacementFromProp(rootObj, "Placement"); + + if (targetObj == rootObj) return plc; + + for (auto& name : names) { + App::DocumentObject* obj = doc->getObject(name.c_str()); + if (!obj) { + return Base::Placement(); + } + + plc = plc * getPlacementFromProp(obj, "Placement"); + + if (obj == targetObj) { + return plc; + } + if (obj->isLink()) { + // Update doc in case its an external link. + doc = obj->getLinkedObject()->getDocument(); + } + } + + // If targetObj has not been found there's a problem + return Base::Placement(); +} + +Base::Placement GeoFeature::getGlobalPlacement(App::DocumentObject* targetObj, + App::PropertyXLinkSub* prop) +{ + if (!targetObj || !prop) { + return Base::Placement(); + } + + std::vector subs = prop->getSubValues(); + if (subs.empty()) { + return Base::Placement(); + } + + return getGlobalPlacement(targetObj, prop->getValue(), subs[0]); +} diff --git a/src/App/GeoFeature.h b/src/App/GeoFeature.h index 9c0443611f..216f741dcd 100644 --- a/src/App/GeoFeature.h +++ b/src/App/GeoFeature.h @@ -179,6 +179,10 @@ public: /// Return the higher level element names of the given element virtual std::vector getHigherElements(const char *name, bool silent=false) const; + static Base::Placement getPlacementFromProp(DocumentObject* obj, const char* propName); + static Base::Placement getGlobalPlacement(DocumentObject* targetObj, DocumentObject* rootObj, const std::string& sub); + static Base::Placement getGlobalPlacement(DocumentObject* targetObj, PropertyXLinkSub* prop); + protected: void onChanged(const Property* prop) override; // void onDocumentRestored() override; diff --git a/src/App/Link.cpp b/src/App/Link.cpp index 12fb793b9f..815787de66 100644 --- a/src/App/Link.cpp +++ b/src/App/Link.cpp @@ -2282,6 +2282,16 @@ bool Link::canLinkProperties() const { return true; } +bool Link::isLink() const +{ + return ElementCount.getValue() == 0; +} + +bool Link::isLinkGroup() const +{ + return ElementCount.getValue() > 0; +} + ////////////////////////////////////////////////////////////////////////////////////////// namespace App { @@ -2309,6 +2319,11 @@ bool LinkElement::canDelete() const { return !owner || !owner->getDocument()->getObjectByID(_LinkOwner.getValue()); } +bool LinkElement::isLink() const +{ + return true; +} + App::Link* LinkElement::getLinkGroup() const { std::vector inList = getInList(); diff --git a/src/App/Link.h b/src/App/Link.h index 4dcb433ee6..7cb879f75a 100644 --- a/src/App/Link.h +++ b/src/App/Link.h @@ -556,6 +556,10 @@ public: } bool canLinkProperties() const override; + + bool isLink() const override; + + bool isLinkGroup() const override; }; using LinkPython = App::FeaturePythonT; @@ -600,6 +604,8 @@ public: _handleChangedPropertyName(reader,TypeName,PropName); } + bool isLink() const override; + App::Link* getLinkGroup() const; }; diff --git a/src/App/PropertyStandard.cpp b/src/App/PropertyStandard.cpp index 09c8c489d0..2de7de1fb9 100644 --- a/src/App/PropertyStandard.cpp +++ b/src/App/PropertyStandard.cpp @@ -3018,6 +3018,17 @@ void PropertyMaterialList::setTransparency(int index, float val) hasSetValue(); } +void PropertyMaterialList::setTransparencies(const std::vector& transparencies) +{ + aboutToSetValue(); + setSize(transparencies.size(), _lValueList[0]); + + for (std::size_t i = 0; i < transparencies.size(); i++) { + _lValueList[i].transparency = transparencies[i]; + } + hasSetValue(); +} + const Color& PropertyMaterialList::getAmbientColor() const { return _lValueList[0].ambientColor; diff --git a/src/App/PropertyStandard.h b/src/App/PropertyStandard.h index 4c2161a30f..41bd8257ee 100644 --- a/src/App/PropertyStandard.h +++ b/src/App/PropertyStandard.h @@ -1156,6 +1156,7 @@ public: void setTransparency(float); void setTransparency(int index, float); + void setTransparencies(const std::vector& transparencies); const Color& getAmbientColor() const; const Color& getAmbientColor(int index) const; diff --git a/src/App/Resources/translations/App.ts b/src/App/Resources/translations/App.ts index f2ef4c244e..880c2f2138 100644 --- a/src/App/Resources/translations/App.ts +++ b/src/App/Resources/translations/App.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed diff --git a/src/App/Resources/translations/App_be.ts b/src/App/Resources/translations/App_be.ts index 98bd53be41..cd55c7a6a1 100644 --- a/src/App/Resources/translations/App_be.ts +++ b/src/App/Resources/translations/App_be.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Без назвы diff --git a/src/App/Resources/translations/App_ca.ts b/src/App/Resources/translations/App_ca.ts index bf8cde9182..86b9d63a6d 100644 --- a/src/App/Resources/translations/App_ca.ts +++ b/src/App/Resources/translations/App_ca.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Sense nom diff --git a/src/App/Resources/translations/App_cs.ts b/src/App/Resources/translations/App_cs.ts index 4ca76806d9..92b2e8ef76 100644 --- a/src/App/Resources/translations/App_cs.ts +++ b/src/App/Resources/translations/App_cs.ts @@ -14,7 +14,7 @@ které odkazují na stejný konfigurovatelný objekt QObject - + Unnamed Nepojmenovaný diff --git a/src/App/Resources/translations/App_da.ts b/src/App/Resources/translations/App_da.ts index 21b1dfe4eb..fcfb499a43 100644 --- a/src/App/Resources/translations/App_da.ts +++ b/src/App/Resources/translations/App_da.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Unavngivet diff --git a/src/App/Resources/translations/App_de.ts b/src/App/Resources/translations/App_de.ts index ff7da2ab81..270423018e 100644 --- a/src/App/Resources/translations/App_de.ts +++ b/src/App/Resources/translations/App_de.ts @@ -14,7 +14,7 @@ angewendet werden soll, die das gleiche konfigurierbare Objekt referenzieren QObject - + Unnamed Unbenannt diff --git a/src/App/Resources/translations/App_el.ts b/src/App/Resources/translations/App_el.ts index 2e8617f2f2..3fce89401d 100644 --- a/src/App/Resources/translations/App_el.ts +++ b/src/App/Resources/translations/App_el.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Ανώνυμο diff --git a/src/App/Resources/translations/App_es-AR.ts b/src/App/Resources/translations/App_es-AR.ts index 643e352f7e..75c8915778 100644 --- a/src/App/Resources/translations/App_es-AR.ts +++ b/src/App/Resources/translations/App_es-AR.ts @@ -14,7 +14,7 @@ que hacen referencia al mismo objeto configurable QObject - + Unnamed Sin nombre diff --git a/src/App/Resources/translations/App_es-ES.ts b/src/App/Resources/translations/App_es-ES.ts index acbdf4956c..e64fe55b1f 100644 --- a/src/App/Resources/translations/App_es-ES.ts +++ b/src/App/Resources/translations/App_es-ES.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Sin nombre diff --git a/src/App/Resources/translations/App_eu.ts b/src/App/Resources/translations/App_eu.ts index fc6c3dd932..643abda8e6 100644 --- a/src/App/Resources/translations/App_eu.ts +++ b/src/App/Resources/translations/App_eu.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Izenik gabea diff --git a/src/App/Resources/translations/App_fi.ts b/src/App/Resources/translations/App_fi.ts index 8e05e59098..5b1821d977 100644 --- a/src/App/Resources/translations/App_fi.ts +++ b/src/App/Resources/translations/App_fi.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Nimetön diff --git a/src/App/Resources/translations/App_fr.ts b/src/App/Resources/translations/App_fr.ts index d03b493dc3..88391a1835 100644 --- a/src/App/Resources/translations/App_fr.ts +++ b/src/App/Resources/translations/App_fr.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Nouveau diff --git a/src/App/Resources/translations/App_hr.ts b/src/App/Resources/translations/App_hr.ts index b6b05ba8a9..9e8fee2561 100644 --- a/src/App/Resources/translations/App_hr.ts +++ b/src/App/Resources/translations/App_hr.ts @@ -14,7 +14,7 @@ na sve veze koje referenciraju isti konfigurabilni objekt QObject - + Unnamed Neimenovano diff --git a/src/App/Resources/translations/App_hu.ts b/src/App/Resources/translations/App_hu.ts index 5bf868be56..5b8d5f29e3 100644 --- a/src/App/Resources/translations/App_hu.ts +++ b/src/App/Resources/translations/App_hu.ts @@ -14,7 +14,7 @@ amelyek ugyanarra a konfigurálható tárgyra hivatkoznak QObject - + Unnamed Névtelen diff --git a/src/App/Resources/translations/App_it.ts b/src/App/Resources/translations/App_it.ts index 70a9351002..bcf70fbcb5 100644 --- a/src/App/Resources/translations/App_it.ts +++ b/src/App/Resources/translations/App_it.ts @@ -14,7 +14,7 @@ che fanno riferimento allo stesso oggetto configurabile QObject - + Unnamed Senza nome diff --git a/src/App/Resources/translations/App_ja.ts b/src/App/Resources/translations/App_ja.ts index 5874e20b51..04db5e4b6a 100644 --- a/src/App/Resources/translations/App_ja.ts +++ b/src/App/Resources/translations/App_ja.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed 名称未設定 diff --git a/src/App/Resources/translations/App_ka.ts b/src/App/Resources/translations/App_ka.ts index 59248c7e54..af5dfe2d31 100644 --- a/src/App/Resources/translations/App_ka.ts +++ b/src/App/Resources/translations/App_ka.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed უსახელო diff --git a/src/App/Resources/translations/App_ko.ts b/src/App/Resources/translations/App_ko.ts index 252b3a191d..589de3ade5 100644 --- a/src/App/Resources/translations/App_ko.ts +++ b/src/App/Resources/translations/App_ko.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed 이름없음 diff --git a/src/App/Resources/translations/App_lt.ts b/src/App/Resources/translations/App_lt.ts index 3047d14042..78231d13b9 100644 --- a/src/App/Resources/translations/App_lt.ts +++ b/src/App/Resources/translations/App_lt.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Be pavadinimo diff --git a/src/App/Resources/translations/App_nl.ts b/src/App/Resources/translations/App_nl.ts index d862f86f98..2ebbf19a9d 100644 --- a/src/App/Resources/translations/App_nl.ts +++ b/src/App/Resources/translations/App_nl.ts @@ -14,7 +14,7 @@ die verwijzen naar hetzelfde configureerbare object QObject - + Unnamed Naamloos diff --git a/src/App/Resources/translations/App_pl.ts b/src/App/Resources/translations/App_pl.ts index 76a3db09a8..b393f37ee6 100644 --- a/src/App/Resources/translations/App_pl.ts +++ b/src/App/Resources/translations/App_pl.ts @@ -14,7 +14,7 @@ które odnoszą się do tego samego obiektu konfigurowalnego QObject - + Unnamed Nienazwany diff --git a/src/App/Resources/translations/App_pt-BR.ts b/src/App/Resources/translations/App_pt-BR.ts index f55f17d5c1..66e365d723 100644 --- a/src/App/Resources/translations/App_pt-BR.ts +++ b/src/App/Resources/translations/App_pt-BR.ts @@ -14,7 +14,7 @@ que referenciam o mesmo objeto configurável QObject - + Unnamed Sem nome diff --git a/src/App/Resources/translations/App_pt-PT.ts b/src/App/Resources/translations/App_pt-PT.ts index f80096c2dd..6f99adceec 100644 --- a/src/App/Resources/translations/App_pt-PT.ts +++ b/src/App/Resources/translations/App_pt-PT.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Sem nome diff --git a/src/App/Resources/translations/App_ro.ts b/src/App/Resources/translations/App_ro.ts index 78509c366f..139d101c27 100644 --- a/src/App/Resources/translations/App_ro.ts +++ b/src/App/Resources/translations/App_ro.ts @@ -14,7 +14,7 @@ care fac referire la același obiect configurabil QObject - + Unnamed Nedenumit diff --git a/src/App/Resources/translations/App_ru.ts b/src/App/Resources/translations/App_ru.ts index b6a8e8dcdf..745dd41303 100644 --- a/src/App/Resources/translations/App_ru.ts +++ b/src/App/Resources/translations/App_ru.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Безымянный diff --git a/src/App/Resources/translations/App_sl.ts b/src/App/Resources/translations/App_sl.ts index c657058b84..990d5c3775 100644 --- a/src/App/Resources/translations/App_sl.ts +++ b/src/App/Resources/translations/App_sl.ts @@ -14,7 +14,7 @@ za vse povezave, ki se sklicujejo na isti nastavljivi predmet QObject - + Unnamed Neimenovan diff --git a/src/App/Resources/translations/App_sr-CS.ts b/src/App/Resources/translations/App_sr-CS.ts index 795f89392a..5d4a84a81b 100644 --- a/src/App/Resources/translations/App_sr-CS.ts +++ b/src/App/Resources/translations/App_sr-CS.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Bez imena diff --git a/src/App/Resources/translations/App_sr.ts b/src/App/Resources/translations/App_sr.ts index 1110fe8f7e..bec33583f9 100644 --- a/src/App/Resources/translations/App_sr.ts +++ b/src/App/Resources/translations/App_sr.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Без имена diff --git a/src/App/Resources/translations/App_sv-SE.ts b/src/App/Resources/translations/App_sv-SE.ts index 8f3e737504..7ba807bf93 100644 --- a/src/App/Resources/translations/App_sv-SE.ts +++ b/src/App/Resources/translations/App_sv-SE.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Namnlös diff --git a/src/App/Resources/translations/App_tr.ts b/src/App/Resources/translations/App_tr.ts index 80c399c441..8f92d77c2d 100644 --- a/src/App/Resources/translations/App_tr.ts +++ b/src/App/Resources/translations/App_tr.ts @@ -14,7 +14,7 @@ uygulanmayacağına ilişkin son kullanıcı seçimini saklar QObject - + Unnamed İsimsiz diff --git a/src/App/Resources/translations/App_uk.ts b/src/App/Resources/translations/App_uk.ts index bd51450235..c30b6de671 100644 --- a/src/App/Resources/translations/App_uk.ts +++ b/src/App/Resources/translations/App_uk.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed Без назви diff --git a/src/App/Resources/translations/App_val-ES.ts b/src/App/Resources/translations/App_val-ES.ts index a4273ca55c..fc4da6392f 100644 --- a/src/App/Resources/translations/App_val-ES.ts +++ b/src/App/Resources/translations/App_val-ES.ts @@ -14,7 +14,7 @@ that reference the same configurable object QObject - + Unnamed Sense nom diff --git a/src/App/Resources/translations/App_zh-CN.ts b/src/App/Resources/translations/App_zh-CN.ts index 2e2895b873..6c6eba249d 100644 --- a/src/App/Resources/translations/App_zh-CN.ts +++ b/src/App/Resources/translations/App_zh-CN.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed 未命名 diff --git a/src/App/Resources/translations/App_zh-TW.ts b/src/App/Resources/translations/App_zh-TW.ts index 95ab1f9703..ef8c6e4e6b 100644 --- a/src/App/Resources/translations/App_zh-TW.ts +++ b/src/App/Resources/translations/App_zh-TW.ts @@ -13,7 +13,7 @@ that reference the same configurable object QObject - + Unnamed 未命名 diff --git a/src/Base/Parameter.cpp b/src/Base/Parameter.cpp index 5bff947317..b2308a7804 100644 --- a/src/Base/Parameter.cpp +++ b/src/Base/Parameter.cpp @@ -50,7 +50,7 @@ #endif #include -#include "fmt/printf.h" +#include #include "Parameter.h" #include "Parameter.inl" diff --git a/src/Base/PyObjectBase.cpp b/src/Base/PyObjectBase.cpp index 45c62c8f27..b3e1db9cd9 100644 --- a/src/Base/PyObjectBase.cpp +++ b/src/Base/PyObjectBase.cpp @@ -49,6 +49,7 @@ PyObject* Base::PyExc_FC_ExpressionError = nullptr; PyObject* Base::PyExc_FC_ParserError = nullptr; PyObject* Base::PyExc_FC_CADKernelError = nullptr; PyObject* Base::PyExc_FC_PropertyError = nullptr; +PyObject* Base::PyExc_FC_AbortIOException = nullptr; typedef struct { //NOLINT PyObject_HEAD diff --git a/src/Base/PyObjectBase.h b/src/Base/PyObjectBase.h index 2f40a24a61..76b0e72fcd 100644 --- a/src/Base/PyObjectBase.h +++ b/src/Base/PyObjectBase.h @@ -431,6 +431,7 @@ BaseExport extern PyObject* PyExc_FC_ExpressionError; BaseExport extern PyObject* PyExc_FC_ParserError; BaseExport extern PyObject* PyExc_FC_CADKernelError; BaseExport extern PyObject* PyExc_FC_PropertyError; +BaseExport extern PyObject* PyExc_FC_AbortIOException; /** Exception handling for python callback functions * Is a convenience macro to manage the exception handling of python callback diff --git a/src/Base/Reader.cpp b/src/Base/Reader.cpp index 2116afbed3..f172b18c78 100644 --- a/src/Base/Reader.cpp +++ b/src/Base/Reader.cpp @@ -181,6 +181,8 @@ bool Base::XMLReader::read() void Base::XMLReader::readElement(const char* ElementName) { bool ok {}; + + endCharStream(); int currentLevel = Level; std::string currentName = LocalName; do { @@ -248,6 +250,8 @@ bool Base::XMLReader::isEndOfDocument() const void Base::XMLReader::readEndElement(const char* ElementName, int level) { + endCharStream(); + // if we are already at the end of the current element if ((ReadType == EndElement || ReadType == StartEndElement) && ElementName && LocalName == ElementName && (level < 0 || level == Level)) { diff --git a/src/Base/Resources/translations/Base_eu.ts b/src/Base/Resources/translations/Base_eu.ts index c580f1d078..271723e7ef 100644 --- a/src/Base/Resources/translations/Base_eu.ts +++ b/src/Base/Resources/translations/Base_eu.ts @@ -6,12 +6,12 @@ Standard (mm, kg, s, °) - Standard (mm, kg, s, °) + Estandarra (mm, kg, s, °) MKS (m, kg, s, °) - MKS (m, kg, s, °) + MKS (m, kg, s, °) diff --git a/src/Base/Resources/translations/Base_zh-TW.ts b/src/Base/Resources/translations/Base_zh-TW.ts index 0d34cbda7c..954cf86731 100644 --- a/src/Base/Resources/translations/Base_zh-TW.ts +++ b/src/Base/Resources/translations/Base_zh-TW.ts @@ -11,7 +11,7 @@ MKS (m, kg, s, °) - MKS (m, kg, s, °) + MKS (m, kg, s, °) @@ -36,7 +36,7 @@ Metric small parts & CNC (mm, mm/min) - Metric small parts & CNC (mm, mm/min) + 公制小零件 & CNC (mm, mm/min) @@ -46,7 +46,7 @@ FEM (mm, N, s) - FEM (mm, N, s) + FEM (mm, N, s) diff --git a/src/Base/Tools.cpp b/src/Base/Tools.cpp index b164164489..eab37f5860 100644 --- a/src/Base/Tools.cpp +++ b/src/Base/Tools.cpp @@ -372,3 +372,24 @@ std::string Base::Tools::currentDateTimeString() .toString(Qt::ISODate) .toStdString(); } + +std::vector Base::Tools::splitSubName(const std::string& subname) +{ + // Turns 'Part.Part001.Body.Pad.Edge1' + // Into ['Part', 'Part001', 'Body', 'Pad', 'Edge1'] + std::vector subNames; + std::string subName; + std::istringstream subNameStream(subname); + while (std::getline(subNameStream, subName, '.')) { + subNames.push_back(subName); + } + + // Check if the last character of the input string is the delimiter. + // If so, add an empty string to the subNames vector. + // Because the last subname is the element name and can be empty. + if (!subname.empty() && subname.back() == '.') { + subNames.push_back(""); // Append empty string for trailing dot. + } + + return subNames; +} diff --git a/src/Base/Tools.h b/src/Base/Tools.h index b17907bbc4..e2018b9889 100644 --- a/src/Base/Tools.h +++ b/src/Base/Tools.h @@ -325,6 +325,8 @@ struct BaseExport Tools static std::string joinList(const std::vector& vec, const std::string& sep = ", "); static std::string currentDateTimeString(); + + static std::vector splitSubName(const std::string& subname); }; diff --git a/src/Ext/freecad/CMakeLists.txt b/src/Ext/freecad/CMakeLists.txt index d1d660f337..caaf5b5eb5 100644 --- a/src/Ext/freecad/CMakeLists.txt +++ b/src/Ext/freecad/CMakeLists.txt @@ -28,6 +28,7 @@ configure_file(__init__.py.template ${NAMESPACE_INIT}) set(EXT_FILES freecad_doc.py + module_io.py part.py partdesign.py project_utility.py diff --git a/src/Ext/freecad/module_io.py b/src/Ext/freecad/module_io.py new file mode 100644 index 0000000000..321aa03bf6 --- /dev/null +++ b/src/Ext/freecad/module_io.py @@ -0,0 +1,13 @@ +def OpenInsertObject(importerModule, objectPath, importMethod, docName = ""): + try: + importArgs = [] + importKwargs = {} + + if docName: + importArgs.append(docName) + if hasattr(importerModule, "importOptions"): + importKwargs["options"] = importerModule.importOptions(objectPath) + + getattr(importerModule, importMethod)(objectPath, *importArgs, **importKwargs) + except PyExc_FC_AbortIOException: + pass diff --git a/src/Gui/Application.cpp b/src/Gui/Application.cpp index cd46f0b4a2..9690f9a919 100644 --- a/src/Gui/Application.cpp +++ b/src/Gui/Application.cpp @@ -379,7 +379,6 @@ Application::Application(bool GUIenabled) App::GetApplication().signalShowHidden.connect( std::bind(&Gui::Application::slotShowHidden, this, sp::_1)); // NOLINTEND - // install the last active language ParameterGrp::handle hPGrp = App::GetApplication().GetUserParameter().GetGroup("BaseApp"); hPGrp = hPGrp->GetGroup("Preferences")->GetGroup("General"); @@ -596,6 +595,7 @@ Application::~Application() // creating std commands //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + void Application::open(const char* FileName, const char* Module) { WaitCursor wc; @@ -633,22 +633,25 @@ void Application::open(const char* FileName, const char* Module) Command::doCommand(Command::App, "FreeCAD.openDocument('%s')", unicodepath.c_str()); + Gui::Application::checkForRecomputes(); } } else { - // issue module loading - Command::doCommand(Command::App, "import %s", Module); - - // check for additional import options - std::stringstream str; - str << "if hasattr(" << Module << ", \"importOptions\"):\n" - << " options = " << Module << ".importOptions(u\"" << unicodepath << "\")\n" - << " " << Module << ".open(u\"" << unicodepath << "\", options = options)\n" - << "else:\n" - << " " << Module << ".open(u\"" << unicodepath << "\")\n"; - - std::string code = str.str(); - Gui::Command::runCommand(Gui::Command::App, code.c_str()); + // Load using provided python module + { + Base::PyGILStateLocker locker; + Py::Module moduleIo(PyImport_ImportModule("freecad.module_io")); + const auto dictS = moduleIo.getDict().keys().as_string(); + if (!moduleIo.isNull() && moduleIo.hasAttr("OpenInsertObject")) + { + const Py::TupleN args( + Py::Module(PyImport_ImportModule(Module)), + Py::String(unicodepath), + Py::String("open") + ); + moduleIo.callMemberFunction("OpenInsertObject", args); + } + } // ViewFit if (sendHasMsgToActiveView("ViewFit")) { @@ -713,30 +716,22 @@ void Application::importFrom(const char* FileName, const char* DocName, const ch } } - // check for additional import options - std::stringstream str; - if (DocName) { - str << "if hasattr(" << Module << ", \"importOptions\"):\n" - << " options = " << Module << ".importOptions(u\"" << unicodepath - << "\")\n" - << " " << Module << ".insert(u\"" << unicodepath << "\", \"" << DocName - << "\", options = options)\n" - << "else:\n" - << " " << Module << ".insert(u\"" << unicodepath << "\", \"" << DocName - << "\")\n"; + // Load using provided python module + { + Base::PyGILStateLocker locker; + Py::Module moduleIo(PyImport_ImportModule("freecad.module_io")); + const auto dictS = moduleIo.getDict().keys().as_string(); + if (!moduleIo.isNull() && moduleIo.hasAttr("OpenInsertObject")) + { + const Py::TupleN args( + Py::Module(PyImport_ImportModule(Module)), + Py::String(unicodepath), + Py::String("insert"), + Py::String(DocName) + ); + moduleIo.callMemberFunction("OpenInsertObject", args); + } } - else { - str << "if hasattr(" << Module << ", \"importOptions\"):\n" - << " options = " << Module << ".importOptions(u\"" << unicodepath - << "\")\n" - << " " << Module << ".insert(u\"" << unicodepath - << "\", options = options)\n" - << "else:\n" - << " " << Module << ".insert(u\"" << unicodepath << "\")\n"; - } - - std::string code = str.str(); - Gui::Command::runCommand(Gui::Command::App, code.c_str()); // Commit the transaction if (doc && !pendingCommand) { @@ -978,6 +973,46 @@ void Application::slotShowHidden(const App::Document& Doc) signalShowHidden(*doc->second); } +void Application::checkForRecomputes() { + std::vector docs; + for (auto doc: App::GetApplication().getDocuments()) { + if (doc->testStatus(App::Document::RecomputeOnRestore)) { + docs.push_back(doc); + doc->setStatus(App::Document::RecomputeOnRestore, false); + } + } + // Certain tests want to use very old .FCStd files. We should not prompt during those tests, so this + // allows them to 'FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True")` + const std::map& Map = App::Application::Config(); + auto value = Map.find("SuppressRecomputeRequiredDialog"); + bool skip = value != Map.end() && ! value->second.empty(); // Any non empty string is true. + if (docs.empty() || skip ) + return; + WaitCursor wc; + wc.restoreCursor(); + auto res = QMessageBox::warning(getMainWindow(), QObject::tr("Recomputation required"), + QObject::tr("Some document(s) require recomputation for migration purposes. " + "It is highly recommended to perform a recomputation before " + "any modification to avoid compatibility problems.\n\n" + "Do you want to recompute now?"), + QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); + if (res != QMessageBox::Yes) + return; + bool hasError = false; + for (auto doc: App::Document::getDependentDocuments(docs, true)) { + try { + doc->recompute({}, false, &hasError); + } catch (Base::Exception &e) { + e.ReportException(); + hasError = true; + } + } + if (hasError) + QMessageBox::critical(getMainWindow(), QObject::tr("Recompute error"), + QObject::tr("Failed to recompute some document(s).\n" + "Please check report view for more details.")); +} + void Application::slotActiveDocument(const App::Document& Doc) { std::map::iterator doc = d->documents.find(&Doc); diff --git a/src/Gui/Application.h b/src/Gui/Application.h index bbb1aa2258..74f5056e88 100644 --- a/src/Gui/Application.h +++ b/src/Gui/Application.h @@ -28,8 +28,6 @@ #include #include -#define putpix() - #include class QCloseEvent; @@ -74,6 +72,8 @@ public: void exportTo(const char* FileName, const char* DocName, const char* Module); /// Reload a partial opened document App::Document *reopen(App::Document *doc); + /// Prompt about recomputing if needed + static void checkForRecomputes(); //@} @@ -338,6 +338,8 @@ public: static PyObject* sDoCommand (PyObject *self,PyObject *args); static PyObject* sDoCommandGui (PyObject *self,PyObject *args); + static PyObject* sDoCommandEval (PyObject *self,PyObject *args); + static PyObject* sDoCommandSkip (PyObject *self,PyObject *args); static PyObject* sAddModule (PyObject *self,PyObject *args); static PyObject* sShowDownloads (PyObject *self,PyObject *args); diff --git a/src/Gui/ApplicationPy.cpp b/src/Gui/ApplicationPy.cpp index 781ec22848..f948712fda 100644 --- a/src/Gui/ApplicationPy.cpp +++ b/src/Gui/ApplicationPy.cpp @@ -316,6 +316,19 @@ PyMethodDef Application::Methods[] = { "but doesn't record it in macros.\n" "\n" "cmd : str"}, + {"doCommandEval", (PyCFunction) Application::sDoCommandEval, METH_VARARGS, + "doCommandEval(cmd) -> PyObject\n" + "\n" + "Runs the given string without showing in the python console or recording in\n" + "macros, and returns the result.\n" + "\n" + "cmd : str"}, + {"doCommandSkip", (PyCFunction) Application::sDoCommandSkip, METH_VARARGS, + "doCommandSkip(cmd) -> None\n" + "\n" + "Record the given string in the Macro but comment it out in the console\n" + "\n" + "cmd : str"}, {"addModule", (PyCFunction) Application::sAddModule, METH_VARARGS, "addModule(mod) -> None\n" "\n" @@ -1352,6 +1365,43 @@ PyObject* Application::sDoCommandGui(PyObject * /*self*/, PyObject *args) return PyRun_String(sCmd, Py_file_input, dict, dict); } +PyObject* Application::sDoCommandEval(PyObject * /*self*/, PyObject *args) +{ + char *sCmd = nullptr; + if (!PyArg_ParseTuple(args, "s", &sCmd)) + return nullptr; + + Gui::Command::LogDisabler d1; + Gui::SelectionLogDisabler d2; + + PyObject *module, *dict; + + Base::PyGILStateLocker locker; + module = PyImport_AddModule("__main__"); + if (!module) + return nullptr; + + dict = PyModule_GetDict(module); + if (!dict) + return nullptr; + + return PyRun_String(sCmd, Py_eval_input, dict, dict); +} + +PyObject* Application::sDoCommandSkip(PyObject * /*self*/, PyObject *args) +{ + char *sCmd = nullptr; + if (!PyArg_ParseTuple(args, "s", &sCmd)) + return nullptr; + + Gui::Command::LogDisabler d1; + Gui::SelectionLogDisabler d2; + + Gui::Command::printPyCaller(); + Gui::Application::Instance->macroManager()->addLine(MacroManager::App, sCmd); + return Py::None().ptr(); +} + PyObject* Application::sAddModule(PyObject * /*self*/, PyObject *args) { char *pstr; diff --git a/src/Gui/BitmapFactory.cpp b/src/Gui/BitmapFactory.cpp index ddbb8fa240..c698f6231d 100644 --- a/src/Gui/BitmapFactory.cpp +++ b/src/Gui/BitmapFactory.cpp @@ -54,6 +54,8 @@ class BitmapFactoryInstP public: QMap xpmMap; QMap xpmCache; + + bool useIconTheme; }; } @@ -93,7 +95,9 @@ void BitmapFactoryInst::destruct () BitmapFactoryInst::BitmapFactoryInst() { d = new BitmapFactoryInstP; + restoreCustomPaths(); + configureUseIconTheme(); } BitmapFactoryInst::~BitmapFactoryInst() @@ -111,6 +115,14 @@ void BitmapFactoryInst::restoreCustomPaths() } } +void Gui::BitmapFactoryInst::configureUseIconTheme() +{ + Base::Reference group = App::GetApplication().GetParameterGroupByPath + ("User parameter:BaseApp/Preferences/Bitmaps/Theme"); + + d->useIconTheme = group->GetBool("UseIconTheme", group->GetBool("ThemeSearchPaths", false)); +} + void BitmapFactoryInst::addPath(const QString& path) { QDir::addSearchPath(QString::fromLatin1("icons"), path); @@ -174,6 +186,10 @@ bool BitmapFactoryInst::findPixmapInCache(const char* name, QPixmap& px) const QIcon BitmapFactoryInst::iconFromTheme(const char* name, const QIcon& fallback) { + if (!d->useIconTheme) { + return iconFromDefaultTheme(name, fallback); + } + QString iconName = QString::fromUtf8(name); QIcon icon = QIcon::fromTheme(iconName, fallback); if (icon.isNull()) { @@ -206,6 +222,21 @@ bool BitmapFactoryInst::loadPixmap(const QString& filename, QPixmap& icon) const return !icon.isNull(); } +QIcon Gui::BitmapFactoryInst::iconFromDefaultTheme(const char* name, const QIcon& fallback) +{ + QIcon icon; + QPixmap px = pixmap(name); + + if (!px.isNull()) { + icon.addPixmap(px); + return icon; + } else { + return fallback; + } + + return icon; +} + QPixmap BitmapFactoryInst::pixmap(const char* name) const { if (!name || *name == '\0') diff --git a/src/Gui/BitmapFactory.h b/src/Gui/BitmapFactory.h index b17239484c..58cfc73720 100644 --- a/src/Gui/BitmapFactory.h +++ b/src/Gui/BitmapFactory.h @@ -75,6 +75,10 @@ public: * If no such icon is found in the current theme fallback is returned instead. */ QIcon iconFromTheme(const char* name, const QIcon& fallback = QIcon()); + /** Returns the QIcon corresponding to name in the default (FreeCAD's) icon theme. + * If no such icon is found in the current theme fallback is returned instead. + */ + QIcon iconFromDefaultTheme(const char* name, const QIcon& fallback = QIcon()); /// Retrieves a pixmap by name QPixmap pixmap(const char* name) const; /** Retrieves a pixmap by name and size created by an @@ -150,6 +154,7 @@ public: private: bool loadPixmap(const QString& path, QPixmap&) const; void restoreCustomPaths(); + void configureUseIconTheme(); static BitmapFactoryInst* _pcSingleton; BitmapFactoryInst(); diff --git a/src/Gui/CommandDoc.cpp b/src/Gui/CommandDoc.cpp index 60dcd3ecd9..31ad37430d 100644 --- a/src/Gui/CommandDoc.cpp +++ b/src/Gui/CommandDoc.cpp @@ -1318,7 +1318,11 @@ StdCmdDelete::StdCmdDelete() sWhatsThis = "Std_Delete"; sStatusTip = QT_TR_NOOP("Deletes the selected objects"); sPixmap = "edit-delete"; +#ifdef FC_OS_MACOSX + sAccel = "Backspace"; +#else sAccel = keySequenceToAccel(QKeySequence::Delete); +#endif eType = ForEdit; } diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index bd3e7a8518..cadc6121a0 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -117,6 +117,7 @@ struct DocumentP Connection connectStartLoadDocument; Connection connectFinishLoadDocument; Connection connectShowHidden; + Connection connectFinishRestoreDocument; Connection connectFinishRestoreObject; Connection connectExportObjects; Connection connectImportObjects; diff --git a/src/Gui/Icons/freecadabout.png b/src/Gui/Icons/freecadabout.png index e9c5a3e26d..55258808d8 100644 Binary files a/src/Gui/Icons/freecadabout.png and b/src/Gui/Icons/freecadabout.png differ diff --git a/src/Gui/Language/FreeCAD.ts b/src/Gui/Language/FreeCAD.ts index 142c588b45..74f3e6f32f 100644 --- a/src/Gui/Language/FreeCAD.ts +++ b/src/Gui/Language/FreeCAD.ts @@ -91,17 +91,17 @@ - + Import - + Delete - + Paste expressions @@ -156,8 +156,7 @@ - - + Placement @@ -425,42 +424,42 @@ EditMode - + Default - + The object will be edited using the mode defined internally to be the most appropriate for the object type - + Transform - + The object will have its placement editable with the Std TransformManip command - + Cutting - + This edit mode is implemented as available but currently does not seem to be used by any object - + Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3854,7 +3853,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation @@ -3914,98 +3913,98 @@ You can also use the form: John Doe <john@doe.com> - + Font name of the navigation cube - + Default - + Cube size - + Size of the navigation cube - + Opacity when inactive - + Opacity of the navigation cube when not focused - + Color - + Base color for all elements - + Rotation center indicator - + Sphere size - + Color and transparency - + The size of the rotation center indicator - + The color of the rotation center indicator - + 3D Navigation - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. - + Mouse... - + Navigation settings set - + Orbit style - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4013,103 +4012,103 @@ Free Turntable: the part will be rotated around the z-axis. - + Turntable - + Trackball - + Free Turntable - + Rotation mode - + Rotations in 3D will use current cursor position as center for rotation - + Window center - + Drag at cursor - + Object center - + Default camera orientation - + Default camera orientation when creating a new document or selecting the home view - + Camera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. - + mm - + Animations - + Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations - + Duration of navigation animations that have a fixed duration - + Animation duration - + The duration of navigation animations in milliseconds - + Zoom step @@ -4119,40 +4118,40 @@ The value is the diameter of the sphere to fit on the screen. - + Zoom operations will be performed at position of mouse pointer - + Zoom at cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. - + Direction of zoom operations will be inverted - + Invert zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. - + Disable touchscreen tilt gesture @@ -4617,7 +4616,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement @@ -5201,32 +5200,17 @@ The 'Status' column shows whether the document could be recovered. - - OK - - - - - Close - - - - - Apply - - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. - + Incorrect quantity - + There are input fields with incorrect input, please ensure valid placement values! @@ -5365,13 +5349,7 @@ The 'Status' column shows whether the document could be recovered.Gui::Dialog::Transform - - Cancel - - - - - + Transform @@ -5758,13 +5736,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file - + Select a directory @@ -5772,13 +5750,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as - - + + Open @@ -5786,12 +5764,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended - + All files (*.*) @@ -5968,7 +5946,7 @@ Do you want to save your changes? Gui::LabelEditor - + List @@ -6085,57 +6063,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension - + Ready - + Close All - - - + + + Toggles this toolbar - - - + + + Toggles this dockable window - + WARNING: This is a development version. - + Please do not use it in a production environment. - - + + Unsaved document - + The exported object contains external link. Please save the documentat least once before exporting. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? @@ -6720,12 +6698,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module - + Open %1 as @@ -7257,7 +7235,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view @@ -7265,7 +7243,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search @@ -7323,148 +7301,148 @@ Do you want to specify another directory? - + Labels & Attributes - + Description - + Internal name - + Show items hidden in tree view - + Show items that are marked as 'hidden' in the tree view - + Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view - + Create group - + Create a group - - + + Rename - + Rename object - + Finish editing - + Finish editing object - + Add dependent objects to selection - + Adds all dependent objects to the selection - + Close document - + Close the document - + Reload document - + Reload a partially loaded document - + Skip recomputes - + Enable or disable recomputations of document - + Allow partial recomputes - + Enable or disable recomputating editing object when 'skip recomputation' is enabled - + Mark to recompute - + Mark this object to be recomputed - + Recompute object - + Recompute the selected object - + (but must be executed) - + %1, Internal name: %2 @@ -7661,14 +7639,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input - - + + Input in line %1 is not a number @@ -7676,47 +7654,47 @@ Do you want to specify another directory? QDockWidget - + Tree view - + Tasks - + Property view - + Selection view - + Task List - + Model - + DAG View - + Report view - + Python console @@ -7756,45 +7734,68 @@ Do you want to specify another directory? - - - + + + Unknown filetype - - + + Cannot open unknown filetype: %1 - + Export failed - + Cannot save to unknown filetype: %1 - + + Recomputation required + + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + + Recompute error + + + + + Failed to recompute some document(s). +Please check report view for more details. + + + + Workbench failure - + %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version @@ -7845,7 +7846,7 @@ Do you want to specify another directory? - + Unsaved document @@ -7856,49 +7857,49 @@ Do you want to specify another directory? - + Delete failed - + Dependency error - + Copy selected - + Copy active document - + Copy all documents - + Paste - + Expression error - + Failed to parse some of the expressions. Please check the Report View for more details. - + Failed to paste expressions @@ -8136,51 +8137,51 @@ Do you want to continue? - + Identical physical path detected. It may cause unwanted overwrite of existing document! - + Are you sure you want to continue? - + Please check report view for more... - + Physical path: - - + + Document: - - + + Path: - + Identical physical path - + Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8189,102 +8190,102 @@ Would you like to save the file with a different name? - - - + + + Saving aborted - + Save dependent files - + The file contains external dependencies. Do you want to save the dependent files, too? - - + + Saving document failed - + Save document under new filename... - - + + Save %1 Document - + Document - - + + Failed to save document - + Documents contains cyclic dependencies. Do you still want to save them? - + Save a copy of the document under new filename... - + %1 document (*.FCStd) - + Document not closable - + The document is not closable for the moment. - + Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? - + Undo - + Redo - + There are grouped transactions in the following documents with other preceding transactions - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8355,12 +8356,12 @@ Choose 'Abort' to abort - + Out of memory - + Not enough memory available to display the data. @@ -8376,7 +8377,7 @@ Choose 'Abort' to abort - + Navigation styles @@ -8392,32 +8393,32 @@ Choose 'Abort' to abort - + Do you want to save your changes to document '%1' before closing? - + Do you want to save your changes to document before closing? - + If you don't save, your changes will be lost. - + Apply answer to all - + %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? @@ -8553,8 +8554,8 @@ underscore, and must not start with a digit. - - + + Drag & drop failed @@ -8843,12 +8844,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: - + Selection not allowed by filter @@ -8936,13 +8937,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... - - + + Align the selected objects @@ -9226,17 +9227,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode - + Toggles the selected object's edit mode - + Activates or Deactivates the selected object's edit mode @@ -9268,13 +9269,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions - - + + Actions that apply to expressions @@ -9735,7 +9736,7 @@ underscore, and must not start with a digit. - + Unnamed @@ -9833,13 +9834,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... - - + + Place the selected objects @@ -9977,13 +9978,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh - - + + Recomputes the current active document @@ -10327,13 +10328,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... - - + + Transform the geometry of selected objects @@ -10341,13 +10342,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform - - + + Transform the selected object in the 3d view @@ -11203,7 +11204,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11211,7 +11212,7 @@ Are you sure you want to continue? - + Object dependencies @@ -11322,7 +11323,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12085,8 +12086,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information @@ -12829,63 +12830,38 @@ from Python console to Report view panel - - Light sources + + Push In - - Light source - - - - - Intensity - - - - - Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - - - - - Direction - - - - - q1 - - - - - <html><head/><body><p>z</p></body></html> - - - - - q2 - - - - - q3 - - - - - y - - - - - q0 + + Pull Out - x + Light sources + + + + + Light source + + + + + Intensity + + + + + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. + + + + + Direction @@ -13288,12 +13264,12 @@ the region are non-opaque. StdCmdProperties - + Properties - + Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_be.ts b/src/Gui/Language/FreeCAD_be.ts index b01e01f646..97f2e94f51 100644 --- a/src/Gui/Language/FreeCAD_be.ts +++ b/src/Gui/Language/FreeCAD_be.ts @@ -91,17 +91,17 @@ Змяніць - + Import Імпарт - + Delete Выдаліць - + Paste expressions Уставіць выраз @@ -156,8 +156,7 @@ Выраўнаваць - - + Placement Размясціць @@ -425,42 +424,42 @@ EditMode - + Default Першапачаткова - + The object will be edited using the mode defined internally to be the most appropriate for the object type Аб'ект будзе зменены з ужываннем рэжыму, вызначанага ўнутры як найбольш прыдатны для дадзенага тыпу аб'екта - + Transform Пераўтварыць - + The object will have its placement editable with the Std TransformManip command Размяшчэнне аб'екту будзе даступна для праўкі з дапамогай каманды Std TransformManip - + Cutting Абрэзка - + This edit mode is implemented as available but currently does not seem to be used by any object Рэжым змены рэалізаваны як даступны, але ў цяперашні час, падобна, не ўжываецца ні адным аб'ектам - + Color Колер - + The object will have the color of its individual faces editable with the Part FaceAppearances command Колер асобных граняў аб'екта можна будзе правіць з дапамогай каманды Part FaceAppearances @@ -1997,7 +1996,7 @@ Perhaps a file permission error? % - % + % @@ -3892,7 +3891,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Навігацыя @@ -3952,99 +3951,99 @@ You can also use the form: John Doe <john@doe.com> Павярнуць да бліжэйшага - + Font name of the navigation cube Назва шрыфту куба навігацыі - + Default Першапачаткова - + Cube size Памер куба - + Size of the navigation cube Памер куба навігацыі - + Opacity when inactive Празрыстасць, калі стан неактыўны - + Opacity of the navigation cube when not focused Празрыстасць куб навігацыі, калі ён не сфакусаваны - + Color Колер - + Base color for all elements Асноўны колер для ўсіх элементаў - + Rotation center indicator Індыкатар цэнтра вярчэння - + Sphere size Памер сферы - + Color and transparency Колер і празрыстасць - + The size of the rotation center indicator Памер індыкатару цэнтра вярчэння - + The color of the rotation center indicator Колер індыкатару цэнтра вярчэння - + 3D Navigation Трохмерная навігацыя - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Спіс налад кнопак мышы для кожнай абранай налады навігацыі. Абярыце набор, потым націсніце кнопку, каб паглядзець названыя наладкі. - + Mouse... Дэталі стылю навігацыі... - + Navigation settings set Набор налад навігацыі - + Orbit style Стыль арбіты - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4055,104 +4054,104 @@ Free Turntable: the part will be rotated around the z-axis. Свабодны паваротны круг: дэталь будзе круціцца вакол восі z. - + Turntable Паваротны круг - + Trackball Трэкбол - + Free Turntable Свабодны паваротны круг - + Rotation mode Рэжым вярчэння - + Rotations in 3D will use current cursor position as center for rotation Вярчэнне ў трохмерным прадстаўленні будзе ўжываць бягучае становішча курсора ў якасці цэнтру для вярчэння - + Window center Цэнтр акна - + Drag at cursor Перанесці да паказальніка - + Object center Цэнтр аб'екту - + Default camera orientation Першапачатковая арыентацыя камеры - + Default camera orientation when creating a new document or selecting the home view Першапачатковая арыентацыя камеры пры стварэнні новага дакументу ці выбару пачатковага выгляду - + Camera zoom Маштаб камеры - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Задаць маштаб камеры для новых дакументаў. Значэнне - дыяметр сферы, які павінен змясціцца на экране. - + mm мм - + Animations Анімацыі - + Enable spinning animations that are used in some navigation styles after dragging Уключыце анімацыю вярчэння, якая ўжываецца ў некаторых стылях навігацыі пасля перацягвання - + Enable spinning animations Уключыць анімацыю вярчэння - + Duration of navigation animations that have a fixed duration Працягласць анімацыі навігацыі, якае мае фіксаваную працягласць - + Animation duration Працягласць анімацыі - + The duration of navigation animations in milliseconds Працягласць анімацыі навігацыі (у мілісекундах) - + Zoom step Крок маштабавання @@ -4162,34 +4161,34 @@ The value is the diameter of the sphere to fit on the screen. Назва шрыфту - + Zoom operations will be performed at position of mouse pointer Аперацыі маштабавання будуць выконвацца ў становішчы паказальніка мышы - + Zoom at cursor Маштаб на паказальніку - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Наколькі будзе маштабавана. Крок маштабавання '1' азначае каэфіцыент 7.5 для кожнага кроку маштабавання. - + Direction of zoom operations will be inverted Напрамак аперацый маштабавання будзе інвертаваны - + Invert zoom Інвертаваць маштаб - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4198,7 +4197,7 @@ Mouse tilting is not disabled by this setting. Нахіл мышы гэтай наладай не адключаны. - + Disable touchscreen tilt gesture Адключыць жэст нахілу для сэнсарнага экрану @@ -4670,7 +4669,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Размясціць @@ -5256,22 +5255,7 @@ The 'Status' column shows whether the document could be recovered. Скінуць - - OK - OK - - - - Close - Зачыніць - - - - Apply - Прымяніць - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Калі ласка, абярыце 1, 2 ці 3 кропкі, перш чым націснуць гэтую кнопку. Кропка можа знаходзіцца на вяршыні, грані ці рэбры. Калі ўжываецца кропка на грані ці рабры, то яна будзе кропкай у становішчы мышы наўздоўж грані або рэбры. Калі абрана 1 кропка, яна будзе ўжывацца ў якасці цэнтра кручэння. @@ -5280,12 +5264,12 @@ The 'Status' column shows whether the document could be recovered. У праглядзе справаздачы прадстаўленая некаторая інфармацыя аб адлегласці і вугле, якія могуць быць карысныя пры выраўноўванні аб'ектаў. Для вашай зручнасці пры ўжыванні <Shift+пстрычка мышшу> адпаведныя адлегласці ці вуглы капіруюцца ў буфер абмену. - + Incorrect quantity Неправільная колькасць - + There are input fields with incorrect input, please ensure valid placement values! Некаторыя палі ўводу з няправільным уводам. Калі ласка, пераканайцеся ў правільнасці размяшчэння значэнняў! @@ -5424,13 +5408,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Скасаваць - - - - + Transform Пераўтварыць @@ -5821,13 +5799,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Абраць файл - + Select a directory Абраць каталог @@ -5835,13 +5813,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Захаваць як - - + + Open Адчыніць @@ -5849,12 +5827,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Пашыраны - + All files (*.*) Усе файлы (*.*) @@ -6032,7 +6010,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Спіс @@ -6149,57 +6127,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Вымярэнне - + Ready Гатовы - + Close All Зачыніць усё - - - + + + Toggles this toolbar Пераключае панэль інструментаў - - - + + + Toggles this dockable window Пераключае ўбудаванае акно - + WARNING: This is a development version. ПАПЯРЭДЖАННЕ: Гэта версія для распрацоўшчыкаў. - + Please do not use it in a production environment. Калі ласка, не ўжывайце ў вытворчым асяроддзі. - - + + Unsaved document Незахаваны дакумент - + The exported object contains external link. Please save the documentat least once before exporting. Аб'ект, які экспартуецца, утрымлівае знешні спасылак. Калі ласка, захавайце дакумент хаця б адзін раз перад экспартаваннем. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Каб стварыць спасылак на знешнія аб'екты, дакумент павінен быць захаваны хаця б адзін раз. @@ -6790,12 +6768,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Абраць модуль - + Open %1 as Адчыніць %1 як @@ -7331,7 +7309,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Прагляд дрэва @@ -7339,7 +7317,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Пошук @@ -7398,148 +7376,148 @@ Do you want to specify another directory? Суполка - + Labels & Attributes Надпісы і атрыбуты - + Description Апісанне - + Internal name Унутраная назва - + Show items hidden in tree view Паказаць схаваныя элементы ў праглядзе дрэва - + Show items that are marked as 'hidden' in the tree view Паказвае элементы, якія пазначаныя як 'схаваныя' у праглядзе дрэва - + Toggle visibility in tree view Пераключыць бачнасць у праглядзе дрэва - + Toggles the visibility of selected items in the tree view Пераключае бачнасць абраных элементаў у праглядзе дрэва - + Create group Стварыць суполку - + Create a group Стварыць суполку - - + + Rename Пераназваць - + Rename object Пераназваць аб'ект - + Finish editing Скончыць праўку - + Finish editing object Скончыць праўку аб'екта - + Add dependent objects to selection Дадаць залежныя аб'екты да выдзялення - + Adds all dependent objects to the selection Дадаць усе залежныя аб'екты да выдзялення - + Close document Зачыніць дакумент - + Close the document Закрыць дакумент - + Reload document Перазагрузіць дакумент - + Reload a partially loaded document Перазагрузіць часткова загружаныя дакументы - + Skip recomputes Прапусціць вылічэнні - + Enable or disable recomputations of document Уключае ці адключае паўторныя вылічэнні дакумента - + Allow partial recomputes Дазволіць частковыя вылічэнні - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Уключае ці адключае паўторныя вылічэнні аб'екта змены, калі ўключана налада 'Прапусціць вылічэнні' - + Mark to recompute Адзначыць для пераліку - + Mark this object to be recomputed Адзначыць аб'ект да пералічэння - + Recompute object Вылічыць аб'ект - + Recompute the selected object Вылічыць абраны аб'ект - + (but must be executed) (але павінен быць выкананы) - + %1, Internal name: %2 %1, унутраная назва: %2 @@ -7736,14 +7714,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Хібны ўвод - - + + Input in line %1 is not a number Уведзенае значэнне ў радок %1 не з'яўляецца лікам @@ -7751,47 +7729,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Прагляд дрэва - + Tasks Задачы - + Property view Выгляд уласцівасці - + Selection view Выгляд абранага - + Task List Спіс задач - + Model Мадэль - + DAG View Выгляд DAG - + Report view Прагляд справаздачы - + Python console Кансоль Python @@ -7831,47 +7809,74 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Невядомы тып файла - - + + Cannot open unknown filetype: %1 Не атрмылася адчыніць невядомы тып файла: %1 - + Export failed Экспартаваць не атрымалася - + Cannot save to unknown filetype: %1 Не атрымалася захаваць у невядомым тыпе файла: %1 - + + Recomputation required + Патрабуецца паўторны разлік + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Некаторыя дакументы патрабуюць паўторнага вылічэння для мэт міграцыі. +Настойліва рэкамендуецца выконваць вылічэнні перад унясеннем любых змяненняў, каб пазбегнуць праблем з сумяшчальнасцю. + +Ці жадаеце вы выканаць паўторнае вылічэнне зараз? + + + + Recompute error + Памылка паўторнага разліку + + + + Failed to recompute some document(s). +Please check report view for more details. + Не атрымалася выканаць паўторны разлік некаторых дакументаў. +Калі ласка, праверце прагляд справаздачы для атрымання больш падрабязнай інфармацыі. + + + Workbench failure Памылка загрузкі варштату - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ваша сістэма працуе пад кіраваннем OpenGL%1.%2. Для FreeCAD патрабуецца OpenGL версіі 2.0 ці вышэй. Калі ласка, абновіце ваш графічны драйвер і/ці відэакарту па неабходнасці. - + Invalid OpenGL Version Хібная версія OpenGL @@ -7922,7 +7927,7 @@ Do you want to specify another directory? Экспарт у PDF... - + Unsaved document Незахаваны дакумент @@ -7933,50 +7938,50 @@ Do you want to specify another directory? Аб'ект, які экспартуецца, утрымлівае знешні спасылак. Калі ласка, захавайце дакумент хаця б адзін раз перад экспартаваннем. - + Delete failed Выдаліць не атрымалася - + Dependency error Памылка залежнасці - + Copy selected Скапіраваць абранае - + Copy active document Капіраваць бягучы дакумент - + Copy all documents Капіраваць усе дакументы - + Paste Уставіць - + Expression error Памылка выразу - + Failed to parse some of the expressions. Please check the Report View for more details. Не атрымалася разабраць некаторыя выразы. Калі ласка, азнаёмцеся з праглядам справаздачы для атрымання больш падрабязнай інфармацыі. - + Failed to paste expressions Не атрымалася ўставіць выраз @@ -8215,7 +8220,7 @@ Do you want to continue? Зашмат адчыненых ненадакучлівых апавяшчэнняў. Апавяшчэнні прапускаюцца! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8224,44 +8229,44 @@ Do you want to continue? - + Are you sure you want to continue? Ці ўпэўненыя вы, што жадаеце працягнуць? - + Please check report view for more... Калі ласка, праверце прагляд справаздачы, каб атрымаць дадатковую інфармацыю... - + Physical path: Фізічны шлях: - - + + Document: Дакумент: - - + + Path: Шлях: - + Identical physical path Ідэнтычны фізічны шлях - + Could not save document Не атрымалася захаваць дакумент - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8274,102 +8279,102 @@ Would you like to save the file with a different name? Ці жадаеце вы захаваць файл з іншым іменем? - - - + + + Saving aborted Захаванне перапынена - + Save dependent files Захаваць залежныя файлы - + The file contains external dependencies. Do you want to save the dependent files, too? Файл утрымлівае знешнія залежнасці. Ці жадаеце вы таксама захаваць залежныя файлы? - - + + Saving document failed Не атрымалася захаваць дакумент - + Save document under new filename... Захаваць дакумент з новым іменем файла... - - + + Save %1 Document Захаваць дакумент %1 - + Document Дакумент - - + + Failed to save document Не атрымалася захаваць дакумент - + Documents contains cyclic dependencies. Do you still want to save them? Дакументы ўтрымлівае цыклічныя залежнасці. Ці жадаеце вы яшчэ іх захаваць? - + Save a copy of the document under new filename... Захаваць копію дакумента з новым іменем файла... - + %1 document (*.FCStd) Дакумент %1 (*.FCStd) - + Document not closable Дакумент не можа быць зачынены - + The document is not closable for the moment. На дадзены момант дакумент нельга зачыніць. - + Document not saved Дакумент не захаваны - + The document%1 could not be saved. Do you want to cancel closing it? Дакумент %1 не атрымалася захаваць. Ці жадаеце вы скасаваць яго закрыццё? - + Undo Адкаціць - + Redo Зрабіць нанова - + There are grouped transactions in the following documents with other preceding transactions У наступных дакументах згрупаваныя аперацыі з іншымі папярэднімі аперацыямі - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8442,12 +8447,12 @@ Choose 'Abort' to abort Налады... - + Out of memory Не хапае памяці - + Not enough memory available to display the data. Недастаткова памяці для адлюстравання дадзеных. @@ -8463,7 +8468,7 @@ Choose 'Abort' to abort Не атрымалася знайсці файл %1 ні ў %2, ні ў %3 - + Navigation styles Стылі навігацыі @@ -8479,32 +8484,32 @@ Choose 'Abort' to abort Ці жадаеце вы зачыніць дыялогавае акно? - + Do you want to save your changes to document '%1' before closing? Ці жадаеце вы захаваць свае змены ў дакуменце '%1' перад закрыццём? - + Do you want to save your changes to document before closing? Ці жадаеце вы захаваць свае змены ў дакуменце перад закрыццём? - + If you don't save, your changes will be lost. Калі вы не захаваеце, вашыя змены будуць незваротна страчаныя. - + Apply answer to all Прымяніць адказ да ўсіх - + %1 Document(s) not saved %1 дакументы не захаваныя - + Some documents could not be saved. Do you want to cancel closing? Некаторыя дакументы не атрымалася захаваць. Ці жадаеце вы скасаваць закрыццё? @@ -8640,8 +8645,8 @@ underscore, and must not start with a digit. Не атрымалася дадаць уласцівасць да '%1': %2 - - + + Drag & drop failed Не атрымалася перамясціць @@ -8934,12 +8939,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Не дазволена: - + Selection not allowed by filter Выбар, які не дазволены фільтрам @@ -9027,13 +9032,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Выраўноўванне... - - + + Align the selected objects Выраўнаваць абраныя аб'екты @@ -9317,17 +9322,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Пераключыць рэжым &праўкі - + Toggles the selected object's edit mode Пераключае абраныя аб'екты ў рэжым праўкі - + Activates or Deactivates the selected object's edit mode Уключае ці адключае рэжым праўкі абраных аб'ектаў @@ -9359,13 +9364,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Дзеянні з выразам - - + + Actions that apply to expressions Дзеянні, якія прымяняюцца да выразаў @@ -9828,7 +9833,7 @@ underscore, and must not start with a digit. Стварыць новы пусты дакумент - + Unnamed Без назвы @@ -9927,13 +9932,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Размяшчэнне... - - + + Place the selected objects Размясціць абраныя аб'екты @@ -10071,13 +10076,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Абнавіць - - + + Recomputes the current active document Перачытаць бягучы дакумент @@ -10421,13 +10426,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Пераўтварыць... - - + + Transform the geometry of selected objects Пераўтварае геаметрыю абранага аб'екту @@ -10435,13 +10440,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Пераўтварыць - - + + Transform the selected object in the 3d view Пераўтварае абраны аб'ект у трохмерным прадстаўленні @@ -11297,7 +11302,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11308,7 +11313,7 @@ Are you sure you want to continue? - + Object dependencies Залежнасці аб'екта @@ -11420,7 +11425,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12190,8 +12195,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Адбылася памылка - інфармацыю глядзіце ў Праглядзе справаздачы @@ -12951,65 +12956,40 @@ from Python console to Report view panel Крыніцы святла - + + Push In + Наблізіць + + + + Pull Out + Аддаліць + + + Light sources Крыніцы святла - + Light source Крыніца святла - + Intensity Інтэнсіўнасць - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Адрэгуляваць арыентацыю накіраванай крыніцы святла, перацягваючы паказальнік з дапамогай мышы, ці ўжываць кнопкі павароту для дакладнай налады. - + Direction Напрамак - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - z - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13420,12 +13400,12 @@ the region are non-opaque. StdCmdProperties - + Properties Уласцівасці - + Show the property view, which displays the properties of the selected object. Паказаць выгляд уласцівасці, у якім адлюстроўваюцца ўласцівасці абранага аб'екту. diff --git a/src/Gui/Language/FreeCAD_ca.ts b/src/Gui/Language/FreeCAD_ca.ts index 02c1815ec5..9ba310d94f 100644 --- a/src/Gui/Language/FreeCAD_ca.ts +++ b/src/Gui/Language/FreeCAD_ca.ts @@ -91,17 +91,17 @@ Edita - + Import Importa - + Delete Elimina - + Paste expressions Enganxa expressions @@ -156,8 +156,7 @@ Alinea - - + Placement Posició @@ -425,42 +424,42 @@ EditMode - + Default Per defecte - + The object will be edited using the mode defined internally to be the most appropriate for the object type L'objecte s'editarà fent servir el mode definit internament com el més apropiat segons el tipus d'objecte - + Transform Transforma - + The object will have its placement editable with the Std TransformManip command L'objecte tindrà el seu lloc editable amb el comandament Std TransformManip - + Cutting Tall - + This edit mode is implemented as available but currently does not seem to be used by any object Aquest mode d'edició es troba implementat com a disponible, però ara mateix no sembla que cap objecte l'usi - + Color Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command L'objecte tindrà el color de les seves cares individuals editables amb la comanda Part FaceAppearances @@ -849,7 +848,7 @@ while doing a left or right click and move the mouse up or down Offset - Equidistancia (ofset) + Equidistància @@ -1993,7 +1992,7 @@ Potser per un error de permisos del fitxer? % - % + % @@ -3900,7 +3899,7 @@ També podeu utilitzar la forma: Joan Peris <joan@peris.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navegació @@ -3960,99 +3959,99 @@ També podeu utilitzar la forma: Joan Peris <joan@peris.com> Rotar fins al més proper - + Font name of the navigation cube Nom de la font del cub de navegació - + Default Per defecte - + Cube size Mida del cub - + Size of the navigation cube Mida del cub de navegació - + Opacity when inactive Opacitat quan està inactiu - + Opacity of the navigation cube when not focused Opacitat del cub de navegació quan no està enfocat - + Color Color - + Base color for all elements Color base per tots els elements - + Rotation center indicator Indicador centre de rotació - + Sphere size Mida d'esfera - + Color and transparency Color i transparència - + The size of the rotation center indicator La mida de l'indicador d'esfera - + The color of the rotation center indicator El color de l'indicador d'esfera - + 3D Navigation Navegació 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Mostra les configuracions del botó del ratolí per a cada paràmetre de navegació escollit. Seleccioneu un paràmetre i, a continuació, premeu el botó per a veure aquestes configuracions. - + Mouse... Ratolí... - + Navigation settings set Conjunt de configuracions de navegació - + Orbit style Estil d'òrbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4063,104 +4062,104 @@ Plataforma giratòria (Turntable): La peça girarà sobre l'eix z (amb eixos res Plataforma giratòria lliure: la peça girarà sobre l'eix z. - + Turntable Torn - + Trackball Ratolí de bola - + Free Turntable Plataforma giratòria lliure - + Rotation mode Mode de rotació - + Rotations in 3D will use current cursor position as center for rotation Les rotacions en 3D utilitzaran la posició actual del cursor com a centre de rotació - + Window center Centre de la finestra - + Drag at cursor Arrossega al cursor - + Object center Centre de l'objecte - + Default camera orientation Orientació de la càmera per defecte - + Default camera orientation when creating a new document or selecting the home view Orientació de la càmera per defecte en crear un nou document o en seleccionar la vista inicial - + Camera zoom Zoom de Càmera - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Configura el zoom de la càmera per als nous documents. El valor és el diàmetre de l’esfera per a ajustar-se a la pantalla. - + mm mm - + Animations Animacions - + Enable spinning animations that are used in some navigation styles after dragging Habilitar animacions giratòries que són utilitzades en alguns estils de navegació després d'arrossegar - + Enable spinning animations Habilitar animacions giratòries - + Duration of navigation animations that have a fixed duration Duració de les animacions de navegació que tenen una duració fixa - + Animation duration Durada de l'animació - + The duration of navigation animations in milliseconds La duració de les animacions de navegació en mil·lisegons - + Zoom step Pas de zoom @@ -4170,41 +4169,41 @@ El valor és el diàmetre de l’esfera per a ajustar-se a la pantalla.Nom del tipus de lletra - + Zoom operations will be performed at position of mouse pointer Les operacions del zoom es realitzaran en la posició del punter del ratolí - + Zoom at cursor Zoom al cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. En quant serà ampliat. Un valor de '1' implica un factor de 7,5 per cada grau d'ampliació. - + Direction of zoom operations will be inverted La direcció de les operacions de zoom s’invertirà - + Invert zoom Invertix el zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. Evita la inclinació de la vista quan s'està fent zoom amb els dits. Sols afecta l'estil de Navegació amb gestos. Aquesta opció no desactiva la inclinació del ratolí. - + Disable touchscreen tilt gesture Desactiva el gest d'inclinació de la pantalla tàctil @@ -4673,7 +4672,7 @@ El sistema de preferències és el fixat en les preferències generals. Gui::Dialog::DockablePlacement - + Placement Posició @@ -5258,32 +5257,17 @@ La columna 'Estat' mostra si el document es pot recuperar. Reinicia - - OK - D'acord - - - - Close - Tanca - - - - Apply - Aplica - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Seleccioneu 1, 2 o 3 punts abans de fer clic en aquest botó. Un punt pot estar en un vèrtex, cara o aresta. Si esteu en una cara o aresta, el punt utilitzat serà el punt en la cara o aresta de la posició del ratolí. Si 1 punt és seleccionat serà utilitzat com a centre de rotació. Si se seleccionen 2 punts, el punt mig entre ells serà el centre de rotació i un nou eix personalitzat es crearà, si és necessari. Si se seleccionen 3 punts, el primer punt es converteix en el centre de rotació i es troba en el vector que és normal al pla definit per 3 punts. Alguns detalls de distància i angle es proporcionen en la visualització d'informe, que pot ser útil per a alinear objectes. Per a la vostra comoditat, quan feu Majúscules + clic s'utilitza la distància adequada o l'angle es copia al porta-retalls. - + Incorrect quantity La quantitat és incorrecta - + There are input fields with incorrect input, please ensure valid placement values! Hi ha camps d'entrada amb entrada incorrecta, assegureu-vos que els valors d'emplaçament són vàlids. @@ -5422,13 +5406,7 @@ La columna 'Estat' mostra si el document es pot recuperar. Gui::Dialog::Transform - - Cancel - Cancel·la - - - - + Transform Transforma @@ -5818,13 +5796,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Seleccioneu un fitxer - + Select a directory Seleccioneu un directori @@ -5832,13 +5810,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Anomena i desa - - + + Open Obre @@ -5846,12 +5824,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Expandit - + All files (*.*) Tots els fitxers (*.*) @@ -6028,7 +6006,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Llista @@ -6145,57 +6123,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Cota - + Ready Preparat - + Close All Tanca-ho tot - - - + + + Toggles this toolbar Commuta la barra d'eines - - - + + + Toggles this dockable window Commuta la finestra flotant - + WARNING: This is a development version. ATENCIÓ: Aquesta és una versió de desenvolupament. - + Please do not use it in a production environment. Si us plau, no ho utilitzeu en un entorn de producció. - - + + Unsaved document El document no s'ha desat - + The exported object contains external link. Please save the documentat least once before exporting. L’objecte exportat conté un enllaç extern. Deseu el documenta almenys una vegada abans d’exportar-lo. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Per a enllaçar amb objectes externs, el document s’ha de desar almenys una vegada. @@ -6782,12 +6760,12 @@ Esteu segur que voleu sortir sense desar les dades? Gui::SelectModule - + Select module Seleccioneu el mòdul - + Open %1 as Obre %1 com a @@ -7319,7 +7297,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Vista d'arbre @@ -7327,7 +7305,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Cerca @@ -7385,148 +7363,148 @@ Do you want to specify another directory? Grup - + Labels & Attributes Etiquetes i atributs - + Description Descripció - + Internal name Nom intern - + Show items hidden in tree view Mostra objectes amagats en la vista en arbre - + Show items that are marked as 'hidden' in the tree view Mostra objectes marcats com a "ocults" a la vista en arbre - + Toggle visibility in tree view Commuta la visibilitat en la vista en arbre - + Toggles the visibility of selected items in the tree view Commuta la visibilitat dels objectes seleccionats - + Create group Crea un grup - + Create a group Crea un grup - - + + Rename Reanomena - + Rename object Reanomena l'objecte - + Finish editing Finalitza l'edició - + Finish editing object Finalitza l'edició de l'objecte - + Add dependent objects to selection Afegiu objectes dependents a la selecció - + Adds all dependent objects to the selection Afegiu tots els objectes dependents a la selecció - + Close document Tanca document - + Close the document Tanca el document - + Reload document Torneu a carregar el document - + Reload a partially loaded document Torna a carregar un document que s'ha carregat parcialment - + Skip recomputes Omet el recàlcul - + Enable or disable recomputations of document Activa o desactiva els recàlculs del document - + Allow partial recomputes Permet recàlculs parcials - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Habilita o inhabilita el recàlcul de l'edició d'objectes quan estigui activat «Omet el recàlcul» - + Mark to recompute Marca per a recalcular - + Mark this object to be recomputed Marca aquest objecte per a recalcular-lo - + Recompute object Recalcula l'objecte - + Recompute the selected object Recalcula l'objecte seleccionat - + (but must be executed) (però s'ha d'executar) - + %1, Internal name: %2 %1, nom intern: %2 @@ -7723,14 +7701,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input L'entrada no és vàlida - - + + Input in line %1 is not a number L'entrada en la línia %1 no és un nombre. @@ -7738,47 +7716,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Vista d'arbre - + Tasks Tasques - + Property view Visualització de les propietats - + Selection view Visualització de la selecció - + Task List Llista de tasques - + Model Model - + DAG View Vista DAG - + Report view Visualització de l'informe - + Python console Consola de Python @@ -7818,45 +7796,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype El tipus de fitxer és desconegut. - - + + Cannot open unknown filetype: %1 No es pot obrir el tipus de fitxer desconegut: %1 - + Export failed Exportació fallida - + Cannot save to unknown filetype: %1 No es pot desar el tipus de fitxer desconegut: %1 - + + Recomputation required + Es necessita una recomputació + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Alguns documents necessiten una recomputació per propòsits de migració. Per a evitar problemes de compatibilitat, és altament recomanat fer una recomputació abans de qualsevol modificació. + +Estàs segur que vols fer la recomputació ara? + + + + Recompute error + Error de recomputació + + + + Failed to recompute some document(s). +Please check report view for more details. + La recomputació ha fallat en alguns documents. +Si us plau, comprovi la vista d'informes per a veure més detalls. + + + Workbench failure Fallada del banc de treball - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Aquest sistema està executant OpenGL %1.%2. FreeCAD requereix OpenGL 2.0 o superior. Si us plau, actualitzi el controlador de gràfics i/o la targeta en ser necessari. - + Invalid OpenGL Version Versió d'OpenGL invàlida @@ -7907,7 +7911,7 @@ Do you want to specify another directory? S'està exportant a PDF... - + Unsaved document El document no s'ha desat @@ -7918,50 +7922,50 @@ Do you want to specify another directory? L’objecte exportat conté un enllaç extern. Deseu el documenta almenys una vegada abans d’exportar-lo. - + Delete failed No s'ha pogut eliminar - + Dependency error Error de dependència - + Copy selected Copia la selecció - + Copy active document Copia el document actiu - + Copy all documents Copia tots el documents - + Paste Enganxa - + Expression error S'ha produït un error d'expressió - + Failed to parse some of the expressions. Please check the Report View for more details. No s'han pogut analitzar algunes de les expressions. Per a obtindre més detalls, consulteu la vista de l'informe. - + Failed to paste expressions No s'han pogut enganxar les expressions @@ -8199,7 +8203,7 @@ Do you want to continue? Massa notificacions no intrusives obertes. S'ometran les notificacions! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8208,44 +8212,44 @@ Do you want to continue? - + Are you sure you want to continue? Segur que voleu continuar? - + Please check report view for more... Si us plau, comproveu la vista d'informe per obtenir més informació... - + Physical path: Ruta física: - - + + Document: Document: - - + + Path: Camí: - + Identical physical path Ruta física idèntica - + Could not save document No s'ha pogut desar el document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8258,102 +8262,102 @@ Would you like to save the file with a different name? Voleu desar-lo amb un nom diferent? - - - + + + Saving aborted S'ha interromput el desament - + Save dependent files Desa els fitxers dependents - + The file contains external dependencies. Do you want to save the dependent files, too? El fitxer conté dependències externes. Voleu desar també els fitxers dependents? - - + + Saving document failed No s'ha pogut desar el document - + Save document under new filename... Desa el document amb un altre nom... - - + + Save %1 Document Desa el document %1 - + Document Document - - + + Failed to save document No s'ha pogut desar el document - + Documents contains cyclic dependencies. Do you still want to save them? Els documents contenen dependències cícliques. Encara voleu desar-los? - + Save a copy of the document under new filename... Desa una còpia del document amb un altre nom... - + %1 document (*.FCStd) Document %1 (*.FCStd) - + Document not closable No es pot tancar el document. - + The document is not closable for the moment. De moment el document no es pot tancar. - + Document not saved Document no desat - + The document%1 could not be saved. Do you want to cancel closing it? No s'ha pogut desar el document %1. Vol cancel·lar el tancament? - + Undo Desfés - + Redo Refés - + There are grouped transactions in the following documents with other preceding transactions Hi ha transaccions agrupades en els documents següents amb altres transaccions anteriors - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8426,12 +8430,12 @@ Trieu «Interromp» per a interrompre Opcions... - + Out of memory No hi ha prou memòria. - + Not enough memory available to display the data. No hi ha prou memòria disponible per a mostrar les dades. @@ -8447,7 +8451,7 @@ Trieu «Interromp» per a interrompre No s'ha trobat el fitxer %1 ni en %2 ni en %3 - + Navigation styles Estils de navegació @@ -8463,32 +8467,32 @@ Trieu «Interromp» per a interrompre Vols tancar aquest diàleg? - + Do you want to save your changes to document '%1' before closing? Voleu desar els canvis en el document '%1' abans de tancar? - + Do you want to save your changes to document before closing? Voleu desar els vostres canvis en el document abans de tancar? - + If you don't save, your changes will be lost. Si no guardeu els canvis, es perdran. - + Apply answer to all Envia la resposta a tots - + %1 Document(s) not saved Document (s) %1 no desat - + Some documents could not be saved. Do you want to cancel closing? Alguns documents no s'han pogut desar. Vol cancel·lar la sortida? @@ -8625,8 +8629,8 @@ guions baixos i no ha de començar amb un dígit. No s'ha pogut afegir la propietat a «%1»: %2 - - + + Drag & drop failed S'ha produït un error en arrossegar i deixar anar @@ -8821,7 +8825,7 @@ la còpia actual es perdrà. Left panel hint offset - Desplaçament del panell esquerre de pistes + Equidistància del panell esquerre de pistes @@ -8831,7 +8835,7 @@ la còpia actual es perdrà. Right panel hint offset - Desplaçament del panell dret de pistes + Equidistància del panell dret de pistes @@ -8841,7 +8845,7 @@ la còpia actual es perdrà. Top panel hint offset - Desplaçament del panell superior de pistes + Equidistància del panell superior de pistes @@ -8851,7 +8855,7 @@ la còpia actual es perdrà. Bottom panel hint offset - Desplaçament del panell inferior de pistes + Equidistància del panell inferior de pistes @@ -8921,12 +8925,12 @@ guions baixos i no ha de començar amb un dígit. SelectionFilter - + Not allowed: No es permet: - + Selection not allowed by filter La selecció no és permesa pel filtre. @@ -9014,13 +9018,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdAlignment - + Alignment... Alineació... - - + + Align the selected objects Alinea els objectes seleccionats @@ -9304,17 +9308,17 @@ guions baixos i no ha de començar amb un dígit. StdCmdEdit - + Toggle &Edit mode Commuta el mode d'&edició - + Toggles the selected object's edit mode Commuta el mode d'edició de l'objecte seleccionat - + Activates or Deactivates the selected object's edit mode Entra o surt del mode d'edició de l'objecte seleccionat @@ -9346,13 +9350,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdExpression - + Expression actions Accions d’expressió - - + + Actions that apply to expressions Accions que s'apliquen a expressions @@ -9813,7 +9817,7 @@ guions baixos i no ha de començar amb un dígit. Crea un document buit nou - + Unnamed Sense nom @@ -9911,13 +9915,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdPlacement - + Placement... Posició... - - + + Place the selected objects Col·loca els objectes seleccionats @@ -10055,13 +10059,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdRefresh - + &Refresh &Actualitza - - + + Recomputes the current active document Recalcula el document actiu actualment @@ -10405,13 +10409,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdTransform - + Transform... Transforma... - - + + Transform the geometry of selected objects Transforma la geometria dels objectes seleccionats @@ -10419,13 +10423,13 @@ guions baixos i no ha de començar amb un dígit. StdCmdTransformManip - + Transform Transforma - - + + Transform the selected object in the 3d view Transforma l'objecte seleccionat en la vista 3D @@ -11281,7 +11285,7 @@ guions baixos i no ha de començar amb un dígit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11292,7 +11296,7 @@ Segur que voleu continuar? - + Object dependencies Dependències de l'objecte @@ -11404,7 +11408,7 @@ Voleu desar el document ara? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11858,7 +11862,7 @@ Actualment, el vostre sistema disposa dels bancs de treball següents:</p> Offset: - Separació: + Equidistància: @@ -11896,7 +11900,7 @@ Actualment, el vostre sistema disposa dels bancs de treball següents:</p> Offset: - Separació: + Equidistància: @@ -12172,8 +12176,8 @@ Actualment, el vostre sistema disposa dels bancs de treball següents:</p> Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Ha succeït un error - mira la vista d'informes per a més informació @@ -12926,65 +12930,40 @@ de la consola Python al tauler de Vista d'informes Fonts de Llum - + + Push In + Ampliar + + + + Pull Out + Reduïr + + + Light sources Fonts de llum - + Light source Font de llum - + Intensity Intensitat - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajusta l'orientació de la font de llum arrossegant el mànec amb el ratolí o utilitzant les caixes giratòries per una major precisió. - + Direction Direcció - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13219,22 +13198,22 @@ la regió no són opacs. Auto hide hint visual display offset for left panel - Oculta automàticament la separació de la pista del panell esquerre + Oculta automàticament l'equidistància de la pista del panell esquerre Auto hide hint visual display offset for right panel - Oculta automàticament la separació de la pista del panell dret + Oculta automàticament l'equidistància de la pista del panell dret Auto hide hint visual display offset for top panel - Oculta automàticament la separació de la pista del panell superior + Oculta automàticament l'equidistància de la pista del panell superior Auto hide hint visual display offset for bottom panel - Oculta automàticament la separació de la pista del panell inferior + Oculta automàticament l'equidistància de la pista del panell inferior @@ -13393,12 +13372,12 @@ la regió no són opacs. StdCmdProperties - + Properties Propietats - + Show the property view, which displays the properties of the selected object. Mostra la vista de propietats, que mostra les propietats de l'objecte seleccionat. diff --git a/src/Gui/Language/FreeCAD_cs.ts b/src/Gui/Language/FreeCAD_cs.ts index 2aee4f2675..95e01bab8e 100644 --- a/src/Gui/Language/FreeCAD_cs.ts +++ b/src/Gui/Language/FreeCAD_cs.ts @@ -91,17 +91,17 @@ Upravit - + Import Import - + Delete Odstranit - + Paste expressions Vložit výrazy @@ -156,8 +156,7 @@ Zarovnat - - + Placement Umístění @@ -425,42 +424,42 @@ EditMode - + Default Výchozí - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objekt bude upraven pomocí vnitřního režimu tak, aby byl nejvhodnější pro typ objektu - + Transform Transformace - + The object will have its placement editable with the Std TransformManip command Objekt bude mít upravitelné umístění pomocí příkazu Std TransformManip - + Cutting Řez - + This edit mode is implemented as available but currently does not seem to be used by any object Tento režim úprav je implementován jako dostupný, ale v současné době se zdá, že jej žádný objekt nepoužívá - + Color Barva - + The object will have the color of its individual faces editable with the Part FaceAppearances command Objekt bude mít barvu svých jednotlivých ploch upravitelných příkazem Díl Vzhled plochy @@ -1996,7 +1995,7 @@ Možná je chyba v přístupových právech k souboru? % - % + % @@ -3902,7 +3901,7 @@ Můžete také použít tuto formu: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigace @@ -3962,99 +3961,99 @@ Můžete také použít tuto formu: John Doe <john@doe.com> Rotovat k nejbližšímu - + Font name of the navigation cube Název písma navigační krychle - + Default Výchozí - + Cube size Velikost krychle - + Size of the navigation cube Velikost navigační krychle - + Opacity when inactive Neprůhlednost při neaktivitě - + Opacity of the navigation cube when not focused Neprůhlednost navigační krychle, pokud není zaměřena - + Color Barva - + Base color for all elements Základní barva pro všechny prvky - + Rotation center indicator Indikátor středu otáčení - + Sphere size Velikost koule - + Color and transparency Barva a průhlednost - + The size of the rotation center indicator Velikost indikátoru středu otáčení - + The color of the rotation center indicator Barva indikátoru středu otáčení - + 3D Navigation 3D navigace - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Seznam nastavení tlačítek myši pro každé zvolené nastavení navigace. Vyberte sadu a poté stiskněte tlačítko pro zobrazení uvedených konfigurací. - + Mouse... Myš... - + Navigation settings set Nastavení navigace - + Orbit style Styl orbitu - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4065,104 +4064,104 @@ Otočný stůl: díl se bude otáčet kolem osy z (s omezením os). Volný otočný stůl: díl se bude otáčet kolem osy z. - + Turntable Otočný stůl - + Trackball Trackball - + Free Turntable Volný otočný stůl - + Rotation mode Režim rotace - + Rotations in 3D will use current cursor position as center for rotation 3D Rotace bude používat aktuální polohu kurzoru jako střed rotace - + Window center Střed okna - + Drag at cursor Přetáhněte kurzorem - + Object center Střed objektu - + Default camera orientation Výchozí orientace kamery - + Default camera orientation when creating a new document or selecting the home view Výchozí orientace kamery při vytváření nového dokumentu nebo výběru domácího zobrazení - + Camera zoom Zoom kamery - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Nastaví přiblížení kamery pro nové dokumenty. Hodnota je průměr koule tak, aby se vešla na obrazovku. - + mm mm - + Animations Animace - + Enable spinning animations that are used in some navigation styles after dragging Povolte rotující animace, které se používají v některých stylech navigace po přetažení - + Enable spinning animations Povolit rotující animace - + Duration of navigation animations that have a fixed duration Trvání animací navigace s pevně stanovenou dobou trvání - + Animation duration Trvání animace - + The duration of navigation animations in milliseconds Trvání animací navigace v milisekundách - + Zoom step Krok přiblížení @@ -4172,34 +4171,34 @@ Hodnota je průměr koule tak, aby se vešla na obrazovku. Název písma - + Zoom operations will be performed at position of mouse pointer Přiblížení bude provedeno na poloze kurzoru myši - + Zoom at cursor Přibližovat nad kurzorem - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Jak moc bude příblížen. Krok přiblížení "1" znamená faktor 7,5 pro každý krok přiblížení. - + Direction of zoom operations will be inverted Směr operace přiblížení bude obrácen - + Invert zoom Invertovat přiblížení - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4208,7 +4207,7 @@ Ovlivňuje pouze navigační styl gesta. Naklánění myší není v tomto nastavení zakázáno. - + Disable touchscreen tilt gesture Zakázat dotykové gesto naklánění @@ -4677,7 +4676,7 @@ Systém preferencí je systém nastavený v obecných preferencích. Gui::Dialog::DockablePlacement - + Placement Umístění @@ -5263,32 +5262,17 @@ Sloupec "Status" ukazuje zda je možné dokument obnovit. Reset - - OK - OK - - - - Close - Zavřít - - - - Apply - Použít - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Před stisknutím tohoto tlačítka prosím vyberte 1, 2 nebo 3 body. Bod může být na vrcholu, ploše nebo hraně. Je-li na ploše nebo hraně, pak bude použit bod na poloze myši podél plochy nebo hrany. Je-li vybrán 1 bod, pak bude použit jako střed rotace. Jsou-li vybrány 2 body, pak bude střední bod mezi nimi středem rotace a bude vytvořena nová uživatelská osa, je-li potřeba. Jsou-li vybrány 3 body, první bod bude středem rotace a bude podél vektoru, který je normálou roviny dané třemi body. Vzdálenost a úhlová informace jsou v zobrazení reportu, což může být užitečné pro zarovnání objektů. Příslušnou vzdálenost a úhel je možné zkopírovat do schánky kliknutím se Shiftem. - + Incorrect quantity Nesprávné množství - + There are input fields with incorrect input, please ensure valid placement values! Vstupních pole obsahují nesprávná data, prosím vložte platné hodnoty umístění! @@ -5427,13 +5411,7 @@ Sloupec "Status" ukazuje zda je možné dokument obnovit. Gui::Dialog::Transform - - Cancel - Zrušit - - - - + Transform Transformace @@ -5822,13 +5800,13 @@ Chcete uložit provedené změny? Gui::FileChooser - - + + Select a file Vyberte soubor - + Select a directory Vyberte adresář @@ -5836,13 +5814,13 @@ Chcete uložit provedené změny? Gui::FileDialog - + Save as Uložit jako - - + + Open Otevřít @@ -5850,12 +5828,12 @@ Chcete uložit provedené změny? Gui::FileOptionsDialog - + Extended Rozšířené - + All files (*.*) Všechny soubory (*.*) @@ -6032,7 +6010,7 @@ Chcete uložit provedené změny? Gui::LabelEditor - + List Seznam @@ -6149,57 +6127,57 @@ Chcete uložit provedené změny? Gui::MainWindow - + Dimension Rozměr - + Ready Připraven - + Close All Zavřít vše - - - + + + Toggles this toolbar Přepíná panel nástrojů - - - + + + Toggles this dockable window Přepne toto dokované okno - + WARNING: This is a development version. VAROVÁNÍ: Toto je vývojová verze. - + Please do not use it in a production environment. Nepoužívejte prosím ve výrobním prostředí. - - + + Unsaved document Neuložený dokument - + The exported object contains external link. Please save the documentat least once before exporting. Exportovaný objekt obsahuje externí odkaz. Před exportem uložte dokument alespoň jednou. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Pro propojení s externími objekty musí být dokument uložen alespoň jednou. @@ -6791,12 +6769,12 @@ Chcete průvodce ukončit bez uložení dat? Gui::SelectModule - + Select module Vybrat modul - + Open %1 as Otevřené %1 jako @@ -7328,7 +7306,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Stromové zobrazení @@ -7336,7 +7314,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Hledat @@ -7394,148 +7372,148 @@ Do you want to specify another directory? Skupina - + Labels & Attributes Štítky & atributy - + Description Popis - + Internal name Interní název - + Show items hidden in tree view Zobrazit položky skryté ve stromovém zobrazení - + Show items that are marked as 'hidden' in the tree view Zobrazit položky, které jsou označeny jako 'skryté' ve stromovém zobrazení - + Toggle visibility in tree view Přepnout viditelnost ve stromovém zobrazení - + Toggles the visibility of selected items in the tree view Přepíná viditelnost vybraných položek ve stromovém zobrazení - + Create group Vytvořit skupinu - + Create a group Vytvořit skupinu - - + + Rename Přejmenovat - + Rename object Přejmenovat objekt - + Finish editing Dokončení úprav - + Finish editing object Dokončení úprav objektu - + Add dependent objects to selection Přidat závislé objekty k výběru - + Adds all dependent objects to the selection Přidá do výběru všechny závislé objekty - + Close document Zavřít dokument - + Close the document Zavřít dokument - + Reload document Znovu načíst dokument - + Reload a partially loaded document Znovu načíst částečně načtený dokument - + Skip recomputes Přeskočit přepočítání - + Enable or disable recomputations of document Povolit nebo zakázat přepočítání dokumentu - + Allow partial recomputes Povolit částečné přepočty - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Povolit nebo zakázat přepočítávání objektu, když je povoleno 'přeskočit přepočítávání' - + Mark to recompute Označit k přepočítání - + Mark this object to be recomputed Označit objekt k přepočítání - + Recompute object Přepočítat objekt - + Recompute the selected object Přepočítat vybraný objekt - + (but must be executed) (ale musí být provedeno) - + %1, Internal name: %2 %1, interní název: %2 @@ -7732,14 +7710,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Neplatný vstup - - + + Input in line %1 is not a number Vstup na řádku %1 není číslo @@ -7747,47 +7725,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Stromové zobrazení - + Tasks Tvorba - + Property view Vlastnosti zobrazení - + Selection view Výběr zobrazení - + Task List Seznam úkolů - + Model Model - + DAG View DAG zobrazení - + Report view Zobrazení reportu - + Python console Python konzole @@ -7827,45 +7805,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Neznámý typ souboru - - + + Cannot open unknown filetype: %1 Nelze otevřít neznámý typ souboru: %1 - + Export failed Export selhal - + Cannot save to unknown filetype: %1 Nelze uložit neznámý typ souboru: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Selhání v pracovním prostředí - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Tento systém běží na OpenGL %1.%2. FreeCAD vyžaduje OpenGL 2.0 nebo vyšší. Aktualizujte prosím své grafické ovladače a/nebo kartu podle potřeby. - + Invalid OpenGL Version Neplatná verze OpenGL @@ -7916,7 +7920,7 @@ Do you want to specify another directory? Exportovat PDF... - + Unsaved document Neuložený dokument @@ -7927,50 +7931,50 @@ Do you want to specify another directory? Exportovaný objekt obsahuje externí odkaz. Před exportem uložte dokument alespoň jednou. - + Delete failed Smazání se nezdařilo - + Dependency error Chyba závislosti - + Copy selected Kopírovat výběr - + Copy active document Kopírovat aktivní dokument - + Copy all documents Kopírovat všechny dokumenty - + Paste Vložit - + Expression error Chyba výrazu - + Failed to parse some of the expressions. Please check the Report View for more details. Některé výrazy se nepodařilo analyzovat. Další podrobnosti najdete v zobrazení Přehledu. - + Failed to paste expressions Nepodařilo se vložit výrazy @@ -8208,7 +8212,7 @@ Do you want to continue? Příliš mnoho otevřených nerušivých oznámení. Oznámení jsou vynechána! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8217,44 +8221,44 @@ Do you want to continue? - + Are you sure you want to continue? Opravdu si přejete pokračovat? - + Please check report view for more... Další informace najdete v zobrazení reportu... - + Physical path: Fyzická cesta: - - + + Document: Dokument: - - + + Path: Cesta: - + Identical physical path Identická fyzická cesta - + Could not save document Dokument nelze uložit - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8267,102 +8271,102 @@ Would you like to save the file with a different name? Chcete uložit soubor s jiným názvem? - - - + + + Saving aborted Ukládání bylo přerušeno - + Save dependent files Uložit závislé soubory - + The file contains external dependencies. Do you want to save the dependent files, too? Soubor obsahuje externí závislosti. Chcete také uložit závislé soubory? - - + + Saving document failed Uložení dokumentu se nezdařilo - + Save document under new filename... Uložte dokument pod novým názvem... - - + + Save %1 Document Uložit dokument %1 - + Document Dokument - - + + Failed to save document Dokumentu se nezdařilo uložit - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenty obsahují cyklické závislosti. Chcete je přesto uložit? - + Save a copy of the document under new filename... Ulož kopii dokumentu pod novým názvem... - + %1 document (*.FCStd) dokument %1 (*.FCStd) - + Document not closable Dokument nelze uzavřít - + The document is not closable for the moment. V tuto chvili nelze dokument uzavřít. - + Document not saved Dokument nebyl uložen - + The document%1 could not be saved. Do you want to cancel closing it? Dokument%1 nelze uložit. Chcete zrušit jeho zavírání? - + Undo Zpět - + Redo Znovu - + There are grouped transactions in the following documents with other preceding transactions V následujících dokumentech jsou seskupeny transakce s jinými předcházejícími transakcemi - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8435,12 +8439,12 @@ Zvolte 'Přerušit' pro zrušení Možnosti... - + Out of memory Nedostatek paměti - + Not enough memory available to display the data. Není dostatek paměti pro zobrazení dat. @@ -8456,7 +8460,7 @@ Zvolte 'Přerušit' pro zrušení Nelze najít soubor %1 %2 ani v %3 - + Navigation styles Styly navigace @@ -8472,32 +8476,32 @@ Zvolte 'Přerušit' pro zrušení Chcete zavřít tento dialog? - + Do you want to save your changes to document '%1' before closing? Přejete si uložit změny v dokumentu "%1" před zavřením? - + Do you want to save your changes to document before closing? Přejete si uložit změny před zavřením dokumentu? - + If you don't save, your changes will be lost. V případě neuložení dokumentu budou změny ztraceny. - + Apply answer to all Použít odpověď na všechny - + %1 Document(s) not saved %1 dokument(y) nebyl(y) uložen(y) - + Some documents could not be saved. Do you want to cancel closing? Některé dokumenty nelze uložit. Chcete zrušit uzavření? @@ -8634,8 +8638,8 @@ podtržítko a nesmí začínat číslicí. Selhalo přidání vlastnosti do '%1': %2 - - + + Drag & drop failed Přetažení se nezdařilo @@ -8932,12 +8936,12 @@ podtržítko a nesmí začínat číslicí. SelectionFilter - + Not allowed: Toto není dovoleno: - + Selection not allowed by filter Výběr není povoleno filtrem @@ -9025,13 +9029,13 @@ podtržítko a nesmí začínat číslicí. StdCmdAlignment - + Alignment... Zarovnání... - - + + Align the selected objects Zarovnat vybrané objekty @@ -9315,17 +9319,17 @@ podtržítko a nesmí začínat číslicí. StdCmdEdit - + Toggle &Edit mode Přepnout režim úprav - + Toggles the selected object's edit mode Přepíná režim úprav vybraného objektu - + Activates or Deactivates the selected object's edit mode Aktivuje nebo deaktivuje režim úprav vybraného objektu @@ -9357,13 +9361,13 @@ podtržítko a nesmí začínat číslicí. StdCmdExpression - + Expression actions Akce výrazu - - + + Actions that apply to expressions Akce, které se vztahují na výrazy @@ -9824,7 +9828,7 @@ podtržítko a nesmí začínat číslicí. Vytvořit nový prázdný dokument - + Unnamed Nepojmenovaný @@ -9922,13 +9926,13 @@ podtržítko a nesmí začínat číslicí. StdCmdPlacement - + Placement... Umístění... - - + + Place the selected objects Umístit vybrané objekty @@ -10066,13 +10070,13 @@ podtržítko a nesmí začínat číslicí. StdCmdRefresh - + &Refresh Aktualizovat - - + + Recomputes the current active document Přepočítat aktivní dokument @@ -10416,13 +10420,13 @@ podtržítko a nesmí začínat číslicí. StdCmdTransform - + Transform... Transformace... - - + + Transform the geometry of selected objects Transformace geometrie vybraných objektů @@ -10430,13 +10434,13 @@ podtržítko a nesmí začínat číslicí. StdCmdTransformManip - + Transform Transformace - - + + Transform the selected object in the 3d view Transformovat na vybraný objekt v 3d zobrazení @@ -11292,7 +11296,7 @@ podtržítko a nesmí začínat číslicí. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11303,7 +11307,7 @@ Opravdu chcete pokračovat? - + Object dependencies Závislosti objektu @@ -11415,7 +11419,7 @@ Chcete dokument nyní uložit? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12183,8 +12187,8 @@ V současné době má váš systém následující pracovní plochy:</p>& Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Došlo k chybě -- viz zobrazení zprávy pro informaci @@ -12943,65 +12947,40 @@ z Python konzole do panelu Report Zdroje světla - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Zdroje světla - + Light source Zdroj světla - + Intensity Intenzita - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Upravte orientaci směrového zdroje světla přetažením ukazovátka pomocí myši nebo použijte boxy natočení pro jemné doladění. - + Direction Směr - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13414,12 +13393,12 @@ Nastavte na 0 pro vyplnění celého prostoru. StdCmdProperties - + Properties Vlastnosti - + Show the property view, which displays the properties of the selected object. Zobrazí náhled vlastností, který zobrazuje vlastnosti vybraného objektu. diff --git a/src/Gui/Language/FreeCAD_da.ts b/src/Gui/Language/FreeCAD_da.ts index c9837ee49a..9a6cc2d2ff 100644 --- a/src/Gui/Language/FreeCAD_da.ts +++ b/src/Gui/Language/FreeCAD_da.ts @@ -91,17 +91,17 @@ Rediger - + Import Importer - + Delete Slette - + Paste expressions Indsæt udtryk @@ -156,8 +156,7 @@ Juster - - + Placement Placering @@ -425,42 +424,42 @@ EditMode - + Default Standard - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objektet vil blive redigeret ved hjælp af tilstanden defineret internt til at være den mest passende for objekttypen - + Transform Transformér - + The object will have its placement editable with the Std TransformManip command Objektet vil have sin placering redigerbar med kommandoen Std TransformManip - + Cutting Klipper - + This edit mode is implemented as available but currently does not seem to be used by any object Denne redigeringstilstand er implementeret som tilgængelig, men synes i øjeblikket ikke at blive brugt af noget objekt - + Color Farve - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3905,7 +3904,7 @@ Du kan også bruge metoden: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigation @@ -3965,99 +3964,99 @@ Du kan også bruge metoden: John Doe <john@doe.com> Rotér til nærmeste - + Font name of the navigation cube Skrifttype for navigationsterningen - + Default Standard - + Cube size Terningsstørrelse - + Size of the navigation cube Størrelsen på navigationsterningen - + Opacity when inactive Gennemsigtighed når inaktiv - + Opacity of the navigation cube when not focused Gennemsigtighed af navigationsterningen, når den ikke er aktiv - + Color Farve - + Base color for all elements Grundfarve for alle elementer - + Rotation center indicator Indikator for rotationscentret - + Sphere size Kugle størrelse - + Color and transparency Farve og gennemsigtighed - + The size of the rotation center indicator Størrelsen af rotationscenterindikatoren - + The color of the rotation center indicator Farven på rotationscenterindikatoren - + 3D Navigation 3D-Navigation - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Liste over museknappernes konfiguration for hver valgt navigationsindstilling. Vælg et sæt og tryk derefter på knappen for at se de nævnte konfigurationer. - + Mouse... Mus... - + Navigation settings set Indstillinger for navigationssæt - + Orbit style Kredsløbsstil - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4068,104 +4067,104 @@ Drejeskive: Delen vil blive roteret omkring z-aksen (med fastholdte akser). Fri drejeskive: Delen vil blive roteret om z-aksen. - + Turntable Drejeskive - + Trackball Trackball - + Free Turntable Fri drejeskive - + Rotation mode Rotationstilstand - + Rotations in 3D will use current cursor position as center for rotation Rotationer i 3D vil bruge den aktuelle markørposition som centrum for rotationen - + Window center Vinduescentreret - + Drag at cursor Træk ved markøren - + Object center Objektcentreret - + Default camera orientation Standard kameraorientering - + Default camera orientation when creating a new document or selecting the home view Standard kameraorientering ved oprettelse af et nyt dokument eller valg af Hjem-visning - + Camera zoom Kamera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Indstiller kamera zoom for nye dokumenter. Værdien er diameteren af kuglen der passer på skærmen. - + mm mm - + Animations Animationer - + Enable spinning animations that are used in some navigation styles after dragging Aktiver roterende animationer, der bruges i nogle navigationsmåder efter træk med musen - + Enable spinning animations Aktiver roterende animationer - + Duration of navigation animations that have a fixed duration Varighed af navigationsanimationer, der har en fast varighed - + Animation duration Animationsvarighed - + The duration of navigation animations in milliseconds Varigheden af navigationsanimationer i millisekunder - + Zoom step Zoom-trin @@ -4175,34 +4174,34 @@ Værdien er diameteren af kuglen der passer på skærmen. Skifttype navn - + Zoom operations will be performed at position of mouse pointer Zoom vil blive udført ud fra musemarkørens position - + Zoom at cursor Zoom ved markøren - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Hvor meget der vil blive zoomet. Et zoom trin på '1' betyder en faktor på 7,5 for hvert zoom trin. - + Direction of zoom operations will be inverted Retning for zoom operationer vil blive vendt - + Invert zoom Vend zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4211,7 +4210,7 @@ Påvirker kun navigation med gestures. Musetipning deaktiveres ikke med denne indstilling. - + Disable touchscreen tilt gesture Deaktivér tilt-gesture på touch-skærme @@ -4681,7 +4680,7 @@ Præference systemet er det system, der er fastsat i de generelle præferencer.< Gui::Dialog::DockablePlacement - + Placement Placering @@ -5267,32 +5266,17 @@ Søjlen 'Status' viser, om dokumentet kan gendannes. Nulstil - - OK - Ok - - - - Close - Luk - - - - Apply - Anvende - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Vælg 1, 2 eller 3 punkter før du klikker på denne knap. Et punkt kan være er knudepunkt, et punkt på en flade eller på en kant. På en flade eller en kant, vil punktet blive valgt ved musens position på fladen eller kanten. Hvis der vælges 1 punkt, bliver punktet brugt som rotationscenter. Hvis der vælges 2 punkter, bliver midtpunktet mellem dem brugt som rotationscenter og en ny brugerdefineret akse oprettes, om nødvendigt. Hvis der vælges 3 punkter, bliver det første punkt anvendt som rotationscentrer og bliver lagt på normalvektoren for det plan, der defineres af de 3 punkter. Visse afstande og vinkeloplysninger findes i rapportvisningen, hvilket kan være nyttigt, når objekterne placeres. For nemheds skyld, kopieres den relevante afstand eller vinkel til udklipsholderen, når Shift + klik anvendes. - + Incorrect quantity Forkert værdi - + There are input fields with incorrect input, please ensure valid placement values! Der er indlæsningsfelter med forkert indhold, kontrollér venligst for gyldige placeringsværdier! @@ -5431,13 +5415,7 @@ Søjlen 'Status' viser, om dokumentet kan gendannes. Gui::Dialog::Transform - - Cancel - Annuller - - - - + Transform Transformér @@ -5828,13 +5806,13 @@ Vil du gemme ændringerne? Gui::FileChooser - - + + Select a file Vælg en fil - + Select a directory Vælg en mappe @@ -5842,13 +5820,13 @@ Vil du gemme ændringerne? Gui::FileDialog - + Save as Gem som - - + + Open Åbn @@ -5856,12 +5834,12 @@ Vil du gemme ændringerne? Gui::FileOptionsDialog - + Extended Udvidet - + All files (*.*) Alle filer (*.*) @@ -6038,7 +6016,7 @@ Vil du gemme ændringerne? Gui::LabelEditor - + List Liste @@ -6155,57 +6133,57 @@ Vil du gemme ændringerne? Gui::MainWindow - + Dimension Dimension - + Ready Klar - + Close All Luk alle - - - + + + Toggles this toolbar Slår denne værktøjslinje til/fra - - - + + + Toggles this dockable window Slår fastgørelse af dette vindue til/fra - + WARNING: This is a development version. ADVARSEL: Dette er en udviklingsversion. - + Please do not use it in a production environment. Den bør ikke anvendes i et produktionsmiljø. - - + + Unsaved document Ikke-gemt dokument - + The exported object contains external link. Please save the documentat least once before exporting. Det eksporterede objekt indeholder ekstern(e) link(s). Gem dokumentet før eksportering. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? For at linke til eksterne objekter, skal dokumentet gemmes mindst én gang. @@ -6795,12 +6773,12 @@ Vil du afslutte uden at gemme dine data? Gui::SelectModule - + Select module Vælg modul - + Open %1 as Åbn %1 som @@ -7336,7 +7314,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Trævisningen @@ -7344,7 +7322,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Søg @@ -7402,148 +7380,148 @@ Do you want to specify another directory? Gruppe - + Labels & Attributes Etiketter & attributter - + Description Beskrivelse - + Internal name Internal name - + Show items hidden in tree view Vis skjulte elementer i trævisning - + Show items that are marked as 'hidden' in the tree view Vis elementer der er markeret som 'skjulte' i trævisningen - + Toggle visibility in tree view Skift synlighed i trævisningen - + Toggles the visibility of selected items in the tree view Ændrer synligheden af valgte elementer i trævisningen - + Create group Opret gruppe - + Create a group Opret en gruppe - - + + Rename Omdøb - + Rename object Omdøb objekt - + Finish editing Færdig med at redigere - + Finish editing object Færdig med at redigere objekt - + Add dependent objects to selection Tilføj afhængige objekter til markeringen - + Adds all dependent objects to the selection Tilføjer alle afhængige objekter til markeringen - + Close document Luk dokument - + Close the document Luk dokumentet - + Reload document Genindlæs Dokument - + Reload a partially loaded document Genindlæs et delvist indlæst dokument - + Skip recomputes Undlad genberegning - + Enable or disable recomputations of document Aktiver eller deaktiver omregning af dokument - + Allow partial recomputes Tillad delvise omregninger - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Aktiver eller deaktiver genberegning af det objekt der redigeres når 'Undlad genberegning' er aktiveret - + Mark to recompute Markér for genberegning - + Mark this object to be recomputed Markér dette objekt, som et der skal genberegnes - + Recompute object Genberegn objekt - + Recompute the selected object Genberegn det valgte objekt - + (but must be executed) (men skal udføres) - + %1, Internal name: %2 %1, Internt navn: %2 @@ -7740,14 +7718,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Ugyldig indput - - + + Input in line %1 is not a number Input i linje %1 er ikke et tal @@ -7755,47 +7733,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Trævisningen - + Tasks Opgaver - + Property view Egenskabsvisning - + Selection view Udvælgelsesvisning - + Task List Opgaveliste - + Model Model - + DAG View DAG Visning - + Report view Rapportvisning - + Python console Python-konsollen @@ -7835,45 +7813,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Ukendt filtype - - + + Cannot open unknown filetype: %1 Kan ikke åbne ukendt filetype: %1 - + Export failed Eksporten mislykkedes - + Cannot save to unknown filetype: %1 Kan ikke gemme ukendt filetype: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Værktøjskasse-fejl - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Dette system kører OpenGL %1.%2. FreeCAD kræver OpenGL 2.0 eller nyere. Opgrader venligst din grafikdriver og/eller dit grafikkort efter behov. - + Invalid OpenGL Version Ugyldig OpenGL version @@ -7924,7 +7928,7 @@ Do you want to specify another directory? Eksporterer PDF... - + Unsaved document Ikke-gemt dokument @@ -7935,50 +7939,50 @@ Do you want to specify another directory? Det eksporterede objekt indeholder ekstern(e) link(s). Gem dokumentet før eksportering. - + Delete failed Sletning lykkedes ikke - + Dependency error Afhængighedsfejl - + Copy selected Kopi valgt - + Copy active document Kopier aktivt dokument - + Copy all documents Kopier alle dokumenter - + Paste Indsæt - + Expression error Udtryksfejl - + Failed to parse some of the expressions. Please check the Report View for more details. Kunne ikke fortolke nogle af udtrykkene. Se venligst Rapportvisningen for flere detaljer. - + Failed to paste expressions Kunne ikke indsætte udtryk @@ -8217,7 +8221,7 @@ Vil du fortsætte? For mange åbne ikke-forstyrrende meddelelser. Notifikationer bliver udeladt! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8226,44 +8230,44 @@ Vil du fortsætte? - + Are you sure you want to continue? Sikker på, at du vil fortsætte? - + Please check report view for more... Se venligst rapportvisningen for mere... - + Physical path: Fysisk sti: - - + + Document: Dokument: - - + + Path: Sti: - + Identical physical path Identisk fysisk sti - + Could not save document Kunne ikke gemme dokument - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8276,102 +8280,102 @@ Would you like to save the file with a different name? Vil du gemme filen med et andet navn? - - - + + + Saving aborted Gemmer afbrudte - + Save dependent files Gem afhængige filer - + The file contains external dependencies. Do you want to save the dependent files, too? Filen indeholder eksterne afhængigheder. Vil du også gemme de afhængige filer? - - + + Saving document failed Kunne ikke gemme dokumentet - + Save document under new filename... Gem dokumentet under nyt filnavn... - - + + Save %1 Document Gem %1 dokument - + Document Dokument - - + + Failed to save document Kunne ikke gemme dokument - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenter indeholder rekursive afhængigheder. Vil du stadig gemme dem? - + Save a copy of the document under new filename... Gem en kopi af dokumentet under nyt filnavn... - + %1 document (*.FCStd) %1 dokument (*.FCStd) - + Document not closable Dokumentet kan ikke lukkes - + The document is not closable for the moment. Dokumentet kan ikke lukkes for øjeblikket. - + Document not saved Dokument ikke gemt - + The document%1 could not be saved. Do you want to cancel closing it? Dokumentet%1 kunne ikke gemmes. Vil du annullere lukning af det? - + Undo Fortryd - + Redo Annulér fortrydning - + There are grouped transactions in the following documents with other preceding transactions Der er grupperede transaktioner i følgende dokumenter, med andre forudgående transaktioner - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8444,12 +8448,12 @@ Vælg 'Afbryd' for at afbryde Indstillinger... - + Out of memory Ikke mere hukommelse - + Not enough memory available to display the data. Ikke nok hukommelse til at vise dataene. @@ -8465,7 +8469,7 @@ Vælg 'Afbryd' for at afbryde Kan ikke finde filen %1, hverken i %2 eller i %3 - + Navigation styles Navigationsmåder @@ -8481,32 +8485,32 @@ Vælg 'Afbryd' for at afbryde Vil du lukke denne dialog? - + Do you want to save your changes to document '%1' before closing? Vil du gemme dine ændringer i dokumentet '%1', før du lukker? - + Do you want to save your changes to document before closing? Vil du gemme dine ændringer i dokumentet før du lukker? - + If you don't save, your changes will be lost. Hvis du ikke gemmer, vil dine ændringer gå tabt. - + Apply answer to all Anvend svar på alle - + %1 Document(s) not saved %1 Dokument(er) er ikke gemt - + Some documents could not be saved. Do you want to cancel closing? Nogle dokumenter kunne ikke gemmes. Vil du annullere lukningen? @@ -8643,8 +8647,8 @@ og understregning, og må ikke starte med et tal. Kunne ikke tilføje egenskab til '%1': %2 - - + + Drag & drop failed Træk & slip mislykkedes @@ -8941,12 +8945,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Ikke tilladt: - + Selection not allowed by filter Valget tillades ikke af filteret @@ -9034,13 +9038,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... På linje... - - + + Align the selected objects Bring de markerede objekter på linje @@ -9324,17 +9328,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Skift &redigeringstilstand - + Toggles the selected object's edit mode Ændrer redigeringstilstand for det valgte objekts - + Activates or Deactivates the selected object's edit mode Aktiverer eller deaktiverer det valgte objekts redigeringstilstand @@ -9366,13 +9370,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Udtrykshandlinger - - + + Actions that apply to expressions Handlinger der er knyttet til udtryk @@ -9833,7 +9837,7 @@ underscore, and must not start with a digit. Opret et nyt tomt dokument - + Unnamed Unavngivet @@ -9931,13 +9935,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Placering... - - + + Place the selected objects Placér de markerede objekter @@ -10075,13 +10079,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Opdatér - - + + Recomputes the current active document Opdaterer det aktuelle aktive dokument @@ -10425,13 +10429,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformér... - - + + Transform the geometry of selected objects Transformér geometrien for markerede objekter @@ -10439,13 +10443,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transformér - - + + Transform the selected object in the 3d view Transformér det markerede objekt i 3D-visningen @@ -11301,7 +11305,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11312,7 +11316,7 @@ Er du sikker på du vil fortsætte? - + Object dependencies Objektafhængigheder @@ -11424,7 +11428,7 @@ Vil du gemme dokumentet nu? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12192,8 +12196,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Der opstod en fejl -- se Report View for information @@ -12952,65 +12956,40 @@ fra Python-konsollen til Rapportvisningspanelet Lyskilder - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Lyskilder - + Light source Lyskilde - + Intensity Intensitet - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Retning - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13418,12 +13397,12 @@ hvis alle pixels i området er ugennemsigtige. StdCmdProperties - + Properties Egenskaber - + Show the property view, which displays the properties of the selected object. Viser egenskabsvisningen, som viser egenskaberne for det markerede objekt. diff --git a/src/Gui/Language/FreeCAD_de.ts b/src/Gui/Language/FreeCAD_de.ts index 1d90b23f13..4c9a5d271b 100644 --- a/src/Gui/Language/FreeCAD_de.ts +++ b/src/Gui/Language/FreeCAD_de.ts @@ -91,17 +91,17 @@ Bearbeiten - + Import Importieren - + Delete Löschen - + Paste expressions Ausdrücke einfügen @@ -156,8 +156,7 @@ Ausrichten - - + Placement Positionierung @@ -425,42 +424,42 @@ EditMode - + Default Standard - + The object will be edited using the mode defined internally to be the most appropriate for the object type Das Objekt wird mit dem intern als dafür am geeignetsten gekennzeichneten Modus bearbeitet - + Transform Bewegen - + The object will have its placement editable with the Std TransformManip command Die Objektplatzierung wird mit dem Befehl Std TransformManip editierbar sein - + Cutting Schneiden - + This edit mode is implemented as available but currently does not seem to be used by any object Dieser Bearbeitungsmodus ist als verfügbar implementiert, scheint aber von keinem Objekt verwendet zu werden - + Color Farbe - + The object will have the color of its individual faces editable with the Part FaceAppearances command Das Objekt wird seine einzelnen Flächenfarben mit dem Befehl Part FaceAppearances editierbar haben @@ -1994,7 +1993,7 @@ Perhaps a file permission error? % - % + % @@ -3896,7 +3895,7 @@ Es kann auch diese Form verwendet werden: Max Mustermann <max@mustermann.de&g Gui::Dialog::DlgSettingsNavigation - + Navigation Navigation @@ -3956,99 +3955,99 @@ Es kann auch diese Form verwendet werden: Max Mustermann <max@mustermann.de&g Drehen zum nächstgelegenen - + Font name of the navigation cube Schriftartname des Navigationswürfels - + Default Standard - + Cube size Würfelgröße - + Size of the navigation cube Größe des Navigationswürfels - + Opacity when inactive Deckkraft wenn inaktiv - + Opacity of the navigation cube when not focused Deckkraft des Navigationswürfels, wenn nicht im Fokus - + Color Farbe - + Base color for all elements Grundfarbe für alle Elemente - + Rotation center indicator Drehpunkt-Markierung - + Sphere size Kugelgröße - + Color and transparency Farbe und Transparenz - + The size of the rotation center indicator Größe der Drehpunkt-Markierung - + The color of the rotation center indicator Farbe der Drehpunkt-Markierung - + 3D Navigation 3D-Navigation - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Listet die Konfiguration der Maustaste für jede ausgewählte Navigationseinstellung auf. Eine Einstellung auswählen und dann die Schaltfläche drücken, um die Einstellungen anzuzeigen. - + Mouse... Maus... - + Navigation settings set Die Einstellungen der Navigationsleiste wurden gespeichert - + Orbit style Orbit-Stil - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4059,104 +4058,104 @@ Drehtisch: das Teil wird um die z-Achse gedreht (mit eingeschränkten Achsen). freier Drehtisch: Das Teil wird um die z-Achse gedreht. - + Turntable Drehscheibe - + Trackball Trackball - + Free Turntable Freie Drehscheibe - + Rotation mode Art der Drehung - + Rotations in 3D will use current cursor position as center for rotation Drehen in 3D wird die aktuelle Cursorposition als Drehmittelpunkt verwenden - + Window center Um die Fenstermitte - + Drag at cursor Um den Mauszeiger - + Object center Um das Objektzentrum - + Default camera orientation Standard-Kameraausrichtung - + Default camera orientation when creating a new document or selecting the home view Standard-Kameraorientierung für neue Dokumente oder bei Auswahl der Home-Ansicht - + Camera zoom Kamera-Zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Legt den Kamera-Zoom für neue Dokumente fest. Der Wert ist der Durchmesser der Kugel, der auf den Bildschirm passt. - + mm mm - + Animations Animationen - + Enable spinning animations that are used in some navigation styles after dragging Drehungsanimationen aktivieren, die in einigen Navigationsstilen nach dem Ziehen verwendet werden - + Enable spinning animations Drehungsanimationen aktivieren - + Duration of navigation animations that have a fixed duration Die Dauer von Navigationsanimationen, die eine festgelegte Laufzeit haben - + Animation duration Dauer der Animation - + The duration of navigation animations in milliseconds Die Dauer der Navigationsanimationen in Millisekunden - + Zoom step Zoom-Schritt @@ -4166,34 +4165,34 @@ Der Wert ist der Durchmesser der Kugel, der auf den Bildschirm passt.Schriftname - + Zoom operations will be performed at position of mouse pointer Zoom-Vorgänge werden an der Position des Mauszeigers ausgeführt - + Zoom at cursor Zoom an Cursorposition - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Wie stark vergrößert werden soll. Zoom-Schritt von '1' bedeutet für jeden Zoom-Schritt einen Faktor von 7,5. - + Direction of zoom operations will be inverted Richtung der Zoom-Vorgänge wird umgekehrt - + Invert zoom Zoom umkehren - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4202,9 +4201,9 @@ Betrifft nur den Gestennavigationsstil. Das Neigen der Maus wird durch diese Einstellung nicht deaktiviert. - + Disable touchscreen tilt gesture - Deaktiviere die Touchscreen Neige-Geste + Touchscreen-Neige-Geste deaktivieren @@ -4671,7 +4670,7 @@ Das Präferenzsystem ist das in den allgemeinen Einstellungen festgelegte System Gui::Dialog::DockablePlacement - + Placement Positionierung @@ -5255,32 +5254,17 @@ The 'Status' column shows whether the document could be recovered. Zurücksetzen - - OK - OK - - - - Close - Schließen - - - - Apply - Übernehmen - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Vor einem Klick bitte 1, 2 oder 3 Punkte auswählen. Ein Punkt kann sich auf einem Scheitelpunkt, einer Fläche oder einer Kante befinden. Der verwendete Punkt auf einer Fläche oder Kante ist derjenige Punkt, der sich an der Mausposition entlang der Fläche oder Kante befindet. Wenn 1 Punkt ausgewählt ist, wird dieser als Drehpunkt verwendet. Wenn zwei Punkte ausgewählt werden, ist der Mittelpunkt zwischen ihnen der Drehpunkt und falls erforderlich, wird eine neue benutzerdefinierte Achse erstellt. Wenn 3 Punkte ausgewählt werden, wird der erste Punkt zum Drehpunkt und liegt auf dem Vektor, der senkrecht zu der durch die 3 Punkte definierten Ebene liegt. In der Berichtansicht werden einige Entfernungs- und Winkelinformationen bereitgestellt, die beim Ausrichten von Objekten hilfreich sein können. Bei gedrückter Umschalttaste + klicken, wird der entsprechende Abstand oder Winkel in die Zwischenablage kopiert. - + Incorrect quantity Falsche Menge - + There are input fields with incorrect input, please ensure valid placement values! Es gibt Eingabefelder mit falscher Eingabe, bitte sicherstellen, dass gültige Werte für die Positionierung verwendet werden! @@ -5419,13 +5403,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Abbrechen - - - - + Transform Transformierung @@ -5817,13 +5795,13 @@ Sollen die Änderungen gespeichert werden? Gui::FileChooser - - + + Select a file Eine Datei auswählen - + Select a directory Ein Verzeichnis auswählen @@ -5831,13 +5809,13 @@ Sollen die Änderungen gespeichert werden? Gui::FileDialog - + Save as Speichern unter - - + + Open Öffnen @@ -5845,12 +5823,12 @@ Sollen die Änderungen gespeichert werden? Gui::FileOptionsDialog - + Extended Erweitert - + All files (*.*) Alle Dateien (*.*) @@ -6028,7 +6006,7 @@ ODER ALT-Taste + rechte Maustaste drücken ODER Bild auf/Bild ab auf der Tastatu Gui::LabelEditor - + List Liste @@ -6145,57 +6123,57 @@ ODER ALT-Taste + rechte Maustaste drücken ODER Bild auf/Bild ab auf der Tastatu Gui::MainWindow - + Dimension Abmessung - + Ready Bereit - + Close All Alles schließen - - - + + + Toggles this toolbar Symbolleiste ein-/ausschalten - - - + + + Toggles this dockable window Andockbares Fenster ein-/ausschalten - + WARNING: This is a development version. ACHTUNG: Dies ist eine Entwicklungsversion. - + Please do not use it in a production environment. Bitte nicht in einer Produktionsumgebung verwenden. - - + + Unsaved document Nicht gespeichertes Dokument - + The exported object contains external link. Please save the documentat least once before exporting. Das exportierte Objekt enthält einen externen Link. Das Dokument sollte vor dem Exportieren mindestens einmal gespeichert werden. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Um zu externen Objekten zu verlinken, muss das Dokument mindestens einmal gespeichert werden. @@ -6785,12 +6763,12 @@ Trotzdem beenden, ohne die Daten zu speichern? Gui::SelectModule - + Select module Modul auswählen - + Open %1 as Öffne %1 als @@ -7326,7 +7304,7 @@ Stattdessen ein anderes Verzeichnis angeben? Gui::TreeDockWidget - + Tree view Baumansicht @@ -7334,7 +7312,7 @@ Stattdessen ein anderes Verzeichnis angeben? Gui::TreePanel - + Search Suche @@ -7392,148 +7370,148 @@ Stattdessen ein anderes Verzeichnis angeben? Gruppe - + Labels & Attributes Bezeichnungen & Eigenschaften - + Description Beschreibung - + Internal name Interner Name - + Show items hidden in tree view In der Baumansicht ausgeblendete Elemente anzeigen - + Show items that are marked as 'hidden' in the tree view Elemente anzeigen, die in der Baumansicht als 'ausgeblendet' gekennzeichnet sind - + Toggle visibility in tree view Sichtbarkeit in der Baumansicht umschalten - + Toggles the visibility of selected items in the tree view Schaltet die Sichtbarkeit ausgewählter Elemente in der Baumansicht um - + Create group Gruppe erstellen - + Create a group Erstelle eine Gruppe - - + + Rename Umbenennen - + Rename object Objekt umbenennen - + Finish editing Bearbeitung beenden - + Finish editing object Bearbeitung des Objekts beenden - + Add dependent objects to selection Abhängige Objekte zur Auswahl hinzufügen - + Adds all dependent objects to the selection Fügt alle abhängigen Objekte zur Auswahl hinzu - + Close document Dokument schließen - + Close the document Das Dokument schließen - + Reload document Dokument neu laden - + Reload a partially loaded document Ein teilweise geladenes Dokument neu laden - + Skip recomputes Neuberechnungen überspringen - + Enable or disable recomputations of document Aktivieren oder Deaktivieren von Neuberechnungen des Dokuments - + Allow partial recomputes Teilweise Neuberechnungen erlauben - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Aktivieren oder deaktivieren der Neuberechnung des Editierungsobjekts, wenn 'Neuberechnung überspringen' aktiviert ist - + Mark to recompute Markieren, um neu zu berechnen - + Mark this object to be recomputed Markiert dieses Objekt zum Neuberechnen - + Recompute object Objekt neu berechnen - + Recompute the selected object Ausgewähltes Objekt neu berechnen - + (but must be executed) (muss aber ausgeführt werden) - + %1, Internal name: %2 %1, Interner Name:%2 @@ -7730,14 +7708,14 @@ Stattdessen ein anderes Verzeichnis angeben? PropertyListDialog - - + + Invalid input Ungültige Eingabe - - + + Input in line %1 is not a number Eingabe in Zeile %1 ist keine Zahl @@ -7745,47 +7723,47 @@ Stattdessen ein anderes Verzeichnis angeben? QDockWidget - + Tree view Baumansicht - + Tasks Aufgaben - + Property view Eigenschaften - + Selection view Auswahlansicht - + Task List Aufgabenliste - + Model Modell - + DAG View DAG-Ansicht - + Report view Ausgabefenster - + Python console Python-Konsole @@ -7825,45 +7803,71 @@ Stattdessen ein anderes Verzeichnis angeben? Python - - - + + + Unknown filetype Unbekannter Dateityp - - + + Cannot open unknown filetype: %1 Kann unbekannten Dateityp nicht öffnen: %1 - + Export failed Fehler beim Exportieren - + Cannot save to unknown filetype: %1 Kann in unbekannten Dateityp nicht speichern: %1 - + + Recomputation required + Neuberechnung erforderlich + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Wechsel von Arbeitsbereich fehlgeschlagen - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Dieses System verwendet OpenGL %1.%2. FreeCAD benötigt OpenGL 2.0 oder höher. Bitte den Grafiktreiber und/oder Grafikkarte aktualisieren. - + Invalid OpenGL Version Ungültige OpenGL-Version @@ -7914,7 +7918,7 @@ Stattdessen ein anderes Verzeichnis angeben? Exportiert als PDF... - + Unsaved document Nicht gespeichertes Dokument @@ -7925,50 +7929,50 @@ Stattdessen ein anderes Verzeichnis angeben? Das exportierte Objekt enthält einen externen Link. Das Dokument sollte vor dem Exportieren mindestens einmal gespeichert werden. - + Delete failed Löschen fehlgeschlagen - + Dependency error Abhängigkeitsfehler - + Copy selected Ausgewählte kopieren - + Copy active document Aktives Dokument kopieren - + Copy all documents Alle Dokumente kopieren - + Paste Einfügen - + Expression error Ausdrucksfehler - + Failed to parse some of the expressions. Please check the Report View for more details. Fehler beim Analysieren einiger Ausdrücke. Weitere Einzelheiten finden sich im Ausgabefenster. - + Failed to paste expressions Das Einfügen von Ausdrücken ist fehlgeschlagen @@ -8207,7 +8211,7 @@ Trotzdem fortfahren? Zu viele offene, unaufdringliche Benachrichtigungen. Benachrichtigungen werden ausgelassen! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8216,44 +8220,44 @@ Trotzdem fortfahren? - + Are you sure you want to continue? Wirklich fortfahren? - + Please check report view for more... Bitte das Ausgabefenster prüfen für weitere... - + Physical path: Physischer Pfad: - - + + Document: Dokument: - - + + Path: Pfad: - + Identical physical path Identischer physischer Pfad - + Could not save document Dokument konnte nicht gespeichert werden - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8266,102 +8270,102 @@ Would you like to save the file with a different name? Die Datei unter einem anderen Namen speichern? - - - + + + Saving aborted Speichern abgebrochen - + Save dependent files Abhängige Dateien speichern - + The file contains external dependencies. Do you want to save the dependent files, too? Die Datei enthält externe Abhängigkeiten. Auch die abhängigen Dateien speichern? - - + + Saving document failed Fehler beim Speichern des Dokuments - + Save document under new filename... Dokument unter neuem Dateinamen speichern... - - + + Save %1 Document Dokument %1 speichern - + Document Dokument - - + + Failed to save document Fehler beim Speichern des Dokuments - + Documents contains cyclic dependencies. Do you still want to save them? Die Dokumente enthalten zyklische Abhängigkeiten. Sollen sie trotzdem gespeichert werden? - + Save a copy of the document under new filename... Eine Kopie des Dokuments unter einem neuen Dateinamen speichern... - + %1 document (*.FCStd) %1-Dokument (*.FCStd) - + Document not closable Dokument kann nicht geschlossen werden - + The document is not closable for the moment. Das Dokument kann im Moment nicht geschlossen werden. - + Document not saved Dokument nicht gespeichert - + The document%1 could not be saved. Do you want to cancel closing it? Das Dokument%1 konnte nicht gespeichert werden. Möchtest du das Schließen abbrechen? - + Undo Rückgängig - + Redo Wiederholen - + There are grouped transactions in the following documents with other preceding transactions Es gibt gruppierte Transaktionen in den folgenden Dokumenten mit anderen vorhergehenden Transaktionen - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8434,12 +8438,12 @@ Choose 'Abort' to abort Einstellungen... - + Out of memory Nicht genügend Speicher - + Not enough memory available to display the data. Nicht genügend Speicher verfügbar, um die Daten darstellen zu können. @@ -8455,7 +8459,7 @@ Choose 'Abort' to abort Kann Datei %1 weder in %2 noch in %3 finden - + Navigation styles Navigationsstile @@ -8471,32 +8475,32 @@ Choose 'Abort' to abort Soll dieser Dialog geschlossen werden? - + Do you want to save your changes to document '%1' before closing? Sollen die Änderungen an dem Dokument '%1' vor dem Schließen gespeichert werden? - + Do you want to save your changes to document before closing? Sollen die Änderungen am Dokument vor dem Schließen gespeichert werden? - + If you don't save, your changes will be lost. Ohne speichern, gehen die Änderungen verloren. - + Apply answer to all Antwort auf alle anwenden - + %1 Document(s) not saved %1 Dokument(e) nicht gespeichert - + Some documents could not be saved. Do you want to cancel closing? Einige Dokumente konnten nicht gespeichert werden. Möchtest du das Schließen abbrechen? @@ -8633,8 +8637,8 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen.Das Hinzufügen der Eigenschaft %2 zu '%1' ist fehlgeschlagen - - + + Drag & drop failed Drag & Drop fehlgeschlagen @@ -8928,12 +8932,12 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen. SelectionFilter - + Not allowed: Nicht erlaubt: - + Selection not allowed by filter Auswahl vom Filter nicht erlaubt @@ -9021,13 +9025,13 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen. StdCmdAlignment - + Alignment... Ausrichtung... - - + + Align the selected objects Die ausgewählten Objekte ausrichten @@ -9311,17 +9315,17 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen. StdCmdEdit - + Toggle &Edit mode Bearbeitungsmodus umschalten - + Toggles the selected object's edit mode Schaltet den Bearbeitungsmodus des ausgewählten Objekts um - + Activates or Deactivates the selected object's edit mode Aktiviert oder deaktiviert den Bearbeiten-Modus des ausgewählten Objekts @@ -9353,13 +9357,13 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen. StdCmdExpression - + Expression actions Ausdruck-Aktionen - - + + Actions that apply to expressions Aktionen, die auf Ausdrücke angewendet werden @@ -9820,7 +9824,7 @@ und Unterstriche enthalten und darf nicht mit einer Ziffer beginnen.Neues Dokument erstellen - + Unnamed Unbenannt @@ -9919,13 +9923,13 @@ Es ist dazu gedacht, Objekte zusammenzustellen, die eine Part-Topoform enthalten StdCmdPlacement - + Placement... Positionierung... - - + + Place the selected objects Platziere die ausgewählten Objekte @@ -10063,13 +10067,13 @@ Es ist dazu gedacht, Objekte zusammenzustellen, die eine Part-Topoform enthalten StdCmdRefresh - + &Refresh A&ktualisieren - - + + Recomputes the current active document Berechnet das aktive Dokument neu @@ -10413,13 +10417,13 @@ Es ist dazu gedacht, Objekte zusammenzustellen, die eine Part-Topoform enthalten StdCmdTransform - + Transform... Transformieren... - - + + Transform the geometry of selected objects Geometrie ausgewählter Objekte transformieren @@ -10427,13 +10431,13 @@ Es ist dazu gedacht, Objekte zusammenzustellen, die eine Part-Topoform enthalten StdCmdTransformManip - + Transform Transformieren - - + + Transform the selected object in the 3d view Ausgewähltes Objekt in der 3D-Ansicht transformieren @@ -11289,7 +11293,7 @@ Es ist dazu gedacht, Objekte zusammenzustellen, die eine Part-Topoform enthalten Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11300,7 +11304,7 @@ Trotzdem fortfahren? - + Object dependencies Objektabhängigkeiten @@ -11412,7 +11416,7 @@ Das Dokument jetzt speichern? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12179,8 +12183,8 @@ Zurzeit verfügt dieses System über folgende Arbeitsbereiche:</p></bod Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Es ist ein Fehler aufgetreten -- siehe Ausgabefenster für Informationen @@ -12937,65 +12941,40 @@ Python-Konsole in das Ausgabefenster umgeleitet Lichtquellen - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Lichtquellen - + Light source Lichtquelle - + Intensity Intensität - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Die Ausrichtung der direkten Lichtquelle durch Ziehen des Griffs mit der Maus einstellen, oder die Eingabefelder für die Feineinstellung verwenden. - + Direction Richtung - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13402,12 +13381,12 @@ der Region nicht transparent sind. StdCmdProperties - + Properties Eigenschaften - + Show the property view, which displays the properties of the selected object. Zeigt die Eigenschaften-Ansicht, welche die Eigenschaften des ausgewählten Objekts zeigt. diff --git a/src/Gui/Language/FreeCAD_el.ts b/src/Gui/Language/FreeCAD_el.ts index f008576367..2e310d635a 100644 --- a/src/Gui/Language/FreeCAD_el.ts +++ b/src/Gui/Language/FreeCAD_el.ts @@ -91,17 +91,17 @@ Επεξεργασία - + Import Εισάγετε - + Delete Διαγραφή - + Paste expressions Επικόλληση εκφράσεων @@ -156,8 +156,7 @@ Ευθυγράμμιση - - + Placement Τοποθέτηση @@ -425,42 +424,42 @@ EditMode - + Default Προεπιλεγμένο - + The object will be edited using the mode defined internally to be the most appropriate for the object type Το αντικείμενο θα επεξεργαστεί χρησιμοποιώντας τη λειτουργία που έχει οριστεί εσωτερικά ώστε να είναι η καταλληλότερη για τον τύπο αντικειμένου - + Transform Μετατόπιση - + The object will have its placement editable with the Std TransformManip command Η τοποθέτησή του θα είναι επεξεργάσιμη με την εντολή Std TransformManip - + Cutting Περικοπή - + This edit mode is implemented as available but currently does not seem to be used by any object Αυτή η λειτουργία επεξεργασίας 'είναι διαθέσιμη, αλλά προς το παρόν δεν φαίνεται να χρησιμοποιείται από κανένα αντικείμενο - + Color Χρώμα - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3899,7 +3898,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Πλοήγηση @@ -3959,99 +3958,99 @@ You can also use the form: John Doe <john@doe.com> Περιστροφή στο πλησιέστερο - + Font name of the navigation cube Όνομα γραμματοσειράς του κύβου πλοήγησης - + Default Προεπιλεγμένο - + Cube size Μέγεθος κύβου - + Size of the navigation cube Μέγεθος του κύβου πλοήγησης - + Opacity when inactive Αδιαφάνεια όταν είναι ανενεργό - + Opacity of the navigation cube when not focused Αδιαφάνεια του κύβου πλοήγησης όταν δεν εστιάζεται - + Color Χρώμα - + Base color for all elements Base color for all elements - + Rotation center indicator Rotation center indicator - + Sphere size Sphere size - + Color and transparency Color and transparency - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation Τρισδιάστατη Πλοήγηση - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Εμφάνιση των ρυθμίσεων του ποντικιού για κάθε επιλεγμένη ρύθμιση πλοήγησης. Επιλέξτε ένα σετ και στη συνέχεια πατήστε το κουμπί για να δείτε αυτές τις ρυθμίσεις. - + Mouse... Ποντίκι... - + Navigation settings set Οι ρυθμίσεις πλοήγησης ορίστηκαν - + Orbit style Τύπος μορφοποίησης τροχιάς - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4062,104 +4061,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable Περιστρεφόμενη βάση - + Trackball Ιχνόσφαιρα - + Free Turntable Free Turntable - + Rotation mode Λειτουργία περιστροφής - + Rotations in 3D will use current cursor position as center for rotation Περιστροφή σε 3D θα χρησιμοποιήσει την τρέχουσα θέση του κέρσορα ως κέντρο για περιστροφή - + Window center Κεντράρισμα παραθύρου - + Drag at cursor Σύρετε τον κέρσορα - + Object center Κέντρο αντικειμένων - + Default camera orientation Προεπιλεγμένος προσανατολισμός κάμερας - + Default camera orientation when creating a new document or selecting the home view Προεπιλεγμένος προσανατολισμός κάμερας κατά τη δημιουργία ενός νέου εγγράφου ή την επιλογή της προβολής αρχικής οθόνης - + Camera zoom Μεγέθυνση κάμερας - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Ρυθμίζει το ζουμ της κάμερας για νέα έγγραφα. Η τιμή είναι η διάμετρος της σφαίρας που θα χωρέσει στην οθόνη. - + mm χιλιοστά - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Ενεργοποίηση εφέ περιστροφής - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Διάρκεια κίνησης - + The duration of navigation animations in milliseconds Η διάρκεια των κινούμενων εικόνων πλοήγησης σε χιλιοστά του δευτερολέπτου - + Zoom step Βήμα εστίασης @@ -4169,34 +4168,34 @@ The value is the diameter of the sphere to fit on the screen. Όνομα γραμματοσειράς - + Zoom operations will be performed at position of mouse pointer Οι λειτουργίες εστίασης θα πραγματοποιηθούν με το δείκτη του ποντικιού - + Zoom at cursor Εστίαση στον κέρσορα - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Πόσο θα μεγεθύνεται. Το βήμα ζουμ του '1' σημαίνει ένα συντελεστή 7,5 για κάθε βήμα ζουμ. - + Direction of zoom operations will be inverted Η κατεύθυνση των εργασιών εστίασης θα αντιστραφεί - + Invert zoom Αντιστροφή εστίασης - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4205,7 +4204,7 @@ Affects only gesture navigation style. Mouse tilting is not disabled by this setting. - + Disable touchscreen tilt gesture Απενεργοποίηση της χειρονομίας πλαγιάσματος, από την οθόνη αφής @@ -4675,7 +4674,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Τοποθέτηση @@ -5261,32 +5260,17 @@ The 'Status' column shows whether the document could be recovered. Επαναφορά - - OK - ΟΚ - - - - Close - Κλείσιμο - - - - Apply - Εφαρμογή - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Επιλέξτε 1, 2 ή 3 σημεία πριν κάνετε κλικ σε αυτό το κουμπί. Ένα σημείο μπορεί να βρίσκεται σε μια κορυφή, μια όψη ή μια άκρη. Εάν βρίσκεται σε μια όψη ή μια άκρη, το σημείο που χρησιμοποιείται θα είναι το σημείο στη θέση του ποντικιού κατά μήκος της όψης ή της άκρης. Εάν επιλεγεί 1 σημείο, θα χρησιμοποιηθεί ως κέντρο περιστροφής. Εάν επιλεγούν 2 σημεία, το μέσο μεταξύ τους θα είναι το κέντρο περιστροφής και θα δημιουργηθεί ένας νέος προσαρμοσμένος άξονας, εάν χρειαστεί. Εάν επιλεγούν 3 σημεία, το πρώτο σημείο γίνεται το κέντρο περιστροφής και βρίσκεται στο διάνυσμα που είναι κάθετο στο επίπεδο που ορίζεται από τα 3 σημεία. Στην προβολή αναφοράς παρέχονται ορισμένες πληροφορίες απόστασης και γωνίας, οι οποίες μπορεί να είναι χρήσιμες κατά την ευθυγράμμιση αντικειμένων. Για τη διευκόλυνσή σας, όταν χρησιμοποιείται Shift + κλικ, η κατάλληλη απόσταση ή γωνία αντιγράφεται στο πρόχειρο. - + Incorrect quantity Εσφαλμένη ποσότητα - + There are input fields with incorrect input, please ensure valid placement values! Υπάρχουν πεδία εισόδου με εσφαλμένη είσοδο, παρακαλώ βεβαιωθείτε πως χρησιμοποιείτε έγκυρες τιμές τοποθέτησης! @@ -5425,13 +5409,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Ακύρωση - - - - + Transform Μετατόπιση @@ -5822,13 +5800,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Επιλέξτε ένα αρχείο - + Select a directory Επιλέξτε ένα ευρετήριο @@ -5836,13 +5814,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Αποθήκευση ως - - + + Open Άνοιγμα @@ -5850,12 +5828,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Επέκταση - + All files (*.*) Όλα τα αρχεία (*.*) @@ -6032,7 +6010,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Λίστα @@ -6149,57 +6127,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Διάσταση - + Ready Έτοιμο - + Close All Κλείσιμο Όλων - - - + + + Toggles this toolbar Εναλλάσσει την λειτουργία εμφάνισης/απόκρυψης αυτής της γραμμής εργαλείων - - - + + + Toggles this dockable window Εναλλάσσει την λειτουργία εμφάνισης/απόκρυψης αυτού του προσδέσιμου παραθύρου - + WARNING: This is a development version. WARNING: This is a development version. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document Μη αποθηκευμένο έγγραφο - + The exported object contains external link. Please save the documentat least once before exporting. The exported object contains external link. Please save the documentat least once before exporting. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? To link to external objects, the document must be saved at least once. @@ -6788,12 +6766,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Επιλέξτε λειτουργική μονάδα - + Open %1 as Ανοίξτε το %1 ως @@ -7329,7 +7307,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Προβολή δενδροδιαγράμματος @@ -7337,7 +7315,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Αναζήτηση @@ -7395,148 +7373,148 @@ Do you want to specify another directory? Ομάδα - + Labels & Attributes Ετικέτες & Χαρακτηριστικά - + Description Περιγραφή - + Internal name Internal name - + Show items hidden in tree view Εμφάνιση κρυφών αντικειμένων στην προβολή δέντρου - + Show items that are marked as 'hidden' in the tree view Εμφάνιση αντικειμένων που έχουν επισημανθεί ως 'κρυμμένα' στην προβολή δέντρου - + Toggle visibility in tree view Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view Toggles the visibility of selected items in the tree view - + Create group Δημιουργήστε μια ομάδα - + Create a group Δημιουργήστε μια ομάδα - - + + Rename Μετονομασία - + Rename object Μετονομασία αντικειμένου - + Finish editing Ολοκλήρωση επεξεργασίας - + Finish editing object Ολοκλήρωση επεξεργασίας του αντικειμένου - + Add dependent objects to selection Add dependent objects to selection - + Adds all dependent objects to the selection Adds all dependent objects to the selection - + Close document Close document - + Close the document Close the document - + Reload document Reload document - + Reload a partially loaded document Reload a partially loaded document - + Skip recomputes Παράλειψη επανεκτέλεσης υπoλογισμών - + Enable or disable recomputations of document Ενεργοποιήστε ή απενεργοποιήστε την επανεκτέλεση υπολογισμών του εγγράφου - + Allow partial recomputes Allow partial recomputes - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Enable or disable recomputating editing object when 'skip recomputation' is enabled - + Mark to recompute Επισημάνετε για επανεκτέλεση υπολογισμών - + Mark this object to be recomputed Επισημάνετε αυτό το αντικείμενο για επανεκτέλεση των υπολογισμών του - + Recompute object Recompute object - + Recompute the selected object Recompute the selected object - + (but must be executed) (but must be executed) - + %1, Internal name: %2 %1, Εσωτερικό όνομα: %2 @@ -7733,14 +7711,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Μη έγκυρη είσοδος - - + + Input in line %1 is not a number Η εισαγωγή στη γραμμή %1 δεν είναι αριθμός @@ -7748,47 +7726,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Προβολή δενδροδιαγράμματος - + Tasks Ανατεθειμένες Εργασίες - + Property view Προβολή ιδιοτήτων - + Selection view Προβολή επιλογής - + Task List Task List - + Model Μοντέλο - + DAG View Προβολή Κατευθυνόμενου Ακυκλικού Γραφήματος - + Report view Προβολή αναφοράς - + Python console Κονσόλα Python @@ -7828,45 +7806,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Άγνωστος τύπος αρχείου - - + + Cannot open unknown filetype: %1 Αδυναμία ανοίγματος του αγνώστου τύπου αρχείου: %1 - + Export failed Αποτυχία της εξαγωγής - + Cannot save to unknown filetype: %1 Αδυναμία αποθήκευσης στον άγνωστο τύπο αρχείου: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Αποτυχία πάγκου εργασίας - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7917,7 +7921,7 @@ Do you want to specify another directory? Πραγματοποιείται εξαγωγή αρχείου PDF... - + Unsaved document Μη αποθηκευμένο έγγραφο @@ -7928,50 +7932,50 @@ Do you want to specify another directory? The exported object contains external link. Please save the documentat least once before exporting. - + Delete failed Delete failed - + Dependency error Dependency error - + Copy selected Copy selected - + Copy active document Copy active document - + Copy all documents Copy all documents - + Paste Paste - + Expression error Expression error - + Failed to parse some of the expressions. Please check the Report View for more details. Failed to parse some of the expressions. Please check the Report View for more details. - + Failed to paste expressions Failed to paste expressions @@ -8211,7 +8215,7 @@ Do you want to continue? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8220,44 +8224,44 @@ Do you want to continue? - + Are you sure you want to continue? Are you sure you want to continue? - + Please check report view for more... Ελέγξτε την προβολή αναφοράς για περισσότερα... - + Physical path: Physical path: - - + + Document: Document: - - + + Path: Διαδρομή: - + Identical physical path Identical physical path - + Could not save document Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8270,102 +8274,102 @@ Would you like to save the file with a different name? Would you like to save the file with a different name? - - - + + + Saving aborted Η αποθήκευση διεκόπη - + Save dependent files Save dependent files - + The file contains external dependencies. Do you want to save the dependent files, too? The file contains external dependencies. Do you want to save the dependent files, too; - - + + Saving document failed Αποτυχία αποθήκευσης εγγράφου - + Save document under new filename... Αποθήκευση εγγράφου με άλλο όνομα αρχείου... - - + + Save %1 Document Αποθήκευση Εγγράφου %1 - + Document Έγγραφο - - + + Failed to save document Failed to save document - + Documents contains cyclic dependencies. Do you still want to save them? Documents contains cyclic dependencies. Do you still want to save them; - + Save a copy of the document under new filename... Αποθηκεύστε ένα αντίγραφο του εγγράφου με νέο όνομα αρχείου... - + %1 document (*.FCStd) έγγραφο %1 (*.FCStd) - + Document not closable Το έγγραφο δεν κλείνει - + The document is not closable for the moment. Το έγγραφο δεν κλείνει προς το παρόν. - + Document not saved Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? Το έγγραφο%1 δεν μπορεί να αποθηκευτεί. Θέλετε να ακυρώσετε το κλείσιμο; - + Undo Undo - + Redo Redo - + There are grouped transactions in the following documents with other preceding transactions There are grouped transactions in the following documents with other preceding transactions - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8438,12 +8442,12 @@ Choose 'Abort' to abort Επιλογές... - + Out of memory Μνήμη πλήρης - + Not enough memory available to display the data. Δεν υπάρχει αρκετή μνήμη διαθέσιμη για την προβολή των δεδομένων. @@ -8459,7 +8463,7 @@ Choose 'Abort' to abort Αδυναμία εύρεσης του αρχείου %1 τόσο στο %2 όσο και στο %3 - + Navigation styles Τύποι μορφοποίησης πλοήγησης @@ -8475,32 +8479,32 @@ Choose 'Abort' to abort Do you want to close this dialog? - + Do you want to save your changes to document '%1' before closing? Θέλετε να αποθηκεύσετε τις αλλαγές σας στο έγγραφο '%1' πριν το κλείσιμο; - + Do you want to save your changes to document before closing? Do you want to save your changes to document before closing? - + If you don't save, your changes will be lost. Αν δεν κάνετε αποθήκευση, οι αλλαγές σας θα χαθούν. - + Apply answer to all Apply answer to all - + %1 Document(s) not saved %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? Ορισμένα έγγραφα δεν ήταν δυνατόν να αποθηκευτούν. Θέλετε να ακυρώσετε τον τερματισμό; @@ -8637,8 +8641,8 @@ underscore, and must not start with a digit. Failed to add property to '%1': %2 - - + + Drag & drop failed Drag & drop failed @@ -8932,12 +8936,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Δεν επιτρέπεται: - + Selection not allowed by filter Η επιλογή δεν επιτρέπεται λόγω χρήσης φίλτρου @@ -9025,13 +9029,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Ευθυγράμμιση... - - + + Align the selected objects Ευθυγράμμιση των επιλεγμένων αντικειμένων @@ -9315,17 +9319,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Εναλλαγή της λειτουργίας &Επεξεργασίας - + Toggles the selected object's edit mode Εναλλάσσει την λειτουργία επεξεργασίας των επιλεγμένων αντικειμένων - + Activates or Deactivates the selected object's edit mode Ενεργοποιεί ή Απενεργοποιεί την κατάσταση λειτουργίας επεξεργασίας του επιλεγμένου αντικείμενου @@ -9357,13 +9361,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Expression actions - - + + Actions that apply to expressions Actions that apply to expressions @@ -9824,7 +9828,7 @@ underscore, and must not start with a digit. Δημιουργήστε ένα νέο κενό έγγραφο - + Unnamed Ανώνυμο @@ -9922,13 +9926,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Τοποθέτηση... - - + + Place the selected objects Τοποθετήστε τα επιλεγμένα αντικείμενα @@ -10066,13 +10070,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh Ανανέωση - - + + Recomputes the current active document Πραγματοποιεί επανεκτέλεση υπολογισμών για το τρέχον ενεργό έγγραφο @@ -10416,13 +10420,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Μετατόπιση... - - + + Transform the geometry of selected objects Μετασχηματισμός της γεωμετρίας των επιλεγμένων αντικειμένων @@ -10430,13 +10434,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Μετατόπιση - - + + Transform the selected object in the 3d view Μετασχηματισμός του επιλεγμένου αντικειμένου στην τρισδιάστατη προβολή @@ -11293,7 +11297,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11304,7 +11308,7 @@ Are you sure you want to continue; - + Object dependencies Εξαρτήσεις αντικειμένου @@ -11416,7 +11420,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12184,8 +12188,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12938,65 +12942,40 @@ from Python console to Report view panel Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity Ένταση - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Κατεύθυνση - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13404,12 +13383,12 @@ the region are non-opaque. StdCmdProperties - + Properties Ιδιότητες - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_es-AR.ts b/src/Gui/Language/FreeCAD_es-AR.ts index 9bb1964100..f6d4e69055 100644 --- a/src/Gui/Language/FreeCAD_es-AR.ts +++ b/src/Gui/Language/FreeCAD_es-AR.ts @@ -91,17 +91,17 @@ Editar - + Import Importar - + Delete Eliminar - + Paste expressions Pegar expresiones @@ -156,8 +156,7 @@ Alinear - - + Placement Ubicación @@ -425,42 +424,42 @@ EditMode - + Default Predeterminado - + The object will be edited using the mode defined internally to be the most appropriate for the object type El objeto será editado utilizando el modo definido internamente que es más apropiado para el tipo de objeto - + Transform Transformar - + The object will have its placement editable with the Std TransformManip command El objeto tendrá su ubicación editable con el comando Std TransformManip - + Cutting Corte - + This edit mode is implemented as available but currently does not seem to be used by any object Este modo de edición está implementado como disponible pero actualmente no parece ser utilizado por ningún objeto - + Color Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command El objeto tendrá el color de sus caras individuales editables con el comando Part FaceAppearances @@ -1997,7 +1996,7 @@ Perhaps a file permission error? % - % + % @@ -3902,7 +3901,7 @@ También puede utilizar el formulario: John Doe <john@doe.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Navegación @@ -3962,99 +3961,99 @@ También puede utilizar el formulario: John Doe <john@doe.com>Girar al más cercano - + Font name of the navigation cube Nombre de la fuente del cubo de navegación - + Default Predeterminado - + Cube size Tamaño del cubo - + Size of the navigation cube Tamaño del cubo de navegación - + Opacity when inactive Opacidad cuando está inactivo - + Opacity of the navigation cube when not focused Opacidad del cubo de navegación cuando no está enfocado - + Color Color - + Base color for all elements Color base para todos los elementos - + Rotation center indicator Indicador centro de rotación - + Sphere size Tamaño de la esfera - + Color and transparency Color y transparencia - + The size of the rotation center indicator El tamaño del indicador del centro de rotación - + The color of the rotation center indicator El color del indicador del centro de rotación - + 3D Navigation Navegación 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Lista la configuración de botones del ratón para cada configuración de navegación elegida. Seleccione un conjunto y, a continuación, presione el botón para ver dichas configuraciones. - + Mouse... Mouse... - + Navigation settings set Configuración de navegación establecida - + Orbit style Estilo de órbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4065,104 +4064,104 @@ Turntable: la pieza se girará alrededor del eje Z (con ejes restringidos). Turntable libre: la pieza se girará alrededor del eje z. - + Turntable Mesa giratoria - + Trackball Trackball - + Free Turntable Turntable libre - + Rotation mode Modo de rotación - + Rotations in 3D will use current cursor position as center for rotation Las rotaciones en 3D usarán la posición actual del cursor como centro de rotación - + Window center Centro de la ventana - + Drag at cursor Arrastre el cursor - + Object center Centro del objeto - + Default camera orientation Orientación de cámara por defecto - + Default camera orientation when creating a new document or selecting the home view Orientación por defecto de la cámara al crear un nuevo documento o seleccionar la vista de inicio - + Camera zoom Zoom de cámara - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Establece el zoom de la cámara para nuevos documentos. El valor es el diámetro de la esfera que cabe en la pantalla. - + mm mm - + Animations Animaciones - + Enable spinning animations that are used in some navigation styles after dragging Habilita las animaciones giratorias que se utilizan en algunos estilos de navegación después de arrastrar - + Enable spinning animations Activar animaciones giratorias - + Duration of navigation animations that have a fixed duration Duración de animaciones de navegación que demoran un lapso fijo - + Animation duration Duración de la animación - + The duration of navigation animations in milliseconds Duración de las animaciones de navegación en milisegundos - + Zoom step Paso de zoom @@ -4172,41 +4171,41 @@ El valor es el diámetro de la esfera que cabe en la pantalla. Nombre de fuente - + Zoom operations will be performed at position of mouse pointer Las operaciones de zoom se realizarán en la posición del puntero del ratón - + Zoom at cursor Zoom en el cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Cuánto zoom se aplicará. Paso de zoom de ´1´ significa un factor de 7.5 para cada paso de zoom. - + Direction of zoom operations will be inverted La dirección de las operaciones de zoom se invertirá - + Invert zoom Invertir zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. Impide que la vista se incline cuando se hace zoom. Afecta solo el estilo de navegación por gestos. La inclinación del ratón no está desactivada por esta configuración. - + Disable touchscreen tilt gesture Desactivar gesto de inclinación de la pantalla táctil @@ -4676,7 +4675,7 @@ El sistema de preferencias es el establecido en las preferencias generales. Gui::Dialog::DockablePlacement - + Placement Ubicación @@ -5262,32 +5261,17 @@ La columna 'Estado' muestra si el documento puede ser recuperado. Reiniciar - - OK - Aceptar - - - - Close - Cerrar - - - - Apply - Aplicar - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Por favor, seleccione 1, 2 o 3 puntos antes de hacer clic en este botón. Un punto puede estar en un vértice, cara o arista. Si en una cara o arista, el punto utilizado será el punto en la posición del mouse a lo largo de la cara o la arista. Si se selecciona 1 punto, se utilizará como centro de rotación. Si se seleccionan 2 puntos, el punto medio entre ellos será el centro de rotación y, si es necesario, se creará un nuevo eje personalizado. Si se seleccionan 3 puntos, el primer punto se convierte en el centro de rotación y se encuentra en el vector que es normal al plano definido por los 3 puntos. Se proporciona cierta información de distancia y ángulo en la vista de reporte, que puede ser útil al alinear objetos. Para su comodidad, cuando se usa la tecla Mayús + clic, la distancia o el ángulo apropiados se copian en el portapapeles. - + Incorrect quantity Cantidad incorrecta - + There are input fields with incorrect input, please ensure valid placement values! Algunos campos contienen datos incorrectos, ¡asegúrese de introducirlos en el lugar apropiado! @@ -5426,13 +5410,7 @@ La columna 'Estado' muestra si el documento puede ser recuperado. Gui::Dialog::Transform - - Cancel - Cancelar - - - - + Transform Transformar @@ -5822,13 +5800,13 @@ Desea guardar los cambios? Gui::FileChooser - - + + Select a file Seleccionar un archivo - + Select a directory Seleccione una carpeta @@ -5836,13 +5814,13 @@ Desea guardar los cambios? Gui::FileDialog - + Save as Guardar como - - + + Open Abrir @@ -5850,12 +5828,12 @@ Desea guardar los cambios? Gui::FileOptionsDialog - + Extended Extendido - + All files (*.*) Todos los archivos (*.*) @@ -6032,7 +6010,7 @@ Desea guardar los cambios? Gui::LabelEditor - + List Lista @@ -6149,57 +6127,57 @@ Desea guardar los cambios? Gui::MainWindow - + Dimension Cota - + Ready Listo - + Close All Cerrar todo - - - + + + Toggles this toolbar Alterna esta barra de herramientas - - - + + + Toggles this dockable window Alterna esta ventana acoplable - + WARNING: This is a development version. ADVERTENCIA: Esta es una versión de desarrollo. - + Please do not use it in a production environment. Por favor, no utilizar en un entorno de producción. - - + + Unsaved document Documento sin guardar - + The exported object contains external link. Please save the documentat least once before exporting. El objeto exportado contiene un vínculo externo. Por favor, guarde el documento al menos una vez antes de exportar. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Para vincular a objetos externos, el documento debe guardarse al menos una vez. @@ -6786,12 +6764,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Seleccionar módulo - + Open %1 as Abrir %1 como @@ -7327,7 +7305,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Vista de árbol @@ -7335,7 +7313,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Búsqueda @@ -7393,148 +7371,148 @@ Do you want to specify another directory? Grupo - + Labels & Attributes Etiquetas & Atributos - + Description Descripción - + Internal name Nombre interno - + Show items hidden in tree view Mostrar elementos ocultos en la vista de árbol - + Show items that are marked as 'hidden' in the tree view Mostrar elementos marcados como 'ocultos' en la vista de árbol - + Toggle visibility in tree view Cambiar visibilidad en la vista de árbol - + Toggles the visibility of selected items in the tree view Cambia la visibilidad de los elementos seleccionados en la vista de árbol - + Create group Crear grupo - + Create a group Crear un grupo - - + + Rename Renombrar - + Rename object Renombrar objeto - + Finish editing Finalizar edición - + Finish editing object Finalizar edición de objeto - + Add dependent objects to selection Añadir objetos dependientes a la selección - + Adds all dependent objects to the selection Agrega todos los objetos dependientes a la selección - + Close document Cerrar documento - + Close the document Cerrar el documento - + Reload document Recargar documento - + Reload a partially loaded document Recargar un documento parcialmente cargado - + Skip recomputes Saltar recálculo - + Enable or disable recomputations of document Activar o desactivar el recálculo del documento - + Allow partial recomputes Permitir recalculado parcial - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Activar o desactivar el recálculo del objeto de edición cuando 'saltar recálculo' está habilitado - + Mark to recompute Marcar para recalcular - + Mark this object to be recomputed Marca este objeto para ser recalculado - + Recompute object Recalcular objeto - + Recompute the selected object Recalcular el objeto seleccionado - + (but must be executed) (pero debe ser ejecutado) - + %1, Internal name: %2 %1, Nombre interno: %2 @@ -7731,14 +7709,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Entrada incorrecta - - + + Input in line %1 is not a number La linea de entrada %1 no es un número @@ -7746,47 +7724,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Vista de árbol - + Tasks Tareas - + Property view Vista de Propiedades - + Selection view Vista de selección - + Task List Lista de tareas - + Model Modelo - + DAG View Vista DAG - + Report view Vista de informe - + Python console Consola de Python @@ -7826,45 +7804,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Tipo de archivo desconocido - - + + Cannot open unknown filetype: %1 No es posible abrir el tipo de archivo desconocido: %1 - + Export failed Exportación fallida - + Cannot save to unknown filetype: %1 No es posible guardar el tipo de archivo desconocido: %1 - + + Recomputation required + Recálculo requerido + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Algunos documento(s) requieren ser recalculados con fines de migración. Es altamente recomendable realizar una recalculación antes de cualquier modificación para evitar problemas de compatibilidad. + +¿Desea recalcularlo(s) ahora? + + + + Recompute error + Error al recalcular + + + + Failed to recompute some document(s). +Please check report view for more details. + Error al recalcular algunos documento(s). +Por favor, vea la vista del informe para más detalles. + + + Workbench failure Fallo del banco de trabajo - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Este sistema está ejecutando OpenGL %1.%2. FreeCAD requiere OpenGL 2.0 o superior. Por favor actualice su controlador gráfico y/o tarjeta de ser necesario. - + Invalid OpenGL Version Versión OpenGL inválida @@ -7915,7 +7919,7 @@ Do you want to specify another directory? Exportando a PDF... - + Unsaved document Documento sin guardar @@ -7926,50 +7930,50 @@ Do you want to specify another directory? El objeto exportado contiene un vínculo externo. Por favor, guarde el documento al menos una vez antes de exportar. - + Delete failed Error al eliminar - + Dependency error Error de dependencia - + Copy selected Copiar seleccionado - + Copy active document Copiar documento activo - + Copy all documents Copiar todos los documentos - + Paste Pegar - + Expression error Error de Expresión - + Failed to parse some of the expressions. Please check the Report View for more details. Error al analizar alguna(s) de las expresiones. Por favor, compruebe la Vista de Informe para más detalles. - + Failed to paste expressions Error al pegar expresiones @@ -8208,7 +8212,7 @@ Desea continuar? Demasiadas notificaciones no intrusivas abiertas. ¡Las notificaciones serán omitidas! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8217,44 +8221,44 @@ Desea continuar? - + Are you sure you want to continue? ¿Estás seguro/a de que quieres continuar? - + Please check report view for more... Por favor, compruebe la vista del informe para más... - + Physical path: Ruta física: - - + + Document: Documento: - - + + Path: Trayectoria: - + Identical physical path Ruta física idéntica - + Could not save document No se pudo guardar el documento - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8267,102 +8271,102 @@ Would you like to save the file with a different name? ¿Desea guardar el archivo con un nombre diferente? - - - + + + Saving aborted Guardando anulado - + Save dependent files Guardar archivos dependientes - + The file contains external dependencies. Do you want to save the dependent files, too? El archivo contiene dependencias externas. ¿Desea guardar los archivos dependientes también? - - + + Saving document failed No se pudo guardar el documento - + Save document under new filename... Guardar documento con un nombre de archivo nuevo... - - + + Save %1 Document Guardar el documento %1 - + Document Documento - - + + Failed to save document Error al guardar el documento - + Documents contains cyclic dependencies. Do you still want to save them? Los documentos contienen dependencias cíclicas. ¿Desea guardarlos? - + Save a copy of the document under new filename... Guardar una copia del documento con un nuevo nombre de archivo... - + %1 document (*.FCStd) %1 documento (*.FCStd) - + Document not closable El documento no se puede cerrar - + The document is not closable for the moment. El documento no se puede cerrar por el momento. - + Document not saved Documento no guardado - + The document%1 could not be saved. Do you want to cancel closing it? El documento%1 no se pudo guardar. ¿Desea cancelar cerrando? - + Undo Deshacer - + Redo Rehacer - + There are grouped transactions in the following documents with other preceding transactions Hay transacciones de grupo en los siguientes documentos con otras transacciones anteriores - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8435,12 +8439,12 @@ Elija 'Anular' para anular Opciones... - + Out of memory Memoria insuficiente - + Not enough memory available to display the data. Insuficiente memoria disponible para mostrar los datos. @@ -8456,7 +8460,7 @@ Elija 'Anular' para anular No se pueden encontrar los archivos %1 ni %2 ni %3 - + Navigation styles Estilos de navegación @@ -8472,32 +8476,32 @@ Elija 'Anular' para anular ¿Desea cerrar este diálogo? - + Do you want to save your changes to document '%1' before closing? ¿Desea guardar el documento '%1' antes de cerrar? - + Do you want to save your changes to document before closing? ¿Desea guardar los cambios en el documento antes de cerrar? - + If you don't save, your changes will be lost. Si no guarda, los cambios se perderán. - + Apply answer to all Aplicar respuesta a todos - + %1 Document(s) not saved %1 Documento(s) no guardados - + Some documents could not be saved. Do you want to cancel closing? Algunos documentos no se han podido guardar. ¿Desea cancelar el cierre? @@ -8633,8 +8637,8 @@ underscore, and must not start with a digit. Error al añadir la propiedad a '%1': %2 - - + + Drag & drop failed Error al arrastrar y soltar @@ -8931,12 +8935,12 @@ guión bajo, y no debe comenzar con un dígito. SelectionFilter - + Not allowed: No permitido: - + Selection not allowed by filter Selección no permitida por filtro @@ -9024,13 +9028,13 @@ guión bajo, y no debe comenzar con un dígito. StdCmdAlignment - + Alignment... Alineación... - - + + Align the selected objects Alinea los objetos seleccionados @@ -9314,17 +9318,17 @@ guión bajo, y no debe comenzar con un dígito. StdCmdEdit - + Toggle &Edit mode Alternar &modo de edición - + Toggles the selected object's edit mode Activa o desactiva el modo de edición del objeto seleccionado - + Activates or Deactivates the selected object's edit mode Activa o desactiva el modo de edición del objeto seleccionado @@ -9356,13 +9360,13 @@ guión bajo, y no debe comenzar con un dígito. StdCmdExpression - + Expression actions Acciones de expresión - - + + Actions that apply to expressions Acciones que se aplican a las expresiones @@ -9823,7 +9827,7 @@ guión bajo, y no debe comenzar con un dígito. Crea un documento vacío nuevo - + Unnamed Sin nombre @@ -9922,13 +9926,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdPlacement - + Placement... Ubicación... - - + + Place the selected objects Ubica los elementos seleccionados @@ -10066,13 +10070,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdRefresh - + &Refresh &Actualizar - - + + Recomputes the current active document Recalcula el documento activo actual @@ -10416,13 +10420,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdTransform - + Transform... Transformar... - - + + Transform the geometry of selected objects Transformar la geometría de los objetos seleccionados @@ -10430,13 +10434,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdTransformManip - + Transform Transformar - - + + Transform the selected object in the 3d view Transforma el objeto seleccionado en la vista 3d @@ -11292,7 +11296,7 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11303,7 +11307,7 @@ Are you sure you want to continue? - + Object dependencies Dependencias del objeto @@ -11415,7 +11419,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12182,8 +12186,8 @@ Actualmente, su sistema tiene los siguientes bancos de trabajo:</p></bo Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Se ha producido un error - vea la Vista de Informe para más información @@ -12938,65 +12942,40 @@ from Python console to Report view panel Fuentes de luz - + + Push In + Acercar + + + + Pull Out + Alejar + + + Light sources Fuentes de luz - + Light source Fuente de luz - + Intensity Intensidad - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajustar la orientación de la fuente de luz direccional arrastrando el asa con el ratón o utilice las cajas giratorias para un ajuste fino. - + Direction Sentido - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13404,12 +13383,12 @@ de la región no son opacos. StdCmdProperties - + Properties Propiedades - + Show the property view, which displays the properties of the selected object. Mostrar la vista de propiedad, que muestra las propiedades del objeto seleccionado. @@ -13669,7 +13648,7 @@ de la región no son opacos. Hide tab bar in dock overlay - Ocultar barra de pestañas en superposición de ventanas acoplables + Ocultar barra de pestañas en capa de acoplamiento diff --git a/src/Gui/Language/FreeCAD_es-ES.ts b/src/Gui/Language/FreeCAD_es-ES.ts index 03d3bc9ea4..dccd6617b5 100644 --- a/src/Gui/Language/FreeCAD_es-ES.ts +++ b/src/Gui/Language/FreeCAD_es-ES.ts @@ -91,17 +91,17 @@ Editar - + Import Importar - + Delete Borrar - + Paste expressions Pegar expresiones @@ -156,8 +156,7 @@ Alinear - - + Placement Ubicación @@ -425,42 +424,42 @@ EditMode - + Default Por defecto - + The object will be edited using the mode defined internally to be the most appropriate for the object type El objeto será editado utilizando el modo definido internamente que es más apropiado para el tipo de objeto - + Transform Transformar - + The object will have its placement editable with the Std TransformManip command El objeto tendrá su ubicación editable con el comando Std TransformManip - + Cutting Corte - + This edit mode is implemented as available but currently does not seem to be used by any object Este modo de edición está implementado como disponible pero actualmente no parece ser utilizado por ningún objeto - + Color Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command El objeto tendrá el color de sus caras individuales editables con el comando Part FaceAppearances @@ -1997,7 +1996,7 @@ Perhaps a file permission error? % - % + % @@ -3905,7 +3904,7 @@ También puede utilizar el formulario: John Doe <john@doe.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Navegación @@ -3965,99 +3964,99 @@ También puede utilizar el formulario: John Doe <john@doe.com>Girar al más cercano - + Font name of the navigation cube Nombre de la fuente del cubo de navegación - + Default Por defecto - + Cube size Tamaño del cubo - + Size of the navigation cube Tamaño del cubo de navegación - + Opacity when inactive Opacidad cuando está inactivo - + Opacity of the navigation cube when not focused Opacidad del cubo de navegación cuando no está enfocado - + Color Color - + Base color for all elements Color base para todos los elementos - + Rotation center indicator Indicador centro de rotación - + Sphere size Tamaño de la esfera - + Color and transparency Color y transparencia - + The size of the rotation center indicator El tamaño del indicador del centro de rotación - + The color of the rotation center indicator El color del indicador del centro de rotación - + 3D Navigation Navegación 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Lista la configuración de botones del ratón para cada configuración de navegación elegida. Seleccione un conjunto y, a continuación, presione el botón para ver dichas configuraciones. - + Mouse... Ratón... - + Navigation settings set Configuración de navegación - + Orbit style Estilo órbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4068,104 +4067,104 @@ Turntable: la pieza se girará alrededor del eje Z (con ejes restringidos). Turntable libre: la pieza se girará alrededor del eje z. - + Turntable Mesa giratoria - + Trackball Trackball - + Free Turntable Turntable libre - + Rotation mode Modo de rotación - + Rotations in 3D will use current cursor position as center for rotation Las rotaciones en 3D usarán la posición actual del cursor como centro de rotación - + Window center Centro de la ventana - + Drag at cursor Arrastra el cursor - + Object center Centro del objeto - + Default camera orientation Orientación de cámara por defecto - + Default camera orientation when creating a new document or selecting the home view Orientación de cámara por defecto al crear un nuevo documento o seleccionar la vista de inicio - + Camera zoom Zoom de cámara - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Establece el zoom de la cámara para nuevos documentos. El valor es el diámetro de la esfera que cabe en la pantalla. - + mm mm - + Animations Animaciones - + Enable spinning animations that are used in some navigation styles after dragging Habilitar animaciones giratorias que se utilizan en algunos estilos de navegación después de arrastrar - + Enable spinning animations Activar animaciones giratorias - + Duration of navigation animations that have a fixed duration Duración de animaciones de navegación que demoran un lapso fijo - + Animation duration Duración de animación - + The duration of navigation animations in milliseconds La duración de las animaciones de navegación en milisegundos - + Zoom step Paso de zoom @@ -4175,41 +4174,41 @@ El valor es el diámetro de la esfera que cabe en la pantalla. Nombre de la fuente - + Zoom operations will be performed at position of mouse pointer Las operaciones de zoom se realizarán en la posición del puntero del ratón - + Zoom at cursor Zoom en cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Cuánto se ampliará. El paso de zoom de '1' significa un factor de 7.5 para cada paso de acercamiento. - + Direction of zoom operations will be inverted La dirección de las operaciones de zoom se invertirá - + Invert zoom Invertir zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. Impide que la vista se incline cuando se hace zoom. Afecta solo el estilo de navegación por gestos. La inclinación del ratón no está desactivada por esta configuración. - + Disable touchscreen tilt gesture Desactivar el gesto de inclinación de la pantalla táctil @@ -4679,7 +4678,7 @@ El sistema de preferencias es el establecido en las preferencias generales. Gui::Dialog::DockablePlacement - + Placement Ubicación @@ -5265,32 +5264,17 @@ La columna 'Estado' muestra si el documento puede ser recuperado. Reiniciar - - OK - Aceptar - - - - Close - Cerrar - - - - Apply - Aplicar - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Por favor, seleccione 1, 2 o 3 puntos antes de hacer clic en este botón. Un punto puede estar en un vértice, cara o arista. Si en una cara o arista, el punto utilizado será el punto en la posición del mouse a lo largo de la cara o la arista. Si se selecciona 1 punto, se utilizará como centro de rotación. Si se seleccionan 2 puntos, el punto medio entre ellos será el centro de rotación y, si es necesario, se creará un nuevo eje personalizado. Si se seleccionan 3 puntos, el primer punto se convierte en el centro de rotación y se encuentra en el vector que es normal al plano definido por los 3 puntos. Se proporciona cierta información de distancia y ángulo en la vista de reporte, que puede ser útil al alinear objetos. Para su comodidad, cuando se usa la tecla Mayús + clic, la distancia o el ángulo apropiados se copian en el portapapeles. - + Incorrect quantity Cantidad incorrecta - + There are input fields with incorrect input, please ensure valid placement values! Algunos campos contienen datos incorrectos, ¡asegúrese de introducirlos en el lugar apropiado! @@ -5429,13 +5413,7 @@ La columna 'Estado' muestra si el documento puede ser recuperado. Gui::Dialog::Transform - - Cancel - Cancelar - - - - + Transform Transformar @@ -5825,13 +5803,13 @@ Desea guardar los cambios? Gui::FileChooser - - + + Select a file Seleccionar un archivo - + Select a directory Seleccionar un directorio @@ -5839,13 +5817,13 @@ Desea guardar los cambios? Gui::FileDialog - + Save as Guardar como - - + + Open Abrir @@ -5853,12 +5831,12 @@ Desea guardar los cambios? Gui::FileOptionsDialog - + Extended Extendida - + All files (*.*) Todos los archivos (*.*) @@ -6035,7 +6013,7 @@ Desea guardar los cambios? Gui::LabelEditor - + List Lista @@ -6152,57 +6130,57 @@ Desea guardar los cambios? Gui::MainWindow - + Dimension Cota - + Ready Preparado - + Close All Cerrar todo - - - + + + Toggles this toolbar Muestra u oculta la barra de herramientas - - - + + + Toggles this dockable window Alterna esta ventana acoplable - + WARNING: This is a development version. ATENCIÓN: Esta es una versión en desarrollo. - + Please do not use it in a production environment. No se utilice en entornos de producción. - - + + Unsaved document Documento sin guardar - + The exported object contains external link. Please save the documentat least once before exporting. El objeto exportado contiene un vínculo externo. Por favor, guarde el documento al menos una vez antes de exportar. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Para vincular a objetos externos, el documento debe guardarse al menos una vez. @@ -6789,12 +6767,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Seleccionar módulo - + Open %1 as Abrir %1 como @@ -7330,7 +7308,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Vista en árbol @@ -7338,7 +7316,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Buscar @@ -7396,148 +7374,148 @@ Do you want to specify another directory? Grupo - + Labels & Attributes Etiquetas y atributos - + Description Descripción - + Internal name Nombre interno - + Show items hidden in tree view Mostrar elementos ocultos en la vista de árbol - + Show items that are marked as 'hidden' in the tree view Mostrar elementos marcados como 'ocultos' en la vista de árbol - + Toggle visibility in tree view Cambiar visibilidad en la vista de árbol - + Toggles the visibility of selected items in the tree view Cambia la visibilidad de los elementos seleccionados en la vista de árbol - + Create group Crear grupo - + Create a group Crear un grupo - - + + Rename Renombrar - + Rename object Renombrar objeto - + Finish editing Finalizar la edición - + Finish editing object Finalizar edición del objeto - + Add dependent objects to selection Añadir objetos dependientes a la selección - + Adds all dependent objects to the selection Agrega todos los objetos dependientes a la selección - + Close document Cerrar documento - + Close the document Cerrar el documento - + Reload document Recargar documento - + Reload a partially loaded document Recargar un documento parcialmente cargado - + Skip recomputes Omitir recálculos - + Enable or disable recomputations of document Activar o desactivar el recalculado del documento - + Allow partial recomputes Permitir recalculado parcial - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Activar o desactivar el recalculado del objeto de edición cuando 'saltar recalculado' está activado - + Mark to recompute Marcar para recalcular - + Mark this object to be recomputed Marca este objeto para ser recalculado - + Recompute object Recalcular objeto - + Recompute the selected object Recalcular el objeto seleccionado - + (but must be executed) (pero debe ser ejecutado) - + %1, Internal name: %2 %1, Nombre interno: %2 @@ -7734,14 +7712,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Entrada incorrecta - - + + Input in line %1 is not a number La linea de entrada %1 no es un número @@ -7749,47 +7727,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Vista en árbol - + Tasks Tareas - + Property view Vista de las propiedades - + Selection view Vista de selección - + Task List Lista de tareas - + Model Modelo - + DAG View Vista DAG - + Report view Vista de informe - + Python console Consola de Python @@ -7829,45 +7807,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Tipo de archivo desconocido - - + + Cannot open unknown filetype: %1 No es posible abrir el tipo de archivo desconocido: %1 - + Export failed Exportación fallida - + Cannot save to unknown filetype: %1 No es posible guardar el tipo de archivo desconocido: %1 - + + Recomputation required + Recálculo requerido + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Algunos documento(s) requieren ser recalculados con fines de migración. Es altamente recomendable realizar una recalculación antes de cualquier modificación para evitar problemas de compatibilidad. + +¿Desea recalcularlo(s) ahora? + + + + Recompute error + Error al recalcular + + + + Failed to recompute some document(s). +Please check report view for more details. + Error al recalcular algunos documento(s). +Por favor, vea la vista del informe para más detalles. + + + Workbench failure Fallo del banco de trabajo - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Este sistema está ejecutando OpenGL %1.%2. FreeCAD requiere OpenGL 2.0 o superior. Por favor actualice su controlador gráfico y/o tarjeta de ser necesario. - + Invalid OpenGL Version Versión OpenGL inválida @@ -7918,7 +7922,7 @@ Do you want to specify another directory? Exportando a PDF... - + Unsaved document Documento sin guardar @@ -7929,50 +7933,50 @@ Do you want to specify another directory? El objeto exportado contiene un vínculo externo. Por favor, guarde el documento al menos una vez antes de exportar. - + Delete failed Error al eliminar - + Dependency error Error de dependencia - + Copy selected Copiar seleccionado - + Copy active document Copiar documento activo - + Copy all documents Copiar todos los documentos - + Paste Pegar - + Expression error Error de Expresión - + Failed to parse some of the expressions. Please check the Report View for more details. Error al analizar alguna(s) de las expresiones. Por favor, compruebe la Vista de Informe para más detalles. - + Failed to paste expressions Error al pegar expresiones @@ -8211,7 +8215,7 @@ Desea continuar? Demasiadas notificaciones no intrusivas abiertas. ¡Se están omitiendo las notificaciones! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8220,44 +8224,44 @@ Desea continuar? - + Are you sure you want to continue? ¿Está seguro de que desea continuar? - + Please check report view for more... Por favor, compruebe la vista del informe para más... - + Physical path: Ruta física: - - + + Document: Documento: - - + + Path: Ruta: - + Identical physical path Ruta física idéntica - + Could not save document No se pudo guardar el documento - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8270,102 +8274,102 @@ Would you like to save the file with a different name? ¿Desea guardar el archivo con un nombre diferente? - - - + + + Saving aborted Guardar abortado - + Save dependent files Guardar archivos dependientes - + The file contains external dependencies. Do you want to save the dependent files, too? El archivo contiene dependencias externas. ¿Desea guardar los archivos dependientes también? - - + + Saving document failed No se pudo guardar el documento - + Save document under new filename... Guardar documento con un nombre de archivo nuevo... - - + + Save %1 Document Guardar el documento %1 - + Document Documento - - + + Failed to save document Error al guardar el documento - + Documents contains cyclic dependencies. Do you still want to save them? Los documentos contienen dependencias cíclicas. ¿Desea guardarlos? - + Save a copy of the document under new filename... Guardar una copia del documento con un nuevo nombre de archivo... - + %1 document (*.FCStd) %1 documento (*.FCStd) - + Document not closable El documento no se puede cerrar - + The document is not closable for the moment. El documento no se puede cerrar por el momento. - + Document not saved Documento no guardado - + The document%1 could not be saved. Do you want to cancel closing it? El documento%1 no se pudo guardar. ¿Desea cancelar cerrando? - + Undo Deshacer - + Redo Rehacer - + There are grouped transactions in the following documents with other preceding transactions Hay transacciones de grupo en los siguientes documentos con otras transacciones anteriores - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8438,12 +8442,12 @@ Seleccione 'Abortar' para abortar Opciones... - + Out of memory Memoria insuficiente - + Not enough memory available to display the data. Insuficiente memoria disponible para mostrar los datos. @@ -8459,7 +8463,7 @@ Seleccione 'Abortar' para abortar No se pueden encontrar los archivos %1 ni %2 ni %3 - + Navigation styles Estilos de navegación @@ -8475,32 +8479,32 @@ Seleccione 'Abortar' para abortar ¿Desea cerrar este diálogo? - + Do you want to save your changes to document '%1' before closing? ¿Desea guardar el documento '%1' antes de cerrar? - + Do you want to save your changes to document before closing? ¿Desea guardar los cambios en el documento antes de cerrar? - + If you don't save, your changes will be lost. De no guardar, se perderán los cambios. - + Apply answer to all Aplicar respuesta a todos - + %1 Document(s) not saved %1 Documento(s) no guardados - + Some documents could not be saved. Do you want to cancel closing? Algunos documentos no se han podido guardar. ¿Desea cancelar el cierre? @@ -8636,8 +8640,8 @@ underscore, and must not start with a digit. Error al añadir la propiedad a '%1': %2 - - + + Drag & drop failed Error al arrastrar y soltar @@ -8934,12 +8938,12 @@ guión bajo, y no debe comenzar con un dígito. SelectionFilter - + Not allowed: No permitido: - + Selection not allowed by filter Selección no permitida por filtro @@ -9027,13 +9031,13 @@ guión bajo, y no debe comenzar con un dígito. StdCmdAlignment - + Alignment... Alineación... - - + + Align the selected objects Alinea los objetos seleccionados @@ -9317,17 +9321,17 @@ guión bajo, y no debe comenzar con un dígito. StdCmdEdit - + Toggle &Edit mode Activar &Modo de edición - + Toggles the selected object's edit mode Activa o desactiva el modo de edición del objeto seleccionado - + Activates or Deactivates the selected object's edit mode Activa o desactiva el modo de edición del objeto seleccionado @@ -9359,13 +9363,13 @@ guión bajo, y no debe comenzar con un dígito. StdCmdExpression - + Expression actions Acciones de expresión - - + + Actions that apply to expressions Acciones que se aplican a las expresiones @@ -9826,7 +9830,7 @@ guión bajo, y no debe comenzar con un dígito. Crea un documento vacío nuevo - + Unnamed Sin nombre @@ -9925,13 +9929,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdPlacement - + Placement... Ubicación... - - + + Place the selected objects Sitúe los objetos seleccionados @@ -10069,13 +10073,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdRefresh - + &Refresh &Actualizar pantalla - - + + Recomputes the current active document Recalcula el documento activo actual @@ -10419,13 +10423,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdTransform - + Transform... Transformar... - - + + Transform the geometry of selected objects Transformar la geometría de los objetos seleccionados @@ -10433,13 +10437,13 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri StdCmdTransformManip - + Transform Transformar - - + + Transform the selected object in the 3d view Transforma el objeto seleccionado en la vista 3d @@ -11295,7 +11299,7 @@ Está pensado para organizar objetos que tienen una parte de TopoShape, como pri Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11306,7 +11310,7 @@ Are you sure you want to continue? - + Object dependencies Dependencias del objeto @@ -11418,7 +11422,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12186,8 +12190,8 @@ Actualmente, su sistema tiene los siguientes bancos de trabajo:</p></bo Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Se ha producido un error - vea la Vista de Informe para más información @@ -12941,65 +12945,40 @@ from Python console to Report view panel Fuentes de luz - + + Push In + Acercar + + + + Pull Out + Alejar + + + Light sources Fuentes de luz - + Light source Fuente de luz - + Intensity Intensidad - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajustar la orientación de la fuente de luz direccional arrastrando el asa con el ratón o utilice las cajas giratorias para un ajuste fino. - + Direction Dirección - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13407,12 +13386,12 @@ de la región no son opacos. StdCmdProperties - + Properties Propiedades - + Show the property view, which displays the properties of the selected object. Mostrar la vista de propiedades, que muestra las propiedades del objeto seleccionado. @@ -13672,7 +13651,7 @@ de la región no son opacos. Hide tab bar in dock overlay - Ocultar barra de pestañas en superposición de ventanas acoplables + Ocultar barra de pestañas en capa de acoplamiento diff --git a/src/Gui/Language/FreeCAD_eu.ts b/src/Gui/Language/FreeCAD_eu.ts index c6adb7262c..8d3850bb18 100644 --- a/src/Gui/Language/FreeCAD_eu.ts +++ b/src/Gui/Language/FreeCAD_eu.ts @@ -91,17 +91,17 @@ Editatu - + Import Inportatu - + Delete Ezabatu - + Paste expressions Itsatsi adierazpenak @@ -156,8 +156,7 @@ Lerrokatu - - + Placement Kokapena @@ -425,42 +424,42 @@ EditMode - + Default Lehenetsia - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objektua barnean definitutako modua erabiliz editatuko da, objektu mota egokiena izan dadin - + Transform Transformatu - + The object will have its placement editable with the Std TransformManip command Objektuaren kokapena editatu ahal izango da Std TransformManip komandoaren bidez - + Cutting Moztea - + This edit mode is implemented as available but currently does not seem to be used by any object Edizio modua erabilgarri gisa inplementatu da, baina badirudi momentuan ez dagoela objekturik hura erabiltzen - + Color Kolorea - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3907,7 +3906,7 @@ Honako forma ere erabili dezakezu: Jon Inor <jon@inor.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Nabigazioa @@ -3967,99 +3966,99 @@ Honako forma ere erabili dezakezu: Jon Inor <jon@inor.com> Biratu hurbilenera - + Font name of the navigation cube Nabigazio-kuboaren letra-tipoaren izena - + Default Lehenetsia - + Cube size Kubo-tamaina - + Size of the navigation cube Nabigazio-kuboaren tamaina - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Kolorea - + Base color for all elements Elementu guztietarako oinarri-kolorea - + Rotation center indicator Biraketa-zentroaren adierazlea - + Sphere size Esfera-tamaina - + Color and transparency Kolorea eta gardentasuna - + The size of the rotation center indicator Biraketa-zentroaren adierazlearen tamaina - + The color of the rotation center indicator Biraketa-zentroaren adierazlearen kolorea - + 3D Navigation 3D nabigazioa - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Zerrendatu saguaren botoien konfigurazioak hautatutako nabigazio-ezarpen bakoitzerako. Hautatu multzo bat eta sakatu botoia konfigurazioak ikusteko. - + Mouse... Sagua... - + Navigation settings set Nabigazio-ezarpenen multzoa - + Orbit style Orbita-estiloa - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4071,104 +4070,104 @@ Tornu askea: Pieza Z ardatzaren inguruan biratuko da. - + Turntable Tornua - + Trackball Trackball - + Free Turntable Tornu librea - + Rotation mode Biraketa modua - + Rotations in 3D will use current cursor position as center for rotation 3D moduko biraketek kurtsorearen uneko posizioa erabiliko dute biraketarako erdigune gisa - + Window center Leihoaren zentroa - + Drag at cursor Arrastatu kurtsorera - + Object center Objektuaren zentroa - + Default camera orientation Kameraren orientazio lehenetsia - + Default camera orientation when creating a new document or selecting the home view Kameraren orientazio lehenetsia dokumentu bat sortzean edo bista nagusia hautatzean - + Camera zoom Kamera-zooma - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Kameraren zooma ezartzen du dokumentu berrietarako. Balioa da pantailari doituko zaion esferaren diametroa. - + mm mm - + Animations Animazioak - + Enable spinning animations that are used in some navigation styles after dragging Gaitu zenbait nabigazio-estilotan arrastatu ondoren erabiltzen diren biratze-animazioak - + Enable spinning animations Gaitu biratze-animazioak - + Duration of navigation animations that have a fixed duration Iraupen finkoa duten nabigazio-animazioen iraupena - + Animation duration Animazio-iraupena - + The duration of navigation animations in milliseconds Nabigazio-animazioen iraupena milisegundotan - + Zoom step Zoom-urratsa @@ -4178,34 +4177,34 @@ Balioa da pantailari doituko zaion esferaren diametroa. Letra-tipoaren izena - + Zoom operations will be performed at position of mouse pointer Zoom-eragiketak saguaren erakuslearen posizioan gauzatuko dira - + Zoom at cursor Zooma kurtsorean - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Zenbateko zooma egingo den. '1' mailako zoomak 7,5eko faktorea da zoom-maila bakoitzerako. - + Direction of zoom operations will be inverted Zoom-eragiketen norabidea alderantzikatu egingo da. - + Invert zoom Alderantzikatu zooma - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4214,7 +4213,7 @@ Keinu-nabigazioaren estiloari soilik eragiten dio. Ezarpen honek ez du desgaitzen sagu bidezko inklinazioa. - + Disable touchscreen tilt gesture Desgaitu ukimen-pantailaren inklinazio keinua @@ -4684,7 +4683,7 @@ Hobespen-sistema hobespen orokorretan ezarritakoa da. Gui::Dialog::DockablePlacement - + Placement Kokapena @@ -5270,32 +5269,17 @@ The 'Status' column shows whether the document could be recovered. Berrezarri - - OK - Ados - - - - Close - Itxi - - - - Apply - Aplikatu - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Hautatu 1, 2 edo 3 puntu botoi hau sakatu baino lehen. Puntuak erpin batean, aurpegi batean edo ertz batean egon daitezke. Aurpegi edo ertz batean badago, erabiliko den puntua saguak aurpegian edo ertzean duen posizioaren puntua izango da. Puntu bat hautatzen bada, biraketa-zentro gisa erabiliko da. Bi puntu hautatzen badira, bien arteko erdiko puntua izango da biraketa-zentroa eta ardatz pertsonalizatu berria sortuko da, beharrezkoa bada. Hiru puntu hautatzen badira, lehen puntua biraketa-zentroa izango da eta hiru puntuek definitutako planoarekiko normala den bektorean egongo da. Txosten-bistak distantziari eta angeluari buruzko informazioa ematen du. Informazio hori erabilgarria izan daiteke objektuak lerrokatzean. Shift + klik erabiltzen denean, distantzia edo angelu egokia arbelera kopiatuko da. - + Incorrect quantity Kantitate okerra - + There are input fields with incorrect input, please ensure valid placement values! Datu okerrak dituzten sarrera-eremuak daude, ziurtatu baliozko kokapen-balioak sartu dituzula! @@ -5434,13 +5418,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Utzi - - - - + Transform Transformatu @@ -5832,13 +5810,13 @@ Aldaketak gorde nahi dituzu? Gui::FileChooser - - + + Select a file Hautatu fitxategi bat - + Select a directory Hautatu direktorio bat @@ -5846,13 +5824,13 @@ Aldaketak gorde nahi dituzu? Gui::FileDialog - + Save as Gorde honela - - + + Open Ireki @@ -5860,12 +5838,12 @@ Aldaketak gorde nahi dituzu? Gui::FileOptionsDialog - + Extended Hedatua - + All files (*.*) Fitxategi guztiak (*.*) @@ -6042,7 +6020,7 @@ Aldaketak gorde nahi dituzu? Gui::LabelEditor - + List Zerrenda @@ -6159,57 +6137,57 @@ Aldaketak gorde nahi dituzu? Gui::MainWindow - + Dimension Kota - + Ready Prest - + Close All Itxi dena - - - + + + Toggles this toolbar Tresna-barra hau aktibatzen/desaktibatzen du - - - + + + Toggles this dockable window Aktibatu/desaktibatu leiho atrakagarri hau - + WARNING: This is a development version. ABISUA: Hau garapen-bertsioa da. - + Please do not use it in a production environment. Ez erabili hau ekoizpen-ingurune batean. - - + + Unsaved document Gorde gabeko dokumentua - + The exported object contains external link. Please save the documentat least once before exporting. Esportatutako objektuak kanpoko estekak ditu. Gorde dokumentua gutxienez behin hura esportatu baino lehen. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Kanpoko objektuekin estekatzeko, dokumentua gutxienez behin gorde behar da. @@ -6799,12 +6777,12 @@ Datuak gorde gabe irten nahi duzu? Gui::SelectModule - + Select module Hautatu modulua - + Open %1 as Ireki %1 honela: @@ -7340,7 +7318,7 @@ Beste direktorio bat aukeratu nahi al duzu? Gui::TreeDockWidget - + Tree view Zuhaitz-bista @@ -7348,7 +7326,7 @@ Beste direktorio bat aukeratu nahi al duzu? Gui::TreePanel - + Search Bilatu @@ -7406,148 +7384,148 @@ Beste direktorio bat aukeratu nahi al duzu? Taldea - + Labels & Attributes Etiketak eta atributuak - + Description Deskribapena - + Internal name Internal name - + Show items hidden in tree view Erakutsi zuhaitz-bistan ezkutatutako elementuak - + Show items that are marked as 'hidden' in the tree view Erakutsi zuhaitz-bistan "ezkutuan" markatuta dauden elementuak - + Toggle visibility in tree view Aldatu ikuspena zuhaitz-bistan - + Toggles the visibility of selected items in the tree view Aukeratutako elementuen ikuspena zuhaitz-bistan aldatzen du - + Create group Sortu taldea - + Create a group Sortu talde bat - - + + Rename Aldatu izena - + Rename object Aldatu objektuaren izena - + Finish editing Amaitu edizioa - + Finish editing object Amaitu objektuaren edizioa - + Add dependent objects to selection Gehitu mendeko objektuak hautapenari - + Adds all dependent objects to the selection Mendeko objektu guztiak hautapenari gehitzen dizkio - + Close document Itxi dokumentua - + Close the document Itxi dokumentua - + Reload document Birkargatu dokumentua - + Reload a partially loaded document Birkargatu partzialki kargatutako dokumentu bat - + Skip recomputes Saltatu birkalkuluak - + Enable or disable recomputations of document Gaitu edo desgaitu dokumentuaren birkalkuluak - + Allow partial recomputes Onartu birkalkulu partzialak - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Gaitu edo desgaitu objektuaren edizioa birkalkulatzea 'Saltatu birkalkulua' gaituta dagoenean - + Mark to recompute Markatu birkalkulurako - + Mark this object to be recomputed Markatu objektu hau birkalkulatua izan dadin - + Recompute object Birkalkulatu objektua - + Recompute the selected object Birkalkulatu hautatutako objektua - + (but must be executed) (baina exekutatu behar da) - + %1, Internal name: %2 %1, barne-izena: %2 @@ -7744,14 +7722,14 @@ Beste direktorio bat aukeratu nahi al duzu? PropertyListDialog - - + + Invalid input Baliogabeko sarrera - - + + Input in line %1 is not a number %1 lerroko sarrera ez da zenbaki bat @@ -7759,47 +7737,47 @@ Beste direktorio bat aukeratu nahi al duzu? QDockWidget - + Tree view Zuhaitz-bista - + Tasks Atazak - + Property view Propietateen bista - + Selection view Hautapen-bista - + Task List Zereginen zerrenda - + Model Eredua - + DAG View DAG bista - + Report view Txosten-bista - + Python console Python kontsola @@ -7839,45 +7817,71 @@ Beste direktorio bat aukeratu nahi al duzu? Python - - - + + + Unknown filetype Fitxategi mota ezezaguna - - + + Cannot open unknown filetype: %1 Ezin da ireki fitxategi mota ezezaguna: %1 - + Export failed Esportazioak huts egin du - + Cannot save to unknown filetype: %1 Ezin da gorde fitxategi mota ezezagunera: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Lan-mahaiaren hutsegitea - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Sistema honek OpenGL %1.%2 bertsioa du. FreeCADek OpenGL 2.0 edo berriagoa behar du. Eguneratu zure txartel grafikoa edo bere kontrolagailua. - + Invalid OpenGL Version OpenGL bertsio baliogabea @@ -7928,7 +7932,7 @@ Beste direktorio bat aukeratu nahi al duzu? PDFa esportatzen... - + Unsaved document Gorde gabeko dokumentua @@ -7939,50 +7943,50 @@ Beste direktorio bat aukeratu nahi al duzu? Esportatutako objektuak kanpoko estekak ditu. Gorde dokumentua gutxienez behin hura esportatu baino lehen. - + Delete failed Ezabatzeak huts egin du - + Dependency error Mendekotasun-errorea - + Copy selected Kopiatu hautatua - + Copy active document Kopiatu dokumentu aktiboa - + Copy all documents Kopiatu dokumentu guztiak - + Paste Itsatsi - + Expression error Adierazpen-errorea - + Failed to parse some of the expressions. Please check the Report View for more details. Adierazpenetako batzuk ezin izan dira analizatu. Begiratu txosten-bista xehetasun gehiagorako. - + Failed to paste expressions Adierazpenak itsasteak huts egin du @@ -8221,7 +8225,7 @@ Jarraitu nahi duzu? Jakinarazpen ez intrusibo gehiegi dago irekita. Jakinarazpenei ez ikusiarena egiten ari zaie. - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8230,44 +8234,44 @@ Jarraitu nahi duzu? - + Are you sure you want to continue? Ziur zaude jarraitu nahi duzula? - + Please check report view for more... Begiratu txosten-bista gehiagorako... - + Physical path: Bide-izen fisikoa: - - + + Document: Dokumentua: - - + + Path: Bidea: - + Identical physical path Bide-izen fisiko berdina - + Could not save document Ezin da dokumentua gorde - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8280,102 +8284,102 @@ Would you like to save the file with a different name? Fitxategia beste izen batekin gorde nahi al duzu? - - - + + + Saving aborted Gordetzea abortatu da - + Save dependent files Gorde mendeko fitxategiak - + The file contains external dependencies. Do you want to save the dependent files, too? Fitxategiak kanpoko mendekotasunak ditu. Mendeko fitxategiak ere gorde nahi al dituzu? - - + + Saving document failed Dokumentua ezin izan da gorde - + Save document under new filename... Gorde dokumentua beste fitxategi-izen batekin... - - + + Save %1 Document Gorde %1 dokumentua - + Document Dokumentua - - + + Failed to save document Dokumentua gordetzeak huts egin du - + Documents contains cyclic dependencies. Do you still want to save them? Dokumentuek mendekotasun ziklikoak dituzte. Gorde nahi dituzu ala ere? - + Save a copy of the document under new filename... Gorde dokumentuaren kopia bat fitxategi-izen berri batekin... - + %1 document (*.FCStd) %1 dokumentua (*.FCStd) - + Document not closable Dokumentua ezin da itxi - + The document is not closable for the moment. Dokumentua ezin da momentuz itxi. - + Document not saved Dokumentua ez da gorde - + The document%1 could not be saved. Do you want to cancel closing it? %1 dokumentua ezin izan da gorde. Hura ixtea bertan behera utzi nahi duzu? - + Undo Desegin - + Redo Berregin - + There are grouped transactions in the following documents with other preceding transactions Transakzio taldekatuak daude aurretiko beste transakzio batzuk dituzten hurrengo dokumentuetan - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8448,12 +8452,12 @@ Aukeratu 'Abortatu' abortatzeko. Aukerak... - + Out of memory Memoria gutxiegi - + Not enough memory available to display the data. Ez dago nahiko memoriarik datuak bistaratzeko. @@ -8469,7 +8473,7 @@ Aukeratu 'Abortatu' abortatzeko. Ez da %1 fitxategia aurkitu ez %2 ez %3 tokietan - + Navigation styles Nabigazio-estiloak @@ -8485,32 +8489,32 @@ Aukeratu 'Abortatu' abortatzeko. Elkarrizketa-koadro hau itxi nahi duzu? - + Do you want to save your changes to document '%1' before closing? '%1' dokumentuko aldaketak gorde nahi dituzu aplikazioa itxi baino lehen? - + Do you want to save your changes to document before closing? Dokumentuko aldaketak gorde nahi dituzu aplikazioa itxi baino lehen? - + If you don't save, your changes will be lost. Gordetzen ez baduzu, zure aldaketak galdu egingo dira. - + Apply answer to all Aplikatu erantzuna denei - + %1 Document(s) not saved %1 dokumentu ez dira gorde - + Some documents could not be saved. Do you want to cancel closing? Zenbait dokumentu ezin izan dira gorde. Ixtea bertan behera utzi nahi duzu? @@ -8647,8 +8651,8 @@ eduki ditzakete eta ez dira digitu batekin hasi behar. Huts egin du '%1' objektuari propietatea gehitzeak: %2 - - + + Drag & drop failed Arrastatu eta jaregiteak huts egin du @@ -8943,12 +8947,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Ez dago onartuta: - + Selection not allowed by filter Iragazkiak ez du hautapena onartzen @@ -9036,13 +9040,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Lerrokatzea... - - + + Align the selected objects Lerrokatu hautatutako objektuak @@ -9326,17 +9330,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Txandakatu &edizio modua - + Toggles the selected object's edit mode Hautatutako objektuaren edizio modua txandakatzen du - + Activates or Deactivates the selected object's edit mode Hautatutako objektuaren edizio modua aktibatzen edo desaktibatzen du @@ -9368,13 +9372,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Adierazpen-ekintzak - - + + Actions that apply to expressions Adierazpenei aplikatzen zaizkien ekintzak @@ -9835,7 +9839,7 @@ underscore, and must not start with a digit. Sortu dokumentu huts berri bat - + Unnamed Izenik gabea @@ -9933,13 +9937,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Kokapena... - - + + Place the selected objects Kokatu hautatutako objektuak @@ -10077,13 +10081,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Freskatu - - + + Recomputes the current active document Uneko dokumentu aktiboa birkalkulatzen du @@ -10427,13 +10431,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformatu... - - + + Transform the geometry of selected objects Transformatu hautatutako objektuen geometria @@ -10441,13 +10445,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transformatu - - + + Transform the selected object in the 3d view Transformatu 3D bistan hautatutako objektua @@ -11303,7 +11307,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11314,7 +11318,7 @@ Ziur zaude jarraitu nahi duzula? - + Object dependencies Objektuaren mendekotasunak @@ -11426,7 +11430,7 @@ Dokumentua gorde nahi al duzu? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12194,8 +12198,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Errorea gertatu da -- ikusi txosten-bista informazio gehiagorako @@ -12954,65 +12958,40 @@ txosten-bistaren panelera birzuzenduko da Argi-iturriak - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Argi-iturriak - + Light source Argi-iturria - + Intensity Intentsitatea - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Norabidea - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13420,12 +13399,12 @@ the region are non-opaque. StdCmdProperties - + Properties Propietateak - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_fi.ts b/src/Gui/Language/FreeCAD_fi.ts index 8b0e4cf713..8adf1e96a7 100644 --- a/src/Gui/Language/FreeCAD_fi.ts +++ b/src/Gui/Language/FreeCAD_fi.ts @@ -91,17 +91,17 @@ Muokkaa - + Import Tuonti - + Delete Poista - + Paste expressions Liitä lausekkeet @@ -156,8 +156,7 @@ Tasaa - - + Placement Sijainti @@ -425,42 +424,42 @@ EditMode - + Default Oletus - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objektia muokataan käyttäen sisäisesti määriteltyä moodia, joka on sopivin objektityypille - + Transform Muunna - + The object will have its placement editable with the Std TransformManip command Objektin sijoittelua voidaan muokata Std TransformManip -komennolla - + Cutting Leikkuu - + This edit mode is implemented as available but currently does not seem to be used by any object Tämä muokkaustila on toteutettu käytettävissä olevaksi, mutta tällä hetkellä mikään objekti ei näytä käyttävän sitä - + Color Väri - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3907,7 +3906,7 @@ Voit myös käyttää muotoa: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Siirtyminen @@ -3967,99 +3966,99 @@ Voit myös käyttää muotoa: John Doe <john@doe.com> Käännä lähimpään - + Font name of the navigation cube Font name of the navigation cube - + Default Oletus - + Cube size Kuution koko - + Size of the navigation cube Navigointikuution koko - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Väri - + Base color for all elements Base color for all elements - + Rotation center indicator Käännön keskiön ilmaisin - + Sphere size Pallon koko - + Color and transparency Väri ja läpinäkyvyys - + The size of the rotation center indicator Käännön keskiön osoittimen koko - + The color of the rotation center indicator Käännön keskiön osoittimen väri - + 3D Navigation 3D-navigointi - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Listaa hiiren painike asetukset kunkin valitun navigointiasetuksen osalta. Valitse sarja ja paina sitten painiketta nähdäksesi mainitut asetukset. - + Mouse... Hiiri... - + Navigation settings set Navigoinnin asetukset - + Orbit style Kiertoradan tyyli - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4070,104 +4069,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable Pyörähdyspöytä - + Trackball Trackball - + Free Turntable Free Turntable - + Rotation mode Kiertotila - + Rotations in 3D will use current cursor position as center for rotation Kiertäminen 3D: ssä käyttää nykyistä kursorin sijaintia pyörimisen keskipisteenä - + Window center Ikkunan keskipiste - + Drag at cursor Vedä kohdistimeen - + Object center Objektin keskipiste - + Default camera orientation Kameran oletussuunta - + Default camera orientation when creating a new document or selecting the home view Kameran oletussuunta luotaessa uutta asiakirjaa tai valitsemalla kotinäkymä - + Camera zoom Kameran zoomaus - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Asettaa kameran zoomaus uusille dokumenteille. Arvo on pallon halkaisija, joka mahtuu ruudulle. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Ota pyörivät animaatiot käyttöön - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animaation kesto - + The duration of navigation animations in milliseconds Navigoinnin animaatioiden kesto millisekunteina - + Zoom step Zoomauksen askel @@ -4177,34 +4176,34 @@ Arvo on pallon halkaisija, joka mahtuu ruudulle. Fontin nimi - + Zoom operations will be performed at position of mouse pointer Zoomaus toiminnot suoritetaan hiiren osoittimen kohdassa - + Zoom at cursor Suurenna osoittimen kohdalta - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. - + Direction of zoom operations will be inverted Suurennuksen suunta käännetään ylösalaisin - + Invert zoom Käännä zoom päinvastaiseksi - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4213,7 +4212,7 @@ Vaikuttaa vain ele navigointi tyyliin. Hiiren kallistaminen ei ole pois käytöstä tällä asetuksella. - + Disable touchscreen tilt gesture Poista kosketusnäytön kallistusele käytöstä @@ -4683,7 +4682,7 @@ Oletussjärjestelmä on määritetty yleisissä asetuksissa. Gui::Dialog::DockablePlacement - + Placement Sijainti @@ -5269,32 +5268,17 @@ The 'Status' column shows whether the document could be recovered. Palauta - - OK - OK - - - - Close - Sulje - - - - Apply - Käytä - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Valitse 1, 2 tai 3 pistettä ennen kuin napsautat tätä painiketta. Piste voi olla kärkipisteessä, pintanäkymässä tai reunassa. Jos käytetty piste on pintanäkymässä tai reunassa, niin käytetään kohtaa hiiren sijainnissa pitkin pintanäkymää tai reunaa. Jos 1 piste on valittuna, sitä käytetään pyörimisen keskipisteenä. Jos 2 pistettä on valittuna, niin niiden välinen keskikohta on kiertämisen keskipiste ja tarvittaessa luodaan uusi mukautettu akseli. Jos on 3 pistettä valittuna, niin ensimmäinen kohta tulee kiertämisen keskipisteeksi ja se sijaitsee vektorilla, joka on normaali 3 pisteen määrittelemällä tasolla. Raportissa esitetään joitakin etäisyys- ja kulmatietoja, jotka voivat olla hyödyllisiä kohdistettaessa kohteita. Mukavuutesi vuoksi, kun Shift + napsautusta käytetään, niin sopiva etäisyys tai kulma kopioidaan leikepöydälle. - + Incorrect quantity Virheellinen määrä - + There are input fields with incorrect input, please ensure valid placement values! Syöttökentissä on virheellisiä tietoja, varmista että on kelvolliset sijoitetut arvot! @@ -5433,13 +5417,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Peruuta - - - - + Transform Muunna @@ -5829,13 +5807,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Valitse tiedosto - + Select a directory Valitse hakemisto @@ -5843,13 +5821,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Tallenna nimellä - - + + Open Avaa @@ -5857,12 +5835,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Laajennettu - + All files (*.*) Kaikki tiedostot (*.*) @@ -6039,7 +6017,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Lista @@ -6156,57 +6134,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Mitta - + Ready Valmis - + Close All Sulje kaikki - - - + + + Toggles this toolbar Näyttä tai piilota tämä työkalurivi - - - + + + Toggles this dockable window Näytä tai piilota telakointiasema ikkunasta - + WARNING: This is a development version. WARNING: This is a development version. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document Tallentamaton asiakirja - + The exported object contains external link. Please save the documentat least once before exporting. Viety objekti sisältää ulkoisen linkin. Tallenna asiakirja vähintään kerran ennen vientiä. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Linkittääksesi ulkoisiin objekteihin, asiakirja on tallennettava vähintään kerran. @@ -6794,12 +6772,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Valitse moduuli - + Open %1 as Avaa kuin %1 @@ -7335,7 +7313,7 @@ Haluatko valita toisen hakemiston? Gui::TreeDockWidget - + Tree view Puunäkymä @@ -7343,7 +7321,7 @@ Haluatko valita toisen hakemiston? Gui::TreePanel - + Search Haku @@ -7401,148 +7379,148 @@ Haluatko valita toisen hakemiston? Ryhmä - + Labels & Attributes Nimilaput & Määritteet - + Description Kuvaus - + Internal name Internal name - + Show items hidden in tree view Show items hidden in tree view - + Show items that are marked as 'hidden' in the tree view Show items that are marked as 'hidden' in the tree view - + Toggle visibility in tree view Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view Toggles the visibility of selected items in the tree view - + Create group Luo ryhmä - + Create a group Ryhmän luominen - - + + Rename Nimeä uudelleen - + Rename object Nimeä objekti uudelleen - + Finish editing Lopeta muokkaaminen - + Finish editing object Lopeta objektin muokkaaminen - + Add dependent objects to selection Lisää riippuvaisia objekteja valintaan - + Adds all dependent objects to the selection Lisää kaikki riippuvaiset objektit valintaan - + Close document Sulje asiakirja - + Close the document Sulje asiakirja - + Reload document Lataa asiakirja uudelleen - + Reload a partially loaded document Lataa osittain ladattu asiakirja uudelleen - + Skip recomputes Ohita uudelleenlaskenta - + Enable or disable recomputations of document Ota käyttöön tai poista käytöstä asiakirjan uudelleenlaskenta - + Allow partial recomputes Salli osittainen uudelleenlaskenta - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Ota käyttöön tai poista käytöstä kohteen uudelleenlaskenta kun 'ohita uudelleenlaskenta' on käytössä - + Mark to recompute Merkitse laskettavaksi uudelleen - + Mark this object to be recomputed Merkitse tämä objekti laskettavaksi uudelleen - + Recompute object Laske objekti uudelleen - + Recompute the selected object Laske uudelleen valittu objekti - + (but must be executed) (mutta on suoritettava) - + %1, Internal name: %2 %1, Sisäinen nimi: %2 @@ -7739,14 +7717,14 @@ Haluatko valita toisen hakemiston? PropertyListDialog - - + + Invalid input Virheellinen syöte - - + + Input in line %1 is not a number Syötetty tieto viivalla %1 ei ole numero @@ -7754,47 +7732,47 @@ Haluatko valita toisen hakemiston? QDockWidget - + Tree view Puunäkymä - + Tasks Tehtävät - + Property view Ominaisuusnäkymä - + Selection view Valintanäkymä - + Task List Task List - + Model Malli - + DAG View DAG-näkymä - + Report view Raporttinäkymä - + Python console Python-konsoli @@ -7834,45 +7812,71 @@ Haluatko valita toisen hakemiston? Python - - - + + + Unknown filetype Tuntematon tiedostotyyppi - - + + Cannot open unknown filetype: %1 Ei voida avata tuntematonta tiedostotyyppiä:%1 - + Export failed Vienti epäonnistui - + Cannot save to unknown filetype: %1 Ei voi tallentaa tuntematonta tiedostotyyppiä:%1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Työpöydän häiriö - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7923,7 +7927,7 @@ Haluatko valita toisen hakemiston? Viedään PDF... - + Unsaved document Tallentamaton asiakirja @@ -7934,50 +7938,50 @@ Haluatko valita toisen hakemiston? Viety objekti sisältää ulkoisen linkin. Tallenna asiakirja vähintään kerran ennen vientiä. - + Delete failed Poistaminen epäonnistui - + Dependency error Riippuvuusvirhe - + Copy selected Kopioi valitut - + Copy active document Kopioi aktiivinen asiakirja - + Copy all documents Kopioi kaikki asiakirjat - + Paste Liitä - + Expression error Lausekevirhe - + Failed to parse some of the expressions. Please check the Report View for more details. Joitakin lausekkeita ei voitu jäsentää. Ole hyvä ja tarkista raporttinäkymä saadaksesi lisätietoja. - + Failed to paste expressions Lausekkeiden liittäminen epäonnistui @@ -8216,7 +8220,7 @@ Haluatko jatkaa? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8225,44 +8229,44 @@ Haluatko jatkaa? - + Are you sure you want to continue? Haluatko varmasti jatkaa? - + Please check report view for more... Please check report view for more... - + Physical path: Fyysinen polku: - - + + Document: Document: - - + + Path: Polku: - + Identical physical path Identtinen fyysinen polku - + Could not save document Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8275,102 +8279,102 @@ Would you like to save the file with a different name? Would you like to save the file with a different name? - - - + + + Saving aborted Tallentaminen keskeytettiin - + Save dependent files Tallenna riippuvaiset tiedostot - + The file contains external dependencies. Do you want to save the dependent files, too? Tiedosto sisältää ulkoisia riippuvuuksia. Haluatko tallentaa myös riippuvaiset tiedostot? - - + + Saving document failed Asiakirjan tallennus epäonnistui - + Save document under new filename... Tallenna asiakirja uudella tiedostonimellä... - - + + Save %1 Document Tallenna %1-asiakirja - + Document Asiakirja - - + + Failed to save document Asiakirjan tallennus epäonnistui - + Documents contains cyclic dependencies. Do you still want to save them? Asiakirjat sisältävät syklisiä riippuvuuksia. Haluatko silti tallentaa ne? - + Save a copy of the document under new filename... Tallenna kopio asiakirjasta uudelle tiedostonimelle... - + %1 document (*.FCStd) %1-asiakirja (*.FCStd) - + Document not closable Asiakirja ei ole suljettavissa - + The document is not closable for the moment. Asiakirja ei ole tällä hetkellä suljettavissa. - + Document not saved Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? The document%1 could not be saved. Do you want to cancel closing it? - + Undo Kumoa - + Redo Tee uudelleen - + There are grouped transactions in the following documents with other preceding transactions Seuraavissa asiakirjoissa on ryhmiteltyjä yhteistoimintoja muiden edeltävien yhteistoimintojen kanssa - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8443,12 +8447,12 @@ Valitse 'Abort' keskeyttääksesi Asetukset... - + Out of memory Muisti loppui - + Not enough memory available to display the data. Muisti ei riitä tietojen näyttämiseen. @@ -8464,7 +8468,7 @@ Valitse 'Abort' keskeyttääksesi Ei voida löytää tiedostoja %1, %2 ja %3 - + Navigation styles Navigointityylit @@ -8480,32 +8484,32 @@ Valitse 'Abort' keskeyttääksesi Haluatko sulkea tämän valintaikkunan? - + Do you want to save your changes to document '%1' before closing? Haluatko tallentaa asiakirjan "%1" muutokset ennen sulkemista? - + Do you want to save your changes to document before closing? Haluatko tallentaa asiakirjan muutokset ennen sulkemista? - + If you don't save, your changes will be lost. Jos et tallenna, niin tekemäsi muutokset menetetään. - + Apply answer to all Käytä samaa vastausta kaikkiin - + %1 Document(s) not saved %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? Some documents could not be saved. Do you want to cancel closing? @@ -8642,8 +8646,8 @@ alaviivoja, eikä se saa alkaa numerolla. Ominaisuutta ei voitu lisätä kohteeseen '%1': %2 - - + + Drag & drop failed Vedä & pudota epäonnistui @@ -8940,12 +8944,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Ei sallittu: - + Selection not allowed by filter Suodatin ei salli valintaa @@ -9033,13 +9037,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Tasaus... - - + + Align the selected objects Tasaa valitut objektit @@ -9323,17 +9327,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Vaihda &muokkaustila - + Toggles the selected object's edit mode Vaihtaa valitun objektin muokkaustilan - + Activates or Deactivates the selected object's edit mode Aktivoi tai deaktivoi valitun objektin muokkaustila @@ -9365,13 +9369,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Lausekkeen toiminnot - - + + Actions that apply to expressions Actions that apply to expressions @@ -9832,7 +9836,7 @@ underscore, and must not start with a digit. Luo uusi tyhjä asiakirja - + Unnamed Nimetön @@ -9930,13 +9934,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Sijainti... - - + + Place the selected objects Siirrä valitut objektit @@ -10074,13 +10078,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Päivitä - - + + Recomputes the current active document Laskee uudelleen aktiivisen dokumentin tiedot @@ -10424,13 +10428,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Muunna... - - + + Transform the geometry of selected objects Muuta valittujen objektien geometriaa @@ -10438,13 +10442,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Muunna - - + + Transform the selected object in the 3d view Muunna valittuja objekteja 3D-näkymässä @@ -11300,7 +11304,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11311,7 +11315,7 @@ Oletko varma, että haluat jatkaa? - + Object dependencies Objektin riippuvuudet @@ -11423,7 +11427,7 @@ Haluatko tallentaa asiakirjan nyt? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12191,8 +12195,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12951,65 +12955,40 @@ Python-konsolista Raporttinäkymäpaneeliin Valonlähteet - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Valonlähteet - + Light source Valonlähde - + Intensity Voimakkuus - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Suunta - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13417,12 +13396,12 @@ the region are non-opaque. StdCmdProperties - + Properties Ominaisuudet - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_fr.ts b/src/Gui/Language/FreeCAD_fr.ts index aab17cbd4d..b688460587 100644 --- a/src/Gui/Language/FreeCAD_fr.ts +++ b/src/Gui/Language/FreeCAD_fr.ts @@ -91,17 +91,17 @@ Éditer - + Import Importer - + Delete Supprimer - + Paste expressions Coller les expressions @@ -156,8 +156,7 @@ Aligner - - + Placement Position @@ -425,42 +424,42 @@ EditMode - + Default Par défaut - + The object will be edited using the mode defined internally to be the most appropriate for the object type L'objet sera modifié en utilisant le mode défini en interne comme étant le plus approprié pour le type d'objet. - + Transform Transformer - + The object will have its placement editable with the Std TransformManip command L’objet aura un positionnement modifiable à l’aide de la commande Transformer - + Cutting Couper - + This edit mode is implemented as available but currently does not seem to be used by any object Ce mode d'édition est implémenté comme étant disponible mais ne semble pas être utilisé pour l'instant par quelque objet que ce soit. - + Color Colorier - + The object will have the color of its individual faces editable with the Part FaceAppearances command La couleur de chaque face de l'objet peut être modifiée à l'aide de la commande Couleur par face de Part. @@ -1994,7 +1993,7 @@ Peut-être une erreur de permission du fichier ? % - % + % @@ -3891,7 +3890,7 @@ Vous pouvez également utiliser la forme : John Doe <john@doe.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Navigation @@ -3951,99 +3950,99 @@ Vous pouvez également utiliser la forme : John Doe <john@doe.com>Tourner au plus près - + Font name of the navigation cube Nom de la police du cube de navigation - + Default Par défaut - + Cube size Taille du cube - + Size of the navigation cube Taille du cube de navigation - + Opacity when inactive Opacité en cas d'inactivité - + Opacity of the navigation cube when not focused Opacité du cube de navigation lorsqu'il n'est pas activé. - + Color Couleur - + Base color for all elements Couleur de base pour tous les éléments - + Rotation center indicator Indicateur du centre de rotation - + Sphere size Taille de la sphère - + Color and transparency Couleurs et transparence - + The size of the rotation center indicator La taille de l'indicateur du centre de rotation - + The color of the rotation center indicator La couleur de l'indicateur du centre de rotation - + 3D Navigation Navigation 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Liste les configurations du bouton de la souris pour chaque paramètre de navigation choisi. Sélectionnez un réglage puis appuyez sur le bouton pour afficher ces configurations. - + Mouse... Souris... - + Navigation settings set Ensemble des réglages de navigation - + Orbit style Style d'orbite - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4054,104 +4053,104 @@ Vue en rotation : la pièce sera pivotée autour de l’axe z (avec des axes con Vue en rotation libre : la pièce sera pivotée autour de l’axe z. - + Turntable Vue en rotation - + Trackball Trackball - + Free Turntable Vue en rotation libre - + Rotation mode Mode de rotation - + Rotations in 3D will use current cursor position as center for rotation Les rotations en 3D utiliseront la position en cours du curseur comme centre de rotation - + Window center Centre de la fenêtre - + Drag at cursor Faire glisser sur le curseur - + Object center Centre de l'objet - + Default camera orientation Orientation par défaut de la caméra - + Default camera orientation when creating a new document or selecting the home view Orientation par défaut de la caméra lors de la création d'un nouveau document ou de la sélection de la vue d'accueil - + Camera zoom Zoom de la caméra - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Définit le zoom de la caméra pour de nouveaux documents. La valeur est le diamètre de la sphère qui rentre à l'écran. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Activer les animations de rotation qui sont utilisées dans certains styles de navigation après un glisser-déposer. - + Enable spinning animations Activer les animations de rotation - + Duration of navigation animations that have a fixed duration Durée des animations de navigation qui ont une durée fixe - + Animation duration Durée des animations - + The duration of navigation animations in milliseconds La durée des animations de navigation est en millisecondes. - + Zoom step Pas du zoom @@ -4161,34 +4160,34 @@ La valeur est le diamètre de la sphère qui rentre à l'écran. Nom de la police - + Zoom operations will be performed at position of mouse pointer Les opérations de zoom seront effectuées à la position du pointeur de la souris - + Zoom at cursor Zoomer sur le curseur - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Facteur d'agrandissement. Un pas du zoom de "1" signifie un facteur de 7.5 pour chaque pas de zoom. - + Direction of zoom operations will be inverted Le sens du zoom sera inversé - + Invert zoom Inverser le zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4197,7 +4196,7 @@ N’affecte que le style de navigation Gesture. L’inclinaison à la souris n’est pas désactivée par ce réglage. - + Disable touchscreen tilt gesture Désactiver l’inclinaison par geste de l’écran tactile @@ -4667,7 +4666,7 @@ Le système de préférences est celui défini dans les préférences générale Gui::Dialog::DockablePlacement - + Placement Position @@ -5253,32 +5252,17 @@ La colonne "État" indique si le document a pu être récupéré. Réinitialiser - - OK - OK - - - - Close - Fermer - - - - Apply - Appliquer - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Sélectionner 1, 2 ou 3 points avant de cliquer sur ce bouton. Un point peut être sur un sommet, une face ou une arête. S'il est sur une face ou une arête, le point utilisé sera le point à la position de la souris le long de la face ou de l'arête. Si 1 point est sélectionné, il sera utilisé comme centre de rotation. Si 2 points sont sélectionnés, le point médian sera le centre de rotation et un nouvel axe personnalisé sera créé, si nécessaire. Si 3 points sont sélectionnés, le premier point devient le centre de rotation et se trouve sur le vecteur qui est perpendiculaire au plan défini par les 3 points. Des informations de distance et d’angle sont fournies dans la Vue rapport, ce qui peut être utile pour aligner des objets. Pour plus de commodité, lorsque vous utilisez Maj + clic, la distance ou l'angle approprié est copié dans le presse-papiers. - + Incorrect quantity Quantité incorrecte - + There are input fields with incorrect input, please ensure valid placement values! Certains champs de saisie sont incorrects. Assurez-vous que les valeurs de position sont valides ! @@ -5417,13 +5401,7 @@ La colonne "État" indique si le document a pu être récupéré. Gui::Dialog::Transform - - Cancel - Annuler - - - - + Transform Transformer @@ -5814,13 +5792,13 @@ Voulez enregistrer les modifications ? Gui::FileChooser - - + + Select a file Sélectionner un fichier - + Select a directory Sélectionner un répertoire @@ -5828,13 +5806,13 @@ Voulez enregistrer les modifications ? Gui::FileDialog - + Save as Enregistrer sous - - + + Open Ouvrir @@ -5842,12 +5820,12 @@ Voulez enregistrer les modifications ? Gui::FileOptionsDialog - + Extended Étendu - + All files (*.*) Tous les fichiers (*.*) @@ -6024,7 +6002,7 @@ Voulez enregistrer les modifications ? Gui::LabelEditor - + List Liste @@ -6141,57 +6119,57 @@ Voulez enregistrer les modifications ? Gui::MainWindow - + Dimension Dimension - + Ready Prêt - + Close All Fermer tout - - - + + + Toggles this toolbar Active/désactive cette barre d'outils - - - + + + Toggles this dockable window Active/désactive cette fenêtre ancrable - + WARNING: This is a development version. ATTENTION : ceci est une version de développement. - + Please do not use it in a production environment. Merci de ne pas l'utiliser dans un environnement de production. - - + + Unsaved document Document non enregistré - + The exported object contains external link. Please save the documentat least once before exporting. L'objet exporté contient un lien externe. Veuillez enregistrer le document au moins une fois avant l'exportation. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Pour créer un lien vers des objets externes, le document doit être enregistré au moins une fois. @@ -6778,12 +6756,12 @@ Voulez vous quitter sans sauvegarder vos données? Gui::SelectModule - + Select module Sélectionner le module - + Open %1 as Ouvrir '%1' comme @@ -7317,7 +7295,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Vue en arborescence @@ -7325,7 +7303,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Rechercher @@ -7383,148 +7361,148 @@ Do you want to specify another directory? Groupe - + Labels & Attributes Étiquettes & attributs - + Description Description - + Internal name Nom interne - + Show items hidden in tree view Afficher les éléments masqués dans l'arborescence - + Show items that are marked as 'hidden' in the tree view Afficher les éléments qui sont marqués comme "cachés" dans l'arborescence - + Toggle visibility in tree view Activer/désactiver la visibilité dans l'arborescence - + Toggles the visibility of selected items in the tree view Active/désactive la visibilité des éléments sélectionnés dans l'arborescence - + Create group Créer un groupe - + Create a group Créer un groupe - - + + Rename Renommer - + Rename object Renommer un objet - + Finish editing Terminer l'édition - + Finish editing object Terminer l'édition de l'objet - + Add dependent objects to selection Ajouter des objets dépendants à la sélection - + Adds all dependent objects to the selection Ajouter tous les objets dépendants à la sélection - + Close document Fermer le document - + Close the document Fermer le document - + Reload document Recharger le document - + Reload a partially loaded document Recharger un document partiellement chargé - + Skip recomputes Ignorer les recalculs - + Enable or disable recomputations of document Activer ou désactiver le recalcul du document - + Allow partial recomputes Autoriser les recalculs partiels - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Activer ou désactiver le recalcul de l'objet d'édition lorsque l'option "ignorer le recalcul" est activée. - + Mark to recompute Marquer pour recalculer - + Mark this object to be recomputed Marquer cet objet pour être recalculé - + Recompute object Recalculer l'objet - + Recompute the selected object Recalculer l'objet sélectionné - + (but must be executed) (mais doit être exécuté) - + %1, Internal name: %2 %1, nom interne : %2 @@ -7721,14 +7699,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Valeur invalide - - + + Input in line %1 is not a number La valeur à la ligne %1 n'est pas un nombre @@ -7736,47 +7714,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Vue en arborescence - + Tasks Tâches - + Property view Vue des propriétés - + Selection view Fenêtre de sélection - + Task List Liste des tâches - + Model Modèle - + DAG View Vue DAG - + Report view Vue rapport - + Python console Console Python @@ -7816,45 +7794,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Type de fichier inconnu - - + + Cannot open unknown filetype: %1 Impossible d'ouvrir un type de fichier inconnu : %1 - + Export failed Échec de l'exportation - + Cannot save to unknown filetype: %1 Impossible de sauvegarder ce type de fichier inconnu : %1 - + + Recomputation required + Recalcul requis + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Certains documents doivent être recalculés à des fins de migration. Il est fortement recommandé d'effectuer un recalcul avant toute modification pour éviter des problèmes de compatibilité. + +Voulez-vous recalculer maintenant ? + + + + Recompute error + Erreur de recalcul + + + + Failed to recompute some document(s). +Please check report view for more details. + Le recalcul de certains documents a échoué. +Consulter la vue rapport pour plus de détails. + + + Workbench failure Atelier défaillant - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ce système utilise OpenGL %1.%2. FreeCAD nécessite OpenGL 2.0 ou supérieur. Veuillez mettre à jour votre pilote graphique et/ou votre carte si nécessaire. - + Invalid OpenGL Version Version d'OpenGL non valide @@ -7905,7 +7909,7 @@ Do you want to specify another directory? Exportation au format PDF... - + Unsaved document Document non sauvegardé @@ -7916,50 +7920,50 @@ Do you want to specify another directory? L'objet exporté contient un lien externe. Veuillez enregistrer le document au moins une fois avant l'exportation. - + Delete failed La suppression a échoué - + Dependency error Erreur de dépendance - + Copy selected Copier la sélection - + Copy active document Copier le document actif - + Copy all documents Copier tous les documents - + Paste Coller - + Expression error Erreur d'expression - + Failed to parse some of the expressions. Please check the Report View for more details. Echec de l'analyse de certaines expressions. Consultez la Vue rapport pour plus de détails. - + Failed to paste expressions Impossible de coller les expressions @@ -8197,7 +8201,7 @@ Do you want to continue? Trop de notifications non intrusives ouvertes. Des notifications sont omises ! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8206,44 +8210,44 @@ Do you want to continue? - + Are you sure you want to continue? Êtes-vous sûr de vouloir continuer ? - + Please check report view for more... Veuillez consulter la Vue rapport pour plus... - + Physical path: Chemin d'accès physique : - - + + Document: Document : - - + + Path: Chemin d'accès : - + Identical physical path Chemin d'accès physique identique - + Could not save document Impossible d'enregistrer le document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8256,102 +8260,102 @@ Would you like to save the file with a different name? Voulez-vous enregistrer le fichier avec un nom différent ? - - - + + + Saving aborted Sauvegarde interrompue - + Save dependent files Enregistrer les fichiers dépendants - + The file contains external dependencies. Do you want to save the dependent files, too? Le fichier contient des dépendances externes. Voulez-vous également enregistrer les fichiers dépendants ? - - + + Saving document failed L'enregistrement du document a échoué - + Save document under new filename... Enregistrer le document sous un nouveau nom… - - + + Save %1 Document Enregistrer le document %1 - + Document Document - - + + Failed to save document Impossible d'enregistrer le document - + Documents contains cyclic dependencies. Do you still want to save them? Les documents contiennent des dépendances cycliques. Voulez-vous les enregistrer ? - + Save a copy of the document under new filename... Enregistrer une copie du document avec un nouveau nom... - + %1 document (*.FCStd) Document %1 (*.FCStd) - + Document not closable Impossible de fermer le document - + The document is not closable for the moment. Impossible de fermer le document pour le moment. - + Document not saved Document non enregistré - + The document%1 could not be saved. Do you want to cancel closing it? Le document%1 n'a pas pu être enregistré. Voulez-vous annuler sa fermeture ? - + Undo Annuler - + Redo Rétablir - + There are grouped transactions in the following documents with other preceding transactions Il y a des opérations regroupées dans les documents suivants avec d'autres opérations précédentes - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8424,12 +8428,12 @@ Choisissez "Interrompre" pour annuler. Options... - + Out of memory Mémoire insuffisante - + Not enough memory available to display the data. Mémoire insuffisante pour afficher les données. @@ -8445,7 +8449,7 @@ Choisissez "Interrompre" pour annuler. Impossible de trouver le fichier %1 ni dans %2 ni dans %3 - + Navigation styles Styles de navigation @@ -8461,32 +8465,32 @@ Choisissez "Interrompre" pour annuler. Voulez-vous fermer cette fenêtre de dialogue ? - + Do you want to save your changes to document '%1' before closing? Voulez-vous enregistrer les modifications apportées au document "%1" avant sa fermeture ? - + Do you want to save your changes to document before closing? Voulez-vous enregistrer les modifications apportées au document avant sa fermeture ? - + If you don't save, your changes will be lost. Si vous n'enregistrez pas, vos modifications seront perdues. - + Apply answer to all Appliquez la réponse à tout - + %1 Document(s) not saved %1 document(s) non enregistré(s) - + Some documents could not be saved. Do you want to cancel closing? Certains documents n'ont pas pu être enregistrés. Voulez-vous annuler la fermeture ? @@ -8623,8 +8627,8 @@ des tirets bas et ne doit pas commencer par un chiffre. Impossible d'ajouter la propriété à "%1" : %2 - - + + Drag & drop failed Le glisser/déposer a échoué @@ -8916,12 +8920,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Non autorisé : - + Selection not allowed by filter Sélection non autorisée par filtre @@ -9009,13 +9013,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Aligner... - - + + Align the selected objects Aligner les objets sélectionnés @@ -9299,17 +9303,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Activer/désactiver le mode d'é&dition - + Toggles the selected object's edit mode Active/désactive le mode d'édition de l'objet sélectionné - + Activates or Deactivates the selected object's edit mode Active ou désactive le mode d'édition de l'objet sélectionné @@ -9341,13 +9345,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Actions sur les expressions - - + + Actions that apply to expressions Actions s’appliquant à des expressions @@ -9811,7 +9815,7 @@ création d'assemblages complexes. Créer un nouveau document vide - + Unnamed Nouveau @@ -9909,13 +9913,13 @@ création d'assemblages complexes. StdCmdPlacement - + Placement... Positionner... - - + + Place the selected objects Positionner les objets sélectionnés @@ -10053,13 +10057,13 @@ création d'assemblages complexes. StdCmdRefresh - + &Refresh &Actualiser - - + + Recomputes the current active document Recalculer le document actif @@ -10403,13 +10407,13 @@ création d'assemblages complexes. StdCmdTransform - + Transform... Transformer... - - + + Transform the geometry of selected objects Transformer la géométrie des objets sélectionnés @@ -10417,13 +10421,13 @@ création d'assemblages complexes. StdCmdTransformManip - + Transform Transformer - - + + Transform the selected object in the 3d view Transformer l'objet sélectionné dans la vue 3D @@ -11280,7 +11284,7 @@ une page d'explications de cette dernière fonction s'ouvre. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11291,7 +11295,7 @@ Are you sure you want to continue? - + Object dependencies Dépendances des objets @@ -11403,7 +11407,7 @@ Voulez-vous enregistrer le document maintenant ? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12172,8 +12176,8 @@ En ce moment, votre système dispose des ateliers suivants : Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Une erreur est survenue -- voir la Vue rapport pour plus d'informations @@ -12924,65 +12928,40 @@ from Python console to Report view panel Sources de lumière - + + Push In + Zoomer + + + + Pull Out + Dézoomer + + + Light sources Sources de lumière - + Light source Source de lumière - + Intensity Intensité - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajuster l'orientation de la source de lumière directionnelle en faisant glisser la poignée avec la souris ou utiliser les boîtes de rotation pour un réglage précis. - + Direction Direction - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - Y - - - - q0 - q0 - - - - x - X - StdCmdToggleTransparency @@ -13391,12 +13370,12 @@ Mettre à zéro pour remplir l'espace. StdCmdProperties - + Properties Propriétés - + Show the property view, which displays the properties of the selected object. Afficher l'éditeur de propriétés pour montrer les propriétés de l'objet sélectionné. diff --git a/src/Gui/Language/FreeCAD_hr.ts b/src/Gui/Language/FreeCAD_hr.ts index 25996b7325..c821f48475 100644 --- a/src/Gui/Language/FreeCAD_hr.ts +++ b/src/Gui/Language/FreeCAD_hr.ts @@ -91,17 +91,17 @@ Uredi - + Import Uvoz - + Delete Izbriši - + Paste expressions Umetni izraz @@ -156,8 +156,7 @@ Poravnati - - + Placement Položaj @@ -425,42 +424,42 @@ EditMode - + Default Inicijalno - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objekt će se uređivati pomoću definiranog unutarnjeg načina rada kako bi bio najprimjereniji za vrstu objekta - + Transform Transformiraj - + The object will have its placement editable with the Std TransformManip command Objekt će imati svoju poziciju uređivu pomoću naredbe Std TransformManip - + Cutting Rezanje - + This edit mode is implemented as available but currently does not seem to be used by any object Ovaj način uređivanja implementiran je kao dostupan, ali trenutno se ne čini da ga koristi niti jedan objekt - + Color Boja - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3927,7 +3926,7 @@ Možete koristiti i obrazac: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigacija @@ -3989,77 +3988,77 @@ Možete koristiti i obrazac: John Doe <john@doe.com> Rotira se u najbliže - + Font name of the navigation cube Naziv pisma navigacijske kocke - + Default Inicijalno - + Cube size Veličina kocke - + Size of the navigation cube Veličina kocke navigacije - + Opacity when inactive Zamračenje pri neaktivnosti - + Opacity of the navigation cube when not focused Zamračenje navigacijska kocka kada nije u fokusu - + Color Boja - + Base color for all elements Osnovna boja za sve elemente - + Rotation center indicator Indikator centra rotacije - + Sphere size Veličina kugle - + Color and transparency Boja i prozirnost - + The size of the rotation center indicator Veličina indikatora centra rotacije - + The color of the rotation center indicator Boja indikatora centra rotacije - + 3D Navigation 3D navigacija - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Navedite konfiguracije gumba miša za svaku odabranu navigacijsku postavku. @@ -4067,22 +4066,22 @@ Odaberite set, a zatim pritisnite gumb za prikaz navedenih konfiguracija. - + Mouse... Miš... - + Navigation settings set Set navigacijskih postavki - + Orbit style Način okretanja - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4093,66 +4092,66 @@ Okretna ploča: dio će se rotirati oko z-osi (s ograničenim osima). Free Turntable: dio će se rotirati oko z-osi. - + Turntable Okretano - + Trackball Prećeno - + Free Turntable Slobodna okretna ploča - + Rotation mode Način rotacije - + Rotations in 3D will use current cursor position as center for rotation Rotacije u 3D upotrebljavat će trenutni položaj pokazivača kao središte rotacije - + Window center Središte prozora - + Drag at cursor Povucite kod pokazivača - + Object center Središte objekta - + Default camera orientation Zadana orijentacija kamere - + Default camera orientation when creating a new document or selecting the home view Zadana orijentacija kamere prilikom izrade novog dokumenta ili odabira zadanog početnog prikaza - + Camera zoom Zumiranje kamere - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Postavlja zumiranje za nove dokumente. @@ -4160,42 +4159,42 @@ Vrijednost je promjer sfere koja će stati na zaslon. - + mm mm - + Animations Animacije - + Enable spinning animations that are used in some navigation styles after dragging Omogućite animacije rotiranja koje se koriste u nekim stilovima navigacije nakon povlačenja - + Enable spinning animations Omogućite animacije rotiranja - + Duration of navigation animations that have a fixed duration Trajanje animacija navigacije koje imaju fiksno trajanje - + Animation duration Trajanje animacije - + The duration of navigation animations in milliseconds Trajanje animacija navigacije u milisekundama - + Zoom step Korak zumiranja @@ -4205,34 +4204,34 @@ Vrijednost je promjer sfere koja će stati na zaslon. Ime pisma - + Zoom operations will be performed at position of mouse pointer Operacije zumiranja izvodit će se na položaju pokazivača miša - + Zoom at cursor Približavaj na kursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Koliko će se zumirati. Korak zumiranja '1' znači faktor 7,5 za svaki korak zumiranja. - + Direction of zoom operations will be inverted Smjer operacija zumiranja će se obrnuti - + Invert zoom Invertiraj zumiranje - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4241,7 +4240,7 @@ Utječe samo na navigacijski stil gestama. Naginjanje miša nije onemogućeno ovom postavkom. - + Disable touchscreen tilt gesture Onemogući nagib geste zaslona osjetljivog na dodir @@ -4713,7 +4712,7 @@ Sustav preferencija je onaj skup postavki koji se nalazi u općim preferencijam Gui::Dialog::DockablePlacement - + Placement Položaj @@ -5299,32 +5298,17 @@ The 'Status' column shows whether the document could be recovered. Odbaci - - OK - U redu - - - - Close - Zatvori - - - - Apply - Primijeni - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Odaberite 1, 2 ili 3 točke prije nego kliknete ovaj gumb. Točka može biti tjemena točka, točka lica ili ruba. Ako se koristi na licu ili rubu točka će biti točka na položaju miša uzduž lica ili ruba. Ako je 1 točka odabrana ona će se koristiti kao centar rotacije. Ako su 2 točke odabrane središnja točka između njih će biti centar rotacije i po potrebi će se stvoriti nova prilagođena os. Ako su 3 točke odabrane prva točka postaje centar rotacije i leži na vektoru koji je normala na ravninu definiranu sa 3 točke. Neke informacije udaljenosti i kuta su dane u prikazu izvještaja, što može biti korisno kod poravnavanja objekata. Radi vaše udobnosti kada se koristi "Shift + klik" odgovarajuća udaljenost ili kut je kopiran(a) u međuspremnik. - + Incorrect quantity Netočna količina - + There are input fields with incorrect input, please ensure valid placement values! Unos polja netočan unos, provjerite je li vrijednost valjana! @@ -5463,13 +5447,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Otkazati - - - - + Transform Transformiraj @@ -5861,13 +5839,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Odaberite datoteku - + Select a directory Odaberite direktorij @@ -5875,13 +5853,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Spremi kao - - + + Open Otvori @@ -5889,12 +5867,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Produženo - + All files (*.*) Sve datoteke (*.*) @@ -6071,7 +6049,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Popis @@ -6188,58 +6166,58 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Dimenzija - + Ready Spreman - + Close All Zatvori sve - - - + + + Toggles this toolbar Uključuje ove alatne trake - - - + + + Toggles this dockable window Uključi/isključi ovaj usidrivi prozor - + WARNING: This is a development version. UPOZORENJE: Ovo je razvojna verzija. - + Please do not use it in a production environment. Molimo ne koristiti ovo u produktivnom okruženju. - - + + Unsaved document Nespremljeni dokument - + The exported object contains external link. Please save the documentat least once before exporting. Izvezeni objekt sadrži vanjsku poveznicu. Prije izvoza spremite dokument barem jednom. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Za povezivanje s vanjskim objektima dokument se mora barem jednom spremiti. @@ -6831,12 +6809,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Odaberite modul - + Open %1 as Otvori %1 kao @@ -7372,7 +7350,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Pogled hijerarhije @@ -7380,7 +7358,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Pretraživanje @@ -7438,150 +7416,150 @@ Do you want to specify another directory? Grupa - + Labels & Attributes Etikete i atributi - + Description Opis - + Internal name Internal name - + Show items hidden in tree view Prikaži stavke skrivene u prikazu stabla - + Show items that are marked as 'hidden' in the tree view Prikaži stavke koji su označene kao 'skriveni' u prikazu stabla - + Toggle visibility in tree view Prebaci vidljivost u prikazu stabla - + Toggles the visibility of selected items in the tree view Prebaci vidljivost označenih stavki u prikazu stabla - + Create group Napravi grupu - + Create a group Napravite grupu - - + + Rename Preimenuj - + Rename object Preimenovanje objekta - + Finish editing Završi uređivanje - + Finish editing object Završi uređivanje objekta - + Add dependent objects to selection Dodajte ovisne objekte odabiru - + Adds all dependent objects to the selection Dodaje sve ovisne objekte odabiru - + Close document Zatvori dokument - + Close the document Zatvori dokument - + Reload document Dokument ponovo učitati - + Reload a partially loaded document Učitajte ponovo djelomično učitan dokument - + Skip recomputes Preskoči recomputes - + Enable or disable recomputations of document Omogućavanje ili onemogućavanje recomputations dokumenta - + Allow partial recomputes Djelomično omogući preračunavanje - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Omogućite ili onemogućite ponovno računanje objekta uređivanja kada je omogućeno 'preskoči ponovno računanje' - + Mark to recompute Označi za preračunaj - + Mark this object to be recomputed Označi ovaj objekt da se preračuna - + Recompute object Ponovno računanje objekta - + Recompute the selected object Ponovno računanje odabranog objekta - + (but must be executed) (ali mora biti izvršen) - + %1, Internal name: %2 %1, Interni naziv: %2 @@ -7778,14 +7756,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Neispravan unos - - + + Input in line %1 is not a number Ono što se umeće u liniju %1 nije broj @@ -7793,47 +7771,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Pogled hijerarhije - + Tasks Zadaci - + Property view Prikaz svojstava - + Selection view Pregled selekcije - + Task List Popis zadataka - + Model Model - + DAG View DAG pogled - + Report view Pregled izvještaja - + Python console Python konzola @@ -7873,45 +7851,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Nepoznata vrsta datoteke - - + + Cannot open unknown filetype: %1 Ne mogu otvoriti nepoznatu vrstu datoteke: %1 - + Export failed Izvoz neuspješan - + Cannot save to unknown filetype: %1 Ne mogu spremiti nepoznatu vrstu datoteke: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Greška kod promjena radne površine - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ovaj sustav radi OpenGL %1.%2. FreeCAD zahtijeva OpenGL 2.0 ili noviji. Po potrebi nadogradite grafički upravljački program i/ili karticu. - + Invalid OpenGL Version Pogrešna OpenGL Verzija @@ -7962,7 +7966,7 @@ Do you want to specify another directory? Izvoz PDF ... - + Unsaved document Nespremljeni dokument @@ -7974,43 +7978,43 @@ Do you want to specify another directory? - + Delete failed Brisanje nije uspjelo - + Dependency error Pogreška ovisnosti - + Copy selected Kopira odabrano - + Copy active document Kopira aktivni dokument - + Copy all documents Kopira sve dokumente - + Paste Umetni - + Expression error Pogreška izraza - + Failed to parse some of the expressions. Please check the Report View for more details. Analiza nekih izraza nije uspjela. @@ -8018,7 +8022,7 @@ Molimo provjerite Pregled izvještaja za više pojedinosti. - + Failed to paste expressions Umetanje izraza nije uspjelo @@ -8256,7 +8260,7 @@ Do you want to continue? Previše otvorenih nenametljivih obavijesti. Obavijesti se izostavljaju! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8265,46 +8269,46 @@ Do you want to continue? - + Are you sure you want to continue? Jeste li sigurni da želite nastaviti? - + Please check report view for more... Molimo provjerite prikaz izvješća za više ... - + Physical path: Fizički put: - - + + Document: Dokument: - - + + Path: Put: - + Identical physical path Identičan fizički put - + Could not save document Ne mogu spremiti dokument - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8317,105 +8321,105 @@ Would you like to save the file with a different name? Želite li datoteku spremiti pod drugim imenom? - - - + + + Saving aborted Spremanje prekinuto - + Save dependent files Spremite ovisne datoteke - + The file contains external dependencies. Do you want to save the dependent files, too? Datoteka sadrži vanjske ovisnosti. Želite li spremiti i ovisne datoteke? - - + + Saving document failed Spremanje dokumenta nije uspjelo - + Save document under new filename... Spremi dokument pod novim imenom ... - - + + Save %1 Document Spremi %1 dokument - + Document Dokument - - + + Failed to save document Spremanje dokumenta nije uspjelo - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenti sadrže cikličke ovisnosti. Želite li ih još spremiti? - + Save a copy of the document under new filename... Spremanje kopije dokumenta pod novi naziv datoteke... - + %1 document (*.FCStd) %1 dokument (*.FCStd) - + Document not closable Dokument nije moguće zatvoriti - + The document is not closable for the moment. Dokument trenutno nije moguće zatvoriti. - + Document not saved Dokument nije spremljen - + The document%1 could not be saved. Do you want to cancel closing it? Dokument%1 nije bilo moguće spremiti. Želite li otkazati zatvaranje? - + Undo Poništi zadnju promjenu - + Redo Vrati - + There are grouped transactions in the following documents with other preceding transactions U sljedećim dokumentima su grupirane transakcije s ostalim prethodnim transakcijama - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8489,12 +8493,12 @@ Odaberite "Prekini" za prekid Opcije ... - + Out of memory Bez memorije - + Not enough memory available to display the data. Nema dovoljno dostupne memorije za prikaz podataka. @@ -8510,7 +8514,7 @@ Odaberite "Prekini" za prekid Ne mogu pronaći datoteku %1 niti u %2 niti u %3 - + Navigation styles Načini navigacije @@ -8526,32 +8530,32 @@ Odaberite "Prekini" za prekid Želite li zatvoriti ovaj dijalog? - + Do you want to save your changes to document '%1' before closing? Želite li spremiti promjene u dokumentu '%1' prije zatvaranja? - + Do you want to save your changes to document before closing? Želite li spremiti promjene u dokumentu prije zatvaranja? - + If you don't save, your changes will be lost. Ako ne spremite, vaše promjene bit će izgubljene. - + Apply answer to all Primijenite odgovor na sve - + %1 Document(s) not saved %1 dokument(a) nije spremljeno - + Some documents could not be saved. Do you want to cancel closing? Neke dokumente nije bilo moguće spremiti. Želite li otkazati zatvaranje? @@ -8688,8 +8692,8 @@ podcrtavanje, ne smije se započeti s znamenkom. Nije moguće dodati svojstvo u '%1':%2 - - + + Drag & drop failed Povlačenje i ispuštanje nije uspjelo @@ -8984,12 +8988,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Nije dopušteno: - + Selection not allowed by filter Izbor nije dozvoljen kod ovog filtera @@ -9077,13 +9081,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Poravnavanje... - - + + Align the selected objects Poravnaj odabrane objekte @@ -9369,17 +9373,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Uklj/isklj Način ur&eđivanja - + Toggles the selected object's edit mode Uključuje ili isključuje mod rada na odabranom objektu - + Activates or Deactivates the selected object's edit mode Aktivira ili deaktivira mod uređivanja odabranih objekata @@ -9411,13 +9415,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Radnje izražavanja - - + + Actions that apply to expressions Radnje koje se primjenjuju na izraze @@ -9883,7 +9887,7 @@ underscore, and must not start with a digit. Kreira novi prazni dokument - + Unnamed Neimenovano @@ -9981,13 +9985,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Postavljanje... - - + + Place the selected objects Postavlja odabrane objekte @@ -10129,13 +10133,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Osvježi - - + + Recomputes the current active document Ponovno proračunava trenutni aktivni dokument @@ -10479,13 +10483,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformacija ... - - + + Transform the geometry of selected objects Preobraziti geometriju odabranih objekata @@ -10493,13 +10497,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transformiraj - - + + Transform the selected object in the 3d view Transformiraj selektirani objekt u 3D pogledu @@ -11359,7 +11363,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11370,7 +11374,7 @@ Jeste li sigurni da želite nastaviti? - + Object dependencies Zavisnosti objekta @@ -11483,7 +11487,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12255,8 +12259,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Nastala je greška - pogledaj Pregled izvješća za više informacija @@ -13027,65 +13031,40 @@ od Python konzole na ploču prikaza izvješća Izvori Svjetla - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Izvori svjetla - + Light source Izvor svjetla - + Intensity Intenzitet - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Smjer - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13496,12 +13475,12 @@ Miš za prolaz, ESC za prekid StdCmdProperties - + Properties Svojstva - + Show the property view, which displays the properties of the selected object. Prikaži panel svojstava koji prikazuje svojstva odabranog objekta. diff --git a/src/Gui/Language/FreeCAD_hu.ts b/src/Gui/Language/FreeCAD_hu.ts index 306dd99beb..b4da960827 100644 --- a/src/Gui/Language/FreeCAD_hu.ts +++ b/src/Gui/Language/FreeCAD_hu.ts @@ -91,17 +91,17 @@ Szerkesztés - + Import Importálás - + Delete Törlés - + Paste expressions Kifejezések beszúrása @@ -156,8 +156,7 @@ Igazít - - + Placement Elhelyezés @@ -425,42 +424,42 @@ EditMode - + Default Alapértelmezett - + The object will be edited using the mode defined internally to be the most appropriate for the object type A tárgy szerkesztése a belsőleg meghatározott, az tárgy típusnak legmegfelelőbb módban történik - + Transform Átalakítás - + The object will have its placement editable with the Std TransformManip command A tárgy elhelyezése az Std TransformManip paranccsal lesz szerkeszthető - + Cutting Vágás - + This edit mode is implemented as available but currently does not seem to be used by any object Ez a szerkesztési mód elérhető, de jelenleg úgy tűnik, hogy egyetlen tárgy sem használja - + Color Szín - + The object will have the color of its individual faces editable with the Part FaceAppearances command Az adott tárgy egyes felületeinek színe az Alkatrész FaceAppearances paranccsal lesz szerkeszthető @@ -1994,7 +1993,7 @@ Esetleg fájl jogosultsági hiba? % - % + % @@ -3903,7 +3902,7 @@ Használhatja az űrlapot is: Gipsz Jakab <gipsz@jakab.hu> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigáció @@ -3963,99 +3962,99 @@ Használhatja az űrlapot is: Gipsz Jakab <gipsz@jakab.hu> Forgatás a legközelebbire - + Font name of the navigation cube Navigációs kocka betű neve - + Default Alapértelmezett - + Cube size Kocka méret - + Size of the navigation cube Navigációs kocka mérete - + Opacity when inactive Átlátszatlanság inaktív állapotban - + Opacity of the navigation cube when not focused A navigációs kocka átlátszatlansága, amikor nincs fókuszálva - + Color Szín - + Base color for all elements Alapszín minden elemnek - + Rotation center indicator Forgatási középpont kijelző - + Sphere size Gömb méret - + Color and transparency Szín és átlátszóság - + The size of the rotation center indicator A forgásközéppont-jelző mérete - + The color of the rotation center indicator A forgásközéppont-jelző színe - + 3D Navigation 3D-s navigáció - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Felsorolja az egérgomb konfigurációját az egyes kijelölt navigációs beállításokhoz. Jelöljön ki egy beállítást, majd nyomja meg a gombot a beállítások megtekintéséhez. - + Mouse... Egér ... - + Navigation settings set A navigációs sáv beállításai mentésre kerültek - + Orbit style Orbit stílus - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4066,104 +4065,104 @@ Forgóasztal: az alkatrészt a z-tengely körül forgatják (korlátozott tengel Szabad forgóasztal: az alkatrész a z tengely körül forog. - + Turntable Fordítótábla - + Trackball Trackball - + Free Turntable Forgóasztal - + Rotation mode Elforgatási mód - + Rotations in 3D will use current cursor position as center for rotation A 3D-ben való elforgatás az aktuális kurzorpozíciót fogja használni forgatási központként - + Window center Az ablak közepére - + Drag at cursor Húzás a kurzornál - + Object center A tárgy központba - + Default camera orientation Szabványos kamerabeállítás - + Default camera orientation when creating a new document or selecting the home view Az új dokumentumok szabványos kamera tájolása vagy az otthoni nézet kiválasztásakor - + Camera zoom Nagyítás a nézeten - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Beállítja az új dokumentumok kameranagyítását. Az érték a képernyőn elférő gömb átmérője. - + mm mm - + Animations Animációk - + Enable spinning animations that are used in some navigation styles after dragging Egyes navigációs stílusokban használt pörgő animációk engedélyezése húzás után - + Enable spinning animations Pörgő animáció engedélyezése - + Duration of navigation animations that have a fixed duration A rögzített időtartamú navigációs animációk időtartama - + Animation duration Animáció hossza - + The duration of navigation animations in milliseconds A navigációs animációk időtartama milliszekundumban kifejezve - + Zoom step Nagyítási lépték @@ -4173,34 +4172,34 @@ Az érték a képernyőn elférő gömb átmérője. Betűtípus neve - + Zoom operations will be performed at position of mouse pointer A nagyítási műveleteket az egérmutató helyén hajtják végre - + Zoom at cursor Kurzorra nagyítás - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Mennyire nagyítson. Az '1' nagyítási lépés minden nagyítási lépésnél 7,5-ös tényezőt jelent. - + Direction of zoom operations will be inverted A nagyítási műveletek iránya megfordul - + Invert zoom Zoomolás megfordítása - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4209,7 +4208,7 @@ Csak a kézmozdulat-navigációs stílusra vonatkozik. Ez a beállítás nem tiltja le az egér megdöntése beállítást. - + Disable touchscreen tilt gesture Érintőképernyős döntés kikapcsolása @@ -4677,7 +4676,7 @@ Az előnyben részesített rendszer az általános beállításokban beállítot Gui::Dialog::DockablePlacement - + Placement Elhelyezés @@ -5263,32 +5262,17 @@ Az 'Állapot' oszlop tájékoztatja a visszaállítás sikerességéről.Alaphelyzetbe állítása - - OK - OK - - - - Close - Bezárás - - - - Apply - Alkalmaz - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Kérjük, válasszon 1, 2 vagy 3 pontot ennek a gombnak a megnyomása előtt. Egy pont lehet a végponton, felületen vagy élen. Ha egy felületre vagy élre használja a pontot az egér helyzetének pontja lesz a felület vagy él mentén. Ha 1 pontot választ ki akkor az az elforgatás középpontját határozza meg. 2 pont kijelölésekor a két pont közti lesz az elforgatás középpontja, és egy új egyéni tengely jön létre, ha szükséges. Ha 3 pontot jelöltünk az első pont lesz az elforgatás középpontja, és azon a vektoron fekszik, mely síkot a 3 pont alapértelmezés meghatározza. Néhány távolság és szög információt a jelentésben tekinthet meg, ami hasznos lehet az tárgyak igazításához. Az Ön kényelme érdekében Shift + kattintás használata esetén a megfelelő távolság vagy szög másolódik a vágólapra. - + Incorrect quantity Hibás mennyiség - + There are input fields with incorrect input, please ensure valid placement values! Helytelen beviteli mezők, ellenőrizze az értékek elhelyezkedését! @@ -5427,13 +5411,7 @@ Az 'Állapot' oszlop tájékoztatja a visszaállítás sikerességéről.Gui::Dialog::Transform - - Cancel - Mégse - - - - + Transform Átalakítás @@ -5824,13 +5802,13 @@ El akarja menteni a változásokat? Gui::FileChooser - - + + Select a file Válasszon ki egy fájlt - + Select a directory Válasszon ki egy könyvtárat @@ -5838,13 +5816,13 @@ El akarja menteni a változásokat? Gui::FileDialog - + Save as Mentés másként - - + + Open Megnyit @@ -5852,12 +5830,12 @@ El akarja menteni a változásokat? Gui::FileOptionsDialog - + Extended Kiterjesztett - + All files (*.*) Minden fájl (*.*) @@ -6034,7 +6012,7 @@ El akarja menteni a változásokat? Gui::LabelEditor - + List Lista @@ -6151,57 +6129,57 @@ El akarja menteni a változásokat? Gui::MainWindow - + Dimension Dimenzió - + Ready Kész - + Close All Minden bezárása - - - + + + Toggles this toolbar Eszköztár megjelenítése - - - + + + Toggles this dockable window Dokkolható ablak megjelenítése - + WARNING: This is a development version. FIGYELMEZTETÉS: Ez egy fejlesztői változat. - + Please do not use it in a production environment. Kérjük, ne használja éles környezetben. - - + + Unsaved document Nem mentett dokumentum - + The exported object contains external link. Please save the documentat least once before exporting. Az exportált tárgy külső összekötést tartalmaz. Exportálás előtt legalább egyszer mentse a dokumentumot. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Külső tárgyak összekötéséhez a dokumentumot legalább egyszer menteni kell. @@ -6793,12 +6771,12 @@ Ki szeretne lépni az adatok mentése nélkül? Gui::SelectModule - + Select module Modul választás - + Open %1 as Megnyitás mint %1 @@ -7332,7 +7310,7 @@ Meg szeretne adni egy másik könyvtárat? Gui::TreeDockWidget - + Tree view Fanézet @@ -7340,7 +7318,7 @@ Meg szeretne adni egy másik könyvtárat? Gui::TreePanel - + Search Keresés @@ -7398,148 +7376,148 @@ Meg szeretne adni egy másik könyvtárat? Csoport - + Labels & Attributes Cimkék & Tulajdonságok - + Description Leírás - + Internal name Belső név - + Show items hidden in tree view Fa nézetben elrejtett elemek megjelenítése - + Show items that are marked as 'hidden' in the tree view Fa nézetben a "rejtett"-ként jelölt elemek megjelenítése - + Toggle visibility in tree view Láthatóság váltása a fa nézetben - + Toggles the visibility of selected items in the tree view Fa nézetben a kiválasztott elemek láthatóságának váltása - + Create group Csoport létrehozása - + Create a group Új csoport létrehozása - - + + Rename Átnevezés - + Rename object Tárgy átnevezése - + Finish editing Szerkesztés befejezése - + Finish editing object Objektumszerkesztés befejezése - + Add dependent objects to selection Függő tárgyak hozzáadása a kijelöléshez - + Adds all dependent objects to the selection Összes függőben lévő tárgy hozzáadása a kijelöléshez - + Close document Dokumentum bezárása - + Close the document A dokumentum bezárása - + Reload document Dokumentum újratöltése - + Reload a partially loaded document Részlegesen betöltött dokumentum újratöltése - + Skip recomputes Újraszámítás átugrása - + Enable or disable recomputations of document Dokumentum újraszámításának engedélyezése vagy letiltása - + Allow partial recomputes Részleges újraszámítás engedélyezése - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Szerkesztési tárgy újraszámításának engedélyezése vagy letiltása, ha a 'újraszámítás kihagyása' engedélyezve van - + Mark to recompute Jelölje, újraszámításhoz - + Mark this object to be recomputed Jelölje ezt az objektumot az újraszámoláshoz - + Recompute object Tárgy újraszámítás - + Recompute the selected object A kijelölt tárgy újraszámítása - + (but must be executed) (de végre kell hajtanom) - + %1, Internal name: %2 %1, Belső név: %2 @@ -7736,14 +7714,14 @@ Meg szeretne adni egy másik könyvtárat? PropertyListDialog - - + + Invalid input Érvénytelen adat - - + + Input in line %1 is not a number Az %1 tételsor nem szám @@ -7751,47 +7729,47 @@ Meg szeretne adni egy másik könyvtárat? QDockWidget - + Tree view Fanézet - + Tasks Feladatok - + Property view Tulajdonságok nézet - + Selection view Részlet nézet - + Task List Feladat lista - + Model Modell - + DAG View DAG nézet - + Report view Jelentés nézet - + Python console Python konzol @@ -7831,45 +7809,71 @@ Meg szeretne adni egy másik könyvtárat? Python - - - + + + Unknown filetype Ismeretlen filetípus - - + + Cannot open unknown filetype: %1 Nem megnyitható fájltípus: %1 - + Export failed Exportálás sikertelen - + Cannot save to unknown filetype: %1 Nem menthető fájltípus: %1 - + + Recomputation required + Újraszámítás szükséges + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Egyes dokumentum(ok) migrációs célú újraszámítást igényelnek. A kompatibilitási problémák elkerülése érdekében erősen ajánlott minden módosítás előtt újraszámítást végezni. + +Most szeretné az újraszámítást elvégezni? + + + + Recompute error + Újraszámítási hiba + + + + Failed to recompute some document(s). +Please check report view for more details. + Néhány dokumentum(ok) újraszámítása sikertelen. +További részletekért kérjük, nézze meg a jelentés nézetet. + + + Workbench failure Munkafelület hiba - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ezen a rendszeren OpenGL %1.%2 fut. A FreeCAD-hez OpenGL 2.0 vagy magasabb verziószám szükséges. Kérjük, szükség szerint frissítse grafikus illesztőprogramját és/vagy kártyáját. - + Invalid OpenGL Version Érvénytelen OpenGL verzió @@ -7920,7 +7924,7 @@ Meg szeretne adni egy másik könyvtárat? PDF exportálása... - + Unsaved document Nem mentett dokumentum @@ -7931,50 +7935,50 @@ Meg szeretne adni egy másik könyvtárat? Az exportált tárgy külső összekötést tartalmaz. Exportálás előtt legalább egyszer mentse a dokumentumot. - + Delete failed Törlés sikertelen - + Dependency error Függőség hiba - + Copy selected Kijelöltek másolása - + Copy active document Aktív dokumentum másolása - + Copy all documents Összes dokumentum másolása - + Paste Beillesztés - + Expression error Kifejezés hiba - + Failed to parse some of the expressions. Please check the Report View for more details. Nem sikerült elemezni néhány kifejezést. További részletekért tekintse meg a Jelentés nézetet. - + Failed to paste expressions Nem sikerült beilleszteni a kifejezéseket @@ -8213,7 +8217,7 @@ Folytatni kívánja? Túl sok megnyitott nem zavaró értesítés. Az értesítések elmaradnak! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8222,44 +8226,44 @@ Folytatni kívánja? - + Are you sure you want to continue? Biztosan folytatja? - + Please check report view for more... Kérjük, ellenőrizze a jelentés nézetet továbbiakért... - + Physical path: Fizikai útvonal: - - + + Document: Dokumentum: - - + + Path: Útvonalak: - + Identical physical path Azonos fizikai elérési út - + Could not save document Nem lehet menteni a dokumentumot - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8272,102 +8276,102 @@ Would you like to save the file with a different name? Szeretné menteni a fájlt egy másik névvel? - - - + + + Saving aborted Mentés megszakítva - + Save dependent files Függő fájlok mentése - + The file contains external dependencies. Do you want to save the dependent files, too? A fájl külső függőségeket tartalmaz. Menti a függő fájlokat is? - - + + Saving document failed Dokumentum mentése sikertelen - + Save document under new filename... Dokumentum mentése új fájlnéven... - - + + Save %1 Document A(z) %1 dokumentum mentése - + Document Dokumentum - - + + Failed to save document Nem sikerült menteni a dokumentumot - + Documents contains cyclic dependencies. Do you still want to save them? A dokumentumok ciklikus függőségeket tartalmaznak. Még mindig menteni szeretné? - + Save a copy of the document under new filename... Menti új fájlnév alatt a dokumentum egy másolatát... - + %1 document (*.FCStd) %1 dokumentum (*.FCStd) - + Document not closable A dokumentum nem zárható be - + The document is not closable for the moment. A dokumentum nem zárható be pillanatnyilag. - + Document not saved Dokumentum nincs mentve - + The document%1 could not be saved. Do you want to cancel closing it? A dokumentum%1 nem menthető. Nem szeretné bezárni? - + Undo Visszavonás - + Redo Ismétlés - + There are grouped transactions in the following documents with other preceding transactions A következő dokumentumokban csoportosított tranzakciók vannak más korábbi tranzakciókkal - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8440,12 +8444,12 @@ A 'Megszakítás' választásával megszakít Beállítások... - + Out of memory Kevés a memória - + Not enough memory available to display the data. Nincs elég memória az adatok megjelenítéséhez. @@ -8461,7 +8465,7 @@ A 'Megszakítás' választásával megszakít Nem talál fájlt %1 -ben %2 -ben, sem %3 -ban - + Navigation styles Navigációs stílusok @@ -8477,32 +8481,32 @@ A 'Megszakítás' választásával megszakít Szeretné bezárni a párbeszédpanelt? - + 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? - + Do you want to save your changes to document before closing? Menti a dokumentum módosításait bezárás előtt? - + If you don't save, your changes will be lost. Ha nem menti, a módosítások elvesznek. - + Apply answer to all Válasz alkalmazása az összesre - + %1 Document(s) not saved %1 Dokumentum(ok) nincsen(ek) mentve - + Some documents could not be saved. Do you want to cancel closing? Egyes dokumentumok nem menthetők. Nem szeretné bezárni? @@ -8639,8 +8643,8 @@ underscore, and must not start with a digit. Nem sikerült tulajdonságot hozzáadni a következőhöz: '%1': %2 - - + + Drag & drop failed A fogd & vidd sikertelen @@ -8923,9 +8927,7 @@ az aktuális példány elveszik. The property name must only contain alpha numericals, underscore, and must not start with a digit. - A tulajdonság neve csak alfanumerikus számokat, aláhúzást -tartalmazhat, -nem kezdődhet számmal. + A tulajdonság neve csak alfanumerikus számokat, aláhúzást tartalmazhat, nem kezdődhet számmal. @@ -8938,12 +8940,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Nem engedélyezett: - + Selection not allowed by filter Kiválasztást nem engedi a szűrő @@ -9031,13 +9033,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Igazítás... - - + + Align the selected objects Kiválasztott tárgyak igazítása @@ -9321,17 +9323,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Szerkesztési módra váltás - + Toggles the selected object's edit mode A kiválasztott tárgy szerkesztés módjának kapcsolása - + Activates or Deactivates the selected object's edit mode Be- vagy kikapcsolja a kijelölt tárgy szerkesztés módját @@ -9363,13 +9365,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Kifejezési műveletek - - + + Actions that apply to expressions Kifejezésekre vonatkozó műveletek @@ -9830,7 +9832,7 @@ underscore, and must not start with a digit. Új üres munkalap létrehozása - + Unnamed Névtelen @@ -9928,13 +9930,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Elhelyezés ... - - + + Place the selected objects A kijelölt objektumok helye @@ -10072,13 +10074,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh Frissítés - - + + Recomputes the current active document Újraszámítja a jelenlegi aktív dokumentumot @@ -10422,13 +10424,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Átalakítás... - - + + Transform the geometry of selected objects A kijelölt objektum geometriájának átalakítása @@ -10436,13 +10438,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Átalakítás - - + + Transform the selected object in the 3d view Átalakítja a 3d-s nézetben lévő kijelölt objektumot @@ -11298,7 +11300,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11309,7 +11311,7 @@ Biztosan folytatja? - + Object dependencies Objektumfüggőségek @@ -11421,7 +11423,7 @@ Menti most a dokumentumot? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12189,8 +12191,8 @@ Jelenleg a rendszerében a következő munkafelületek vannak:</p></bod Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Hiba történt -- lásd a jelentés nézetet az információért @@ -12948,65 +12950,40 @@ a Python konzolról a Jelentés nézet panelre Fényesforrások - + + Push In + Nagyítás + + + + Pull Out + Kicsinyítés + + + Light sources Fényforrások - + Light source Fény forrás - + Intensity Intenzitás - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Állítsa be az irányított fényforrás irányát a fogantyú egérrel húzásával, vagy használja a pörgő dobozokat a finomhangoláshoz. - + Direction Irány - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13416,12 +13393,12 @@ A teljes hely kitöltéséhez állítsa 0-ra. StdCmdProperties - + Properties Tulajdonságok - + Show the property view, which displays the properties of the selected object. A tulajdonságnézet megjelenítése, amely a kiválasztott tárgy tulajdonságait jeleníti meg. diff --git a/src/Gui/Language/FreeCAD_it.ts b/src/Gui/Language/FreeCAD_it.ts index c4a8c63f9d..00abd782db 100644 --- a/src/Gui/Language/FreeCAD_it.ts +++ b/src/Gui/Language/FreeCAD_it.ts @@ -91,17 +91,17 @@ Modifica - + Import Importa - + Delete Elimina - + Paste expressions Incolla espressioni @@ -156,8 +156,7 @@ Allinea - - + Placement Posizionamento @@ -425,42 +424,42 @@ EditMode - + Default Predefinito - + The object will be edited using the mode defined internally to be the most appropriate for the object type L'oggetto verrà modificato usando la modalità definita internamente per essere il più appropriato per il tipo di oggetto - + Transform Trasforma - + The object will have its placement editable with the Std TransformManip command L'oggetto avrà il suo posizionamento modificabile con il comando Std TransformManip - + Cutting Taglio - + This edit mode is implemented as available but currently does not seem to be used by any object Questa modalità di modifica è disponibile, ma al momento non sembra essere utilizzata da nessun oggetto - + Color Colore - + The object will have the color of its individual faces editable with the Part FaceAppearances command L'oggetto avrà il colore delle singole facce modificabile con il comando Part FaceAppearances @@ -1996,7 +1995,7 @@ Forse un errore di autorizzazione del file? % - % + % @@ -3904,7 +3903,7 @@ Si può anche utilizzare il modulo: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigazione @@ -3964,99 +3963,99 @@ Si può anche utilizzare il modulo: John Doe <john@doe.com> Ruota verso il più vicino - + Font name of the navigation cube Carattere del cubo di navigazione - + Default Predefinito - + Cube size Dimensione cubo - + Size of the navigation cube Dimensione del cubo di navigazione - + Opacity when inactive Opacità quando inattivo - + Opacity of the navigation cube when not focused Opacità del cubo di navigazione quando non focalizzato - + Color Colore - + Base color for all elements Colore di base per tutti gli elementi - + Rotation center indicator Indicatore centro rotazione - + Sphere size Dimensione della sfera - + Color and transparency Colore e trasparenza - + The size of the rotation center indicator La dimensione dell'indicatore del centro di rotazione - + The color of the rotation center indicator Il colore dell'indicatore del centro di rotazione - + 3D Navigation Navigazione 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Elenca le configurazioni dei pulsanti del mouse per ogni impostazione di navigazione selezionata. Seleziona un set e poi premi il pulsante per visualizzare le configurazioni indicate. - + Mouse... Mouse... - + Navigation settings set Impostazioni di navigazione - + Orbit style Stile orbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4067,104 +4066,104 @@ Giradischi: la parte sarà ruotata attorno all'asse z (con assi vincolati). Giradischi Libero: la parte sarà ruotata attorno all'asse z. - + Turntable Piatto - + Trackball Trackball - + Free Turntable Piatto Libero - + Rotation mode Modalità rotazione - + Rotations in 3D will use current cursor position as center for rotation Le rotazioni in 3D utilizzeranno la posizione corrente del cursore come centro per la rotazione - + Window center Centro finestra - + Drag at cursor Trascina al cursore - + Object center Centro oggetto - + Default camera orientation Orientamento predefinito della camera - + Default camera orientation when creating a new document or selecting the home view Orientamento predefinito della fotocamera quando si crea un nuovo documento o si seleziona la vista iniziale - + Camera zoom Zoom fotocamera - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Imposta lo zoom della fotocamera per i nuovi documenti. Il valore è il diametro della sfera da adattare allo schermo. - + mm mm - + Animations Animazioni - + Enable spinning animations that are used in some navigation styles after dragging Abilita le animazioni di rotazione usate in alcuni stili di navigazione dopo il trascinamento - + Enable spinning animations Abilita animazioni di rotazione - + Duration of navigation animations that have a fixed duration Durata delle animazioni di navigazione che hanno una durata fissa - + Animation duration Durata animazione - + The duration of navigation animations in milliseconds La durata delle animazioni di navigazione in millisecondi - + Zoom step Passo zoom @@ -4174,34 +4173,34 @@ Il valore è il diametro della sfera da adattare allo schermo. Tipo di carattere - + Zoom operations will be performed at position of mouse pointer Le operazioni di zoom verranno eseguite sulla posizione del puntatore del mouse - + Zoom at cursor Ingrandimento al cursore - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Quanto verrà ingrandito. Il passo di zoom di '1' significa un fattore di 7.5 per ogni fase di zoom. - + Direction of zoom operations will be inverted La direzione delle operazioni di zoom verrà invertita - + Invert zoom Inverti lo zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4210,7 +4209,7 @@ Interessa solo lo stile gesture. Questa impostazione non disabilitata l'inclinazione tramite mouse. - + Disable touchscreen tilt gesture Disattiva l'inclinazione dai gesti del touch screen @@ -4680,7 +4679,7 @@ Il sistema di preferenza è quello impostato nelle preferenze generali. Gui::Dialog::DockablePlacement - + Placement Posizionamento @@ -5264,32 +5263,17 @@ The 'Status' column shows whether the document could be recovered. Ripristina - - OK - OK - - - - Close - Chiudi - - - - Apply - Applica - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Selezionare 1, 2 o 3 punti prima di fare clic su questo pulsante. Il punto può essere su un vertice, una faccia o un bordo. Se viene scelto su una faccia o bordo il punto utilizzato è il punto in corrispondenza della posizione del mouse lungo la faccia o il bordo. Se viene selezionato solo 1 punto, esso è usato come centro di rotazione. Se sono selezionati 2 punti, il centro di rotazione è il punto medio tra di essi e viene creato un nuovo asse personalizzato, se necessario. Se vengono selezionati 3 punti, il primo punto diventa il centro di rotazione e giace sul vettore che è normale rispetto al piano definito dai 3 punti. Alcune informazioni sulla distanza e sull'angolo sono fornite nella vista Report, questo può essere utile quando si allineano gli oggetti. Per praticità quando si usa Maiusc + clic, la distanza o l'angolo appropriati vengono copiati negli Appunti. - + Incorrect quantity Quantità non corretta - + There are input fields with incorrect input, please ensure valid placement values! Ci sono dei campi di input con valori errati, assicurarsi che i valori di posizionamento siano validi! @@ -5428,13 +5412,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Annulla - - - - + Transform Trasforma @@ -5825,13 +5803,13 @@ Si desidera salvare le modifiche? Gui::FileChooser - - + + Select a file Seleziona un file - + Select a directory Seleziona una cartella @@ -5839,13 +5817,13 @@ Si desidera salvare le modifiche? Gui::FileDialog - + Save as Salva con nome - - + + Open Apri @@ -5853,12 +5831,12 @@ Si desidera salvare le modifiche? Gui::FileOptionsDialog - + Extended Esteso - + All files (*.*) Tutti i file (*.*) @@ -6035,7 +6013,7 @@ Si desidera salvare le modifiche? Gui::LabelEditor - + List Elenco @@ -6152,57 +6130,57 @@ Si desidera salvare le modifiche? Gui::MainWindow - + Dimension Dimensione - + Ready Pronto - + Close All Chiudi tutto - - - + + + Toggles this toolbar Nascondi questa barra degli strumenti - - - + + + Toggles this dockable window Nascondi questa finestra - + WARNING: This is a development version. ATTENZIONE: Questa è una versione di sviluppo. - + Please do not use it in a production environment. Non utilizzare in un ambiente di produzione. - - + + Unsaved document Documento non salvato - + The exported object contains external link. Please save the documentat least once before exporting. L'oggetto esportato contiene un link esterno. Salvare il documento almeno una volta prima di esportarlo. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Per collegare oggetti esterni, il documento deve essere salvato almeno una volta. @@ -6791,12 +6769,12 @@ Vuoi uscire senza salvare i tuoi dati? Gui::SelectModule - + Select module Seleziona il modulo - + Open %1 as Apri %1 come @@ -7332,7 +7310,7 @@ Vuoi specificare un'altra cartella? Gui::TreeDockWidget - + Tree view Struttura @@ -7340,7 +7318,7 @@ Vuoi specificare un'altra cartella? Gui::TreePanel - + Search Trova @@ -7398,148 +7376,148 @@ Vuoi specificare un'altra cartella? Gruppo - + Labels & Attributes Etichette & Attributi - + Description Descrizione - + Internal name Nome interno - + Show items hidden in tree view Mostra gli elementi nascosti nella vista ad albero - + Show items that are marked as 'hidden' in the tree view Mostra gli elementi contrassegnati come 'nascosti' nella vista ad albero - + Toggle visibility in tree view Commuta la visibilità nella vista ad albero - + Toggles the visibility of selected items in the tree view Commuta la visibilità degli elementi selezionati nella vista ad albero - + Create group Crea gruppo - + Create a group Crea un gruppo - - + + Rename Rinomina - + Rename object Rinomina oggetto - + Finish editing Completa la modifica - + Finish editing object Completa la modifica dell'oggetto - + Add dependent objects to selection Aggiungi oggetti dipendenti alla selezione - + Adds all dependent objects to the selection Aggiunge tutti gli oggetti dipendenti alla selezione - + Close document Chiudi il documento - + Close the document Chiude il documento - + Reload document Ricarica il documento - + Reload a partially loaded document Ricarica un documento caricato parzialmente - + Skip recomputes Salta il ricalcolo - + Enable or disable recomputations of document Abilita o disabilita il ricalcolo del documento - + Allow partial recomputes Consenti i ricalcoli parziali - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Abilita o disabilita il ricalcolo dell'oggetto in modifica quando 'salta il ricalcolo' è abilitato - + Mark to recompute Segna da ricalcolare - + Mark this object to be recomputed Contrassegna questo oggetto come oggetto da ricalcolare - + Recompute object Ricalcola l'oggetto - + Recompute the selected object Ricalcola l'oggetto selezionato - + (but must be executed) (ma deve essere eseguito) - + %1, Internal name: %2 %1, nome interno: %2 @@ -7736,14 +7714,14 @@ Vuoi specificare un'altra cartella? PropertyListDialog - - + + Invalid input Input non valido - - + + Input in line %1 is not a number Nella riga %1 non è stato inserito un numero @@ -7751,47 +7729,47 @@ Vuoi specificare un'altra cartella? QDockWidget - + Tree view Struttura - + Tasks Azioni - + Property view Proprietà - + Selection view Selezione - + Task List Elenco Attività - + Model Modello - + DAG View Vista DAG - + Report view Report - + Python console Console Python @@ -7831,45 +7809,71 @@ Vuoi specificare un'altra cartella? Python - - - + + + Unknown filetype Tipo di file sconosciuto - - + + Cannot open unknown filetype: %1 Non è possibile aprire il tipo di file sconosciuto: %1 - + Export failed Esportazione fallita - + Cannot save to unknown filetype: %1 Non è possibile salvare il tipo di file sconosciuto: %1 - + + Recomputation required + Richiesto il ricalcolo + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Alcuni documenti richiedono un ricalcolo a fini di migrazione. Per evitare problemi di compatibilità, è altamente consigliabile eseguire un calcolo prima di qualsiasi modifica. + +Vuoi ricalcolare adesso? + + + + Recompute error + Errore di ricalcolo + + + + Failed to recompute some document(s). +Please check report view for more details. + Impossibile recuperare alcuni documenti. +Si prega di controllare la visualizzazione dei report per maggiori dettagli. + + + Workbench failure Avaria ambiente - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Questo sistema sta eseguendo OpenGL %1.%2. FreeCAD richiede OpenGL 2.0 o superiore. Si prega di aggiornare il driver e/o la scheda grafica come richiesto. - + Invalid OpenGL Version Versione OpenGL Non Valida @@ -7920,7 +7924,7 @@ Vuoi specificare un'altra cartella? Esportazione PDF... - + Unsaved document Documento non salvato @@ -7931,50 +7935,50 @@ Vuoi specificare un'altra cartella? L'oggetto esportato contiene un link esterno. Salvare il documento almeno una volta prima di esportarlo. - + Delete failed Eliminazione non riuscita - + Dependency error Errore di dipendenza - + Copy selected Copia la selezione - + Copy active document Copia il documento attivo - + Copy all documents Copia tutti i documenti - + Paste Incolla - + Expression error Errore di espressione - + Failed to parse some of the expressions. Please check the Report View for more details. Impossibile analizzare alcune delle espressioni. Si prega di controllare la Vista Report per maggiori dettagli. - + Failed to paste expressions Impossibile incollare le espressioni @@ -8213,7 +8217,7 @@ Vuoi continuare? Troppe notifiche aperte non invasive. Le notifiche sono state omesse! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8222,44 +8226,44 @@ Vuoi continuare? - + Are you sure you want to continue? Sei sicuro di voler continuare? - + Please check report view for more... Per favore controlla la visualizzazione dei report per saperne di più... - + Physical path: Percorso fisico: - - + + Document: Documento: - - + + Path: Percorso: - + Identical physical path Percorso fisico identico - + Could not save document Impossibile salvare il documento - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8272,102 +8276,102 @@ Would you like to save the file with a different name? Vuoi salvare il file con un nome diverso? - - - + + + Saving aborted Salvataggio annullato - + Save dependent files Salva i file dipendenti - + The file contains external dependencies. Do you want to save the dependent files, too? Il file contiene delle dipendenze esterne. Salvare anche i file dipendenti? - - + + Saving document failed Salvataggio del documento non riuscito - + Save document under new filename... Salva il documento con nome... - - + + Save %1 Document Salva il documento %1 - + Document Documento - - + + Failed to save document Impossibile salvare il documento - + Documents contains cyclic dependencies. Do you still want to save them? I documenti contengono delle dipendenze cicliche. Volete ancora salvarli? - + Save a copy of the document under new filename... Salvare una copia del documento con un nuovo nome di file... - + %1 document (*.FCStd) Documento %1 (*.FCStd) - + Document not closable Impossibile chiudere il documento - + The document is not closable for the moment. Impossibile chiudere il documento al momento. - + Document not saved Documento non salvato - + The document%1 could not be saved. Do you want to cancel closing it? Il documento %1 non può essere salvato. Vuoi annullare la chiusura? - + Undo Annulla - + Redo Ripristina - + There are grouped transactions in the following documents with other preceding transactions Nei seguenti documenti ci sono transazioni raggruppate con altre transazioni precedenti - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8440,12 +8444,12 @@ Scegli 'Annulla' per interrompere Opzioni... - + Out of memory Memoria insufficiente - + Not enough memory available to display the data. Memoria disponibile insufficiente per visualizzare i dati. @@ -8461,7 +8465,7 @@ Scegli 'Annulla' per interrompere Impossibile trovare il file %1 nè in %2 nè in %3 - + Navigation styles Stile di navigazione @@ -8477,32 +8481,32 @@ Scegli 'Annulla' per interrompere Vuoi chiudere questa finestra di dialogo? - + Do you want to save your changes to document '%1' before closing? Si desidera salvare le modifiche apportate al documento '%1' prima di chiuderlo? - + Do you want to save your changes to document before closing? Salvare le modifiche apportate al documento prima di chiuderlo? - + If you don't save, your changes will be lost. Se non vengono salvate, le modifiche andranno perse. - + Apply answer to all Applica la risposta a tutti - + %1 Document(s) not saved %1 Documento(i) non salvato - + Some documents could not be saved. Do you want to cancel closing? Alcuni documenti non possono essere salvati. Vuoi annullare la chiusura? @@ -8639,8 +8643,8 @@ e sottolineato e non deve iniziare con un numero. Impossibile aggiungere la proprietà a '%1': %2 - - + + Drag & drop failed Trascinamento della selezione non riuscito @@ -8936,12 +8940,12 @@ underscore, e non deve iniziare con un numero. SelectionFilter - + Not allowed: Non consentito: - + Selection not allowed by filter Selezione non consentita dal filtro @@ -9029,13 +9033,13 @@ underscore, e non deve iniziare con un numero. StdCmdAlignment - + Alignment... Allineamento... - - + + Align the selected objects Allinea gli oggetti selezionati @@ -9319,17 +9323,17 @@ underscore, e non deve iniziare con un numero. StdCmdEdit - + Toggle &Edit mode Attiva/disattiva Modalità &modifica - + Toggles the selected object's edit mode Attiva/disattiva la modalità modifica per l'oggetto selezionato - + Activates or Deactivates the selected object's edit mode Attiva o disattiva la modalità di modifica dell'oggetto selezionato @@ -9361,13 +9365,13 @@ underscore, e non deve iniziare con un numero. StdCmdExpression - + Expression actions - Azioni rapide + Azioni espressione - - + + Actions that apply to expressions Azioni che si applicano alle espressioni @@ -9828,7 +9832,7 @@ underscore, e non deve iniziare con un numero. Crea un documento vuoto - + Unnamed Senza nome @@ -9926,13 +9930,13 @@ underscore, e non deve iniziare con un numero. StdCmdPlacement - + Placement... Posizionamento... - - + + Place the selected objects Posiziona gli oggetti selezionati @@ -10070,13 +10074,13 @@ underscore, e non deve iniziare con un numero. StdCmdRefresh - + &Refresh &Aggiorna - - + + Recomputes the current active document Ricalcola il documento attivo @@ -10420,13 +10424,13 @@ underscore, e non deve iniziare con un numero. StdCmdTransform - + Transform... Trasforma... - - + + Transform the geometry of selected objects Trasforma la geometria degli oggetti selezionati @@ -10434,13 +10438,13 @@ underscore, e non deve iniziare con un numero. StdCmdTransformManip - + Transform Trasforma - - + + Transform the selected object in the 3d view Trasforma l'oggetto selezionato nella vista 3D @@ -11296,7 +11300,7 @@ underscore, e non deve iniziare con un numero. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11307,7 +11311,7 @@ Sicuro di voler continuare? - + Object dependencies Dipendenze dell'oggetto @@ -11419,7 +11423,7 @@ Vuoi salvare il documento ora? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12187,8 +12191,8 @@ Attualmente, il tuo sistema ha i seguenti ambienti di lavoro:</p></body Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Si è verificato un errore -- vedere Report View per informazioni @@ -12947,65 +12951,40 @@ dalla console di Python al pannello vista Report Sorgenti Luminose - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Sorgenti luminose - + Light source Sorgente luminosa - + Intensity Intensità - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Regolare l'orientamento della sorgente luminosa direzionale trascinando la maniglia con il mouse o utilizzare le caselle di scelta rapida per la messa a punto. - + Direction Direzione - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13413,12 +13392,12 @@ the region are non-opaque. StdCmdProperties - + Properties Proprietà - + Show the property view, which displays the properties of the selected object. Mostra la vista proprietà, che visualizza le proprietà dell'oggetto selezionato. diff --git a/src/Gui/Language/FreeCAD_ja.ts b/src/Gui/Language/FreeCAD_ja.ts index d732c3db07..a45dfa4f4d 100644 --- a/src/Gui/Language/FreeCAD_ja.ts +++ b/src/Gui/Language/FreeCAD_ja.ts @@ -91,17 +91,17 @@ 編集 - + Import インポート - + Delete 削除 - + Paste expressions 式を貼り付け @@ -156,8 +156,7 @@ 整列 - - + Placement 配置 @@ -425,42 +424,42 @@ EditMode - + Default デフォルト - + The object will be edited using the mode defined internally to be the most appropriate for the object type オブジェクトは、オブジェクト型に最も適した、内部的に定義されたモードを使用して編集されます。 - + Transform 変換 - + The object will have its placement editable with the Std TransformManip command オブジェクトの配置は Std TransformManip コマンドで編集可能です。 - + Cutting 切断 - + This edit mode is implemented as available but currently does not seem to be used by any object この編集モードは利用可能な状態で実装されていますが、現在はどのオブジェクトでも使用されていないようです。 - + Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command オブジェクトはそれぞれの面の色を持ち、Part FaceAppearances コマンドで編集可能です。 @@ -1994,7 +1993,7 @@ Perhaps a file permission error? % - % + % @@ -3881,7 +3880,7 @@ John Doe <john@doe.com> 形式を使用することもできます。Gui::Dialog::DlgSettingsNavigation - + Navigation ナビゲーション @@ -3941,99 +3940,99 @@ John Doe <john@doe.com> 形式を使用することもできます。最も近い状態へ回転 - + Font name of the navigation cube ナビゲーションキューブで使用するフォント - + Default デフォルト - + Cube size キューブのサイズ - + Size of the navigation cube ナビゲーションキューブのサイズ - + Opacity when inactive 非アクティブ時の不透明度 - + Opacity of the navigation cube when not focused フォーカスされていない時のナビゲーションキューブの不透明度 - + Color - + Base color for all elements すべての要素の基本色 - + Rotation center indicator 回転中心表示 - + Sphere size 球体の大きさ - + Color and transparency 色と透明度 - + The size of the rotation center indicator 回転中心表示のサイズ - + The color of the rotation center indicator 回転中心表示の色 - + 3D Navigation 3Dナビゲーション - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. 選択したナビゲーション設定ごとにマウスボタン設定をリスト表示。 設定を選択し、ボタンを押すとその設定が表示されます。 - + Mouse... マウス... - + Navigation settings set ナビゲーション設定 - + Orbit style 軌道スタイル - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4044,104 +4043,104 @@ Free Turntable: the part will be rotated around the z-axis. フリーターンテーブル: Z軸周りにオブジェクトを回転 - + Turntable ターンテーブル - + Trackball トラックボール - + Free Turntable フリーターンテーブル - + Rotation mode 回転モード - + Rotations in 3D will use current cursor position as center for rotation 3D回転では現在のカーソル位置が回転中心として使用されます。 - + Window center ウィンドウの中央 - + Drag at cursor カーソル位置にドラッグ - + Object center オブジェクトの中央 - + Default camera orientation デフォルトのカメラの向き - + Default camera orientation when creating a new document or selecting the home view 新しいドキュメントを作成、またはホームビューを選択した場合のデフォルトのカメラの向き - + Camera zoom カメラのズーム - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. 新しいドキュメントのカメラズームを設定。 値は画面にちょうど収まる球の直径。 - + mm mm - + Animations アニメーション - + Enable spinning animations that are used in some navigation styles after dragging ドラッグ後に一部のナビゲーションスタイルで使用される回転アニメーションを有効にする - + Enable spinning animations 回転アニメーションを有効 - + Duration of navigation animations that have a fixed duration 固定時間のナビゲーションアニメーションの表示時間 - + Animation duration アニメーション速度 - + The duration of navigation animations in milliseconds ミリ秒単位でのナビゲーションアニメーションの速度 - + Zoom step ズーム量 @@ -4151,41 +4150,41 @@ The value is the diameter of the sphere to fit on the screen. フォント名 - + Zoom operations will be performed at position of mouse pointer ズーム操作はマウスポインタの位置で実行されます - + Zoom at cursor カーソルの位置にズーム - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. どの程度ズームを行うか。 ズーム量「1」はズーム 1 段階ごとに 7.5 倍することを意味します。 - + Direction of zoom operations will be inverted ズーム操作の方向を反転 - + Invert zoom ズームを反転 - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. ピンチズーム時のビューのチルトを防ぎます。ジェスチャーナビゲーションスタイルに対してのみ有効です。この設定ではマウスでのチルトは無効化されません。 - + Disable touchscreen tilt gesture タッチスクリーンのチルトジェスチャーを無効化 @@ -4653,7 +4652,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement 配置 @@ -5239,32 +5238,17 @@ The 'Status' column shows whether the document could be recovered. リセット - - OK - OK - - - - Close - 閉じる - - - - Apply - 適用する - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. このボタンをクリックする前に1つ、2つ、または3つの点を選択してください。 点は頂点、面、またはエッジ上にあります。面またはエッジ上の点を使用する場合は面またはエッジに沿ったマウス位置にある点を使います。1つの点を選択した場合には点が回転中心として使用されます。2つの点を選択した場合にはその中点が回転中心となり、必要に応じて新しいカスタム軸が作成されます。3つの点を選択した場合には1つ目の点が回転中心となり、3点によって定義される平面の法線となるベクトル上に配置されます。距離と角度の情報はレポートビューに表示されます。この情報はオブジェクトを配置する際に便利です。簡単のために Shift + クリックで適切な距離と角度がクリップボードにコピーされます。 - + Incorrect quantity 不適切な数値です - + There are input fields with incorrect input, please ensure valid placement values! 入力欄に不適切な入力がされています。適切な位置かどうか確認してください! @@ -5403,13 +5387,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - キャンセル - - - - + Transform 変換 @@ -5799,13 +5777,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file ファイルを選択してください - + Select a directory ディレクトリを選択 @@ -5813,13 +5791,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as 名前を付けて保存 - - + + Open 開く @@ -5827,12 +5805,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended 拡張 - + All files (*.*) 全てのファイル (*.*) @@ -6009,7 +5987,7 @@ Do you want to save your changes? Gui::LabelEditor - + List リスト @@ -6126,57 +6104,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension 寸法 - + Ready 準備完了 - + Close All すべて閉じる - - - + + + Toggles this toolbar このツールバーを切り替えます - - - + + + Toggles this dockable window このドッキング可能なウィンドウを切り替える - + WARNING: This is a development version. 警告: これは開発版です。 - + Please do not use it in a production environment. 本番環境では使用しないでください。 - - + + Unsaved document 未保存のドキュメント - + The exported object contains external link. Please save the documentat least once before exporting. エクスポートされたオブジェクトには外部リンクがふくまれています。エクスポートの前に少なくとも一度ドキュメントを保存してください。 - + To link to external objects, the document must be saved at least once. Do you want to save the document now? 外部オブジェクトにリンクするにはドキュメントを保存する必要があります。 @@ -6762,12 +6740,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module モジュールを選択します。 - + Open %1 as %1 を開く @@ -7303,7 +7281,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view ツリービュー @@ -7311,7 +7289,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search 検索  @@ -7369,148 +7347,148 @@ Do you want to specify another directory? グループ - + Labels & Attributes ラベルと属性 - + Description 説明 - + Internal name 内部名 - + Show items hidden in tree view ツリービューの非表示アイテムを表示 - + Show items that are marked as 'hidden' in the tree view ツリービューで「非表示」としてマークされているアイテムを表示 - + Toggle visibility in tree view ツリー ビューでの表示を切り替え - + Toggles the visibility of selected items in the tree view ツリー ビューで選択したアイテムの表示を切り替えます。 - + Create group グループの作成 - + Create a group グループを作成します。 - - + + Rename 名前の変更 - + Rename object オブジェクトの名前を変更します。 - + Finish editing 編集を終了 - + Finish editing object オブジェクトの編集を終了します。 - + Add dependent objects to selection 依存オブジェクトを追加選択 - + Adds all dependent objects to the selection すべての依存オブジェクトを追加選択 - + Close document ドキュメントを閉じる - + Close the document ドキュメントを閉じる - + Reload document ドキュメントを再読み込み - + Reload a partially loaded document 特定の読み込み済みドキュメントを再読み込み - + Skip recomputes 再計算をスキップ - + Enable or disable recomputations of document ドキュメントの再計算の有効、無効を切り替え - + Allow partial recomputes 部分的な再計算を許可 - + Enable or disable recomputating editing object when 'skip recomputation' is enabled 「再計算のスキップ」が有効な場合の編集オブジェクト再計算の有効、無効を切り替え - + Mark to recompute 再計算用にマーク - + Mark this object to be recomputed このオブジェクトを再計算のためにマーク - + Recompute object オブジェクトを再計算 - + Recompute the selected object 選択したオブジェクトを再計算する - + (but must be executed) (実行する必要があります) - + %1, Internal name: %2 %1、内部名: %2 @@ -7707,14 +7685,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input 無効な入力 - - + + Input in line %1 is not a number 行 %1 の入力が数値ではありません @@ -7722,47 +7700,47 @@ Do you want to specify another directory? QDockWidget - + Tree view ツリービュー - + Tasks タスク - + Property view プロパティビュー - + Selection view 選択ビュー - + Task List タスクリスト - + Model モデル - + DAG View DAGビュー - + Report view レポートビュー - + Python console Pythonコンソール @@ -7802,45 +7780,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype 不明なファイル形式 - - + + Cannot open unknown filetype: %1 %1:不明なファイルタイプを開くことができません。 - + Export failed エクスポート失敗 - + Cannot save to unknown filetype: %1 不明なファイル形式に保存できません: %1 - + + Recomputation required + 再計算が必要です + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + 一部のドキュメントで移行のための再計算が必要です。 互換上の問題を避けるため、変更前に再計算を実行することを強くお勧めします。 + +今すぐ再計算しますか? + + + + Recompute error + 再計算エラー + + + + Failed to recompute some document(s). +Please check report view for more details. + ドキュメントの再計算に失敗しました。 +詳細についてはレポートビューを確認してください。 + + + Workbench failure ワークベンチのエラー - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. このシステムは OpenGL %1.%2 を実行しています。FreeCAD では OpenGL 2.0 以上が必要です。必要に応じてグラフィックドライバーやカードを更新してください。 - + Invalid OpenGL Version 無効な OpenGL バージョンです。 @@ -7891,7 +7895,7 @@ Do you want to specify another directory? PDF ファイルをエクスポートしています - + Unsaved document 未保存のドキュメント @@ -7902,50 +7906,50 @@ Do you want to specify another directory? エクスポートされたオブジェクトには外部リンクがふくまれています。エクスポートの前に少なくとも一度ドキュメントを保存してください。 - + Delete failed 削除に失敗しました - + Dependency error 依存関係エラー - + Copy selected 選択内容のコピー - + Copy active document アクティブなドキュメントをコピー - + Copy all documents 全てのドキュメントをコピー - + Paste 貼り付け - + Expression error 式にエラーがあります - + Failed to parse some of the expressions. Please check the Report View for more details. 幾つか式の構文解析に失敗しました。 詳細に就いては、レポートビューを確認してください。 - + Failed to paste expressions 式の貼り付けに失敗しました @@ -8184,7 +8188,7 @@ Do you want to continue? 非割り込み通知が大量にあります。通知は省略されています! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8193,44 +8197,44 @@ Do you want to continue? - + Are you sure you want to continue? 実行しますか? - + Please check report view for more... 詳細はレポートビューを確認してください... - + Physical path: 物理パス: - - + + Document: ドキュメント: - - + + Path: パス: - + Identical physical path 同一の物理パス - + Could not save document ドキュメントを保存できませんでした - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8243,102 +8247,102 @@ Would you like to save the file with a different name? 別のファイルとして保存しますか? - - - + + + Saving aborted 保存は中断されました - + Save dependent files 依存ファイルを保存 - + The file contains external dependencies. Do you want to save the dependent files, too? このファイルには外部依存関係が含まれています。依存ファイルも保存しますか? - - + + Saving document failed ドキュメントを保存できませんでした - + Save document under new filename... ドキュメントに新しいファイル名を付けて保存 - - + + Save %1 Document %1 のドキュメントを保存します。 - + Document ドキュメント - - + + Failed to save document ドキュメントの保存に失敗 - + Documents contains cyclic dependencies. Do you still want to save them? ドキュメントに循環依存関係が含まれています。保存しますか? - + Save a copy of the document under new filename... 新しいファイル名でドキュメントのコピーを保存... - + %1 document (*.FCStd) %1 のドキュメント (*.FCStd) - + Document not closable 閉じられないドキュメント - + The document is not closable for the moment. 今閉じることができないドキュメント - + Document not saved ドキュメントが保存されていません - + The document%1 could not be saved. Do you want to cancel closing it? ドキュメント%1 を保存できませんでした。閉じることをキャンセルしますか? - + Undo 元に戻す - + Redo やり直す - + There are grouped transactions in the following documents with other preceding transactions 以下のドキュメントには先行する他のトランザクションとグループ化されたトランザクショが含まれています。 - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8411,12 +8415,12 @@ Choose 'Abort' to abort オプション... - + Out of memory メモリ不足 - + Not enough memory available to display the data. データを表示するのに十分なメモリがありません。 @@ -8432,7 +8436,7 @@ Choose 'Abort' to abort %2 にも %3 にもファイル %1 が見つかりません。 - + Navigation styles ナビゲーションスタイル @@ -8448,32 +8452,32 @@ Choose 'Abort' to abort このダイアログを閉じますか? - + Do you want to save your changes to document '%1' before closing? 終了する前にドキュメント '%1' に変更を保存しますか? - + Do you want to save your changes to document before closing? 終了する前にドキュメントに変更を保存しますか? - + If you don't save, your changes will be lost. 保存しない場合、変更内容は失われます。 - + Apply answer to all すべてに適用 - + %1 Document(s) not saved %1 ドキュメントは保存されていません - + Some documents could not be saved. Do you want to cancel closing? 一部のドキュメントを保存できませんでした。閉じることをキャンセルしますか? @@ -8609,8 +8613,8 @@ underscore, and must not start with a digit. '%1' へプロパティの追加に失敗しました: %2 - - + + Drag & drop failed ドラッグ&ドロップ失敗 @@ -8901,12 +8905,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: 許可されていません: - + Selection not allowed by filter フィルターによる選択は許可されていません。 @@ -8994,13 +8998,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... 整列… - - + + Align the selected objects 選択されたオブジェクトを整列 @@ -9284,17 +9288,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode 編集モードの切り替え(&E) - + Toggles the selected object's edit mode 選択したオブジェクトの編集モードを切り替える - + Activates or Deactivates the selected object's edit mode 選択したオブジェクトの編集モードをアクティブ化・非アクティブ化 @@ -9326,13 +9330,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions 式アクション - - + + Actions that apply to expressions 式に適用するアクション @@ -9793,7 +9797,7 @@ underscore, and must not start with a digit. 新しい空のドキュメントを作成 - + Unnamed Unnamed @@ -9891,13 +9895,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... 配置... - - + + Place the selected objects 選択したオブジェクトを配置 @@ -10035,13 +10039,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh 更新(&R) - - + + Recomputes the current active document 現在アクティブなドキュメントを再計算 @@ -10385,13 +10389,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... 変形... - - + + Transform the geometry of selected objects 選択されたオブジェクトの形状を変形 @@ -10399,13 +10403,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform 変換 - - + + Transform the selected object in the 3d view 3Dビューで選択されたオブジェクトを変形 @@ -11261,7 +11265,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11271,7 +11275,7 @@ Are you sure you want to continue? 実行しますか? - + Object dependencies オブジェクトの依存関係 @@ -11383,7 +11387,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12150,8 +12154,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information エラーが発生しました。詳細はレポートビューを参照してください。 @@ -12901,65 +12905,40 @@ from Python console to Report view panel 光源 - + + Push In + プッシュイン + + + + Pull Out + プルアウト + + + Light sources 光源(こうげん) - + Light source 光源 - + Intensity 強度 - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. マウスでドラッグするか、スピンボックスを使用して指向性光源の向きを微調整します。 - + Direction 方向 - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13364,12 +13343,12 @@ the region are non-opaque. StdCmdProperties - + Properties プロパティ - + Show the property view, which displays the properties of the selected object. 選択したオブジェクトのプロパティを表示するためのプロパティビューを表示します。 diff --git a/src/Gui/Language/FreeCAD_ka.ts b/src/Gui/Language/FreeCAD_ka.ts index 77186fd025..8b80f022a3 100644 --- a/src/Gui/Language/FreeCAD_ka.ts +++ b/src/Gui/Language/FreeCAD_ka.ts @@ -91,17 +91,17 @@ ჩასწორება - + Import შემოტანა - + Delete წაშლა - + Paste expressions გამოთქმის ჩასმა @@ -156,8 +156,7 @@ სწორება - - + Placement მდებარეობა @@ -425,42 +424,42 @@ EditMode - + Default ნაგულისხმევი - + The object will be edited using the mode defined internally to be the most appropriate for the object type ობიექტი ჩასწორდება რეჟიმით, რომელიც შიგნით ამ ობიექტის ტიპისთვის ყველაზე შესაფერისია - + Transform გარდაქმნა - + The object will have its placement editable with the Std TransformManip command ობიექტს Std TransformManip ბრძანებით ჩასწორებადი მდებარეობა ექნება - + Cutting ამოჭრა - + This edit mode is implemented as available but currently does not seem to be used by any object ეს ჩასწორების რეჟიმი განხორციელებულია, როგორც ხელმისაწვდომი, მაგრამ ამჟამად, როგორც ჩანს, არც ერთი ობიექტის მიერ არ გამოიყენება - + Color ფერი - + The object will have the color of its individual faces editable with the Part FaceAppearances command ობიექტს თითოეული ზედაპირის Part FaceAppearances ბრძანებით ჩასწორებადი ფერი ექნება @@ -1998,7 +1997,7 @@ Perhaps a file permission error? % - % + % @@ -3901,7 +3900,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation ნავიგაცია @@ -3961,99 +3960,99 @@ You can also use the form: John Doe <john@doe.com> უახლოესისკენ შებრუნება - + Font name of the navigation cube ნავიგაციის კუბის ფონტის სახელი - + Default ნაგულისხმევი - + Cube size კუბის ზომა - + Size of the navigation cube ნავიგაციის კუბის ზომა - + Opacity when inactive გაუმჭვირვალე, როცა არააქტიურია - + Opacity of the navigation cube when not focused ნავიგაციის კუბის გაუმჭვირვალობა, როცა ფოკუსი არ აქვს - + Color ფერი - + Base color for all elements ყველა ელემენტის ძირითადი ფერი - + Rotation center indicator ბრუნვის ცენტრის მაჩვენებელი - + Sphere size სფეროს ზომა - + Color and transparency ფერი და გამჭვირვალობა - + The size of the rotation center indicator ბრუნვის ცენტრის მაჩვენებლის ზომა - + The color of the rotation center indicator ბრუნვის ცენტრის მაჩვენებლის ფერი - + 3D Navigation 3D ნავიგაცია - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. მაუსის ღილაკის კონფიგურაციების ჩამოთვლა არჩეული ნავიგაციის თითოეული პარამეტრისთვის. აირჩიეთ ნაკრები და შემდეგ დააჭირეთ ღილაკს აღნიშნული კონფიგურაციების სანახავად. - + Mouse... თაგუნა... - + Navigation settings set ნავიგაციის პარამეტრების ნაკრები - + Orbit style ტრიალის სტილი - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4064,104 +4063,104 @@ Free Turntable: the part will be rotated around the z-axis. თავისუფალი ბრუნავი დისკო: ნაწილი Z-ღერძის გარშემო შებრუნდება. - + Turntable გრუნტი - + Trackball ტრეკბოლი - + Free Turntable თავისუფალი გრუნტი - + Rotation mode ბრუნვის რეჟიმი - + Rotations in 3D will use current cursor position as center for rotation 3D-ში ბრუნვის დროს მობრუნების ცენტრი კურსორის მიმდინარე მდებარეობა იქნება - + Window center ფანჯრის ცენტრი - + Drag at cursor კურსორთან გადათრევა - + Object center ობიექტის ცენტრი - + Default camera orientation კამერის ნაგულისხმევი ორიენტაცია - + Default camera orientation when creating a new document or selecting the home view კამერის ნაგულისხმევი ორიენტაცია ახალი დოკუმენტის შექმნისას ან საწყისი ხედის არჩევისას - + Camera zoom კამერის გადიდება - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. აყენებს ახალი დოკუმენტების კამერის მასშტაბს. მნიშვნელობას წარმოადგენს სფეროს დიამეტრი, რომელიც ეკრანზე ეტევა. - + mm მმ - + Animations ანიმაციები - + Enable spinning animations that are used in some navigation styles after dragging ჩართავს ტრიალა ანიმაციებს, რომლებიც გამოიყენება ზოგიერთ ნავიგაციის სტილებში გადათრევის შემდეგ - + Enable spinning animations ტრიალა ანიმაციების ჩართვა - + Duration of navigation animations that have a fixed duration ნავიგაციის ანიმაციების ხანგრძლივობა, რომლებსაც ფიქსირებული ხანგრძლივობა გააჩნიათ - + Animation duration ანიმაციის ხანგრძლივობა - + The duration of navigation animations in milliseconds ნავიგაციის ანიმაციების ხანგრძლივობა მილიწამებში - + Zoom step გადიდების ბიჯი @@ -4171,34 +4170,34 @@ The value is the diameter of the sphere to fit on the screen. ფონტის სახელი - + Zoom operations will be performed at position of mouse pointer გადიდების მოქმედება თაგუნას მაჩვენებლის პოზიციაზე მოხდება - + Zoom at cursor კურსორთან გადიდება - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. რამდენად შეიძლება გაადიდოთ. გადიდების ბიჯი 1 ნიშნავს 7,5-ჯერ გადიდებას ყოველ ბიჯზე. - + Direction of zoom operations will be inverted გადიდების ოპერაციების ინვერსია - + Invert zoom გადიდების ინვერსია - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4207,7 +4206,7 @@ Mouse tilting is not disabled by this setting. თაგუნათი დახრილობა ამ პარამეტრით არ არის ითიშება. - + Disable touchscreen tilt gesture სენსორული ეკრანის მისახვედრი ჟესტების გამორთვა @@ -4676,7 +4675,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement განლაგება @@ -5262,32 +5261,17 @@ The 'Status' column shows whether the document could be recovered. საწყის მნიშვნელობებზე დაბრუნება - - OK - &დიახ - - - - Close - დახურვა - - - - Apply - დადება - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. გთხოვთ, ამ ღილაკზე დაწკაპუნებამდე მონიშნოთ 1, 2 ან 3 წერტილი. წერტილი შეიძლება იყოს წვეროზე, ზედაპირზე ან წიბოზე. თუ ის ზედაპირზე ან წიბოზეა, გამოყენებული წერტილი იქნება მაუსის პოზიცია სახის ან წიბოს გასწვრივ. თუ მონიშნოთ 1 წერტილი, ის გამოყენებული იქნება ბრუნვის ცენტრად. თუ არჩეულია 2 წერტილი, მათ შორის შუა წერტილი იქნება ბრუნვის ცენტრი და საჭიროების შემთხვევაში შეიქმნება ახალი ღერძი. თუ არჩეულია 3 წერტილი, პირველი წერტილი ხდება ბრუნვის ცენტრი და დევს ვექტორზე, რომელიც 3 წერტილით განსაზღვრული სიბრტყის ნორმალია. გარკვეული მანძილისა და კუთხის შესახებ ინფორმაცია მოცემულია მოხსენების ხედში, რაც შეიძლება ობიექტების სწორებისას სასარგებლო იყოს. მოხერხებულობისთვის, როდესაც Shift + წკაპი გამოიყენება, შესაბამისი მანძილი ან კუთხე კოპირდება ბუფერში. - + Incorrect quantity არასწორი რაოდენობა - + There are input fields with incorrect input, please ensure valid placement values! არსებობს არასწორად შევსებული ველები. გთხოვთ დარწმუნდეთ, რომ ყველა ველი სწორადაა შევსებული! @@ -5426,13 +5410,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - გაუქმება - - - - + Transform გარდაქმნა @@ -5823,13 +5801,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file აირჩიეთ ფაილი - + Select a directory აირჩიეთ საქაღალდე @@ -5837,13 +5815,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as შენახვა როგორც - - + + Open გახსნა @@ -5851,12 +5829,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended გაფართოებული - + All files (*.*) ყველა ფაილი (*.*) @@ -6033,7 +6011,7 @@ Do you want to save your changes? Gui::LabelEditor - + List სია @@ -6150,57 +6128,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension ზომა - + Ready მზადაა - + Close All ყველას დახურვა - - - + + + Toggles this toolbar ამ ზოლის ჩართ/გამორთ - - - + + + Toggles this dockable window მიმაგრებადი ფანჯრის ჩვენების ჩართ/გამორთ - + WARNING: This is a development version. გაფრთხილება: ეს სატესტო ვერსიაა. - + Please do not use it in a production environment. არ გამოიყენოთ ის საწარმოო გარემოში. - - + + Unsaved document შეუნახავი დოკუმენტი - + The exported object contains external link. Please save the documentat least once before exporting. გატანილი ობიექტი შეიცავს გარე ბმულს. გთხოვთ გატანამდე დოკუმენტი ერთხელ მაინც შეინახოთ. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? გარე ობიექტებთან დასაკავშირებლად, დოკუმენტი უნდა იყოს შენახული ერთხელ მაინც. @@ -6790,12 +6768,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module აირჩიეთ მოდული - + Open %1 as %1-ის გაღება, როგორც @@ -7331,7 +7309,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view ხის ხედი @@ -7339,7 +7317,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search ძებნა @@ -7397,148 +7375,148 @@ Do you want to specify another directory? ჯგუფი - + Labels & Attributes ჭდეები & ატრიბუტები - + Description აღწერა - + Internal name შიდა სახელი - + Show items hidden in tree view ხის ხედში დამალული ელემენტების ჩვენება - + Show items that are marked as 'hidden' in the tree view ხის ხედში 'დამალულად' მონიშნული ელემენტების ჩვენება - + Toggle visibility in tree view ხის ხედში ხილვადობის გადართვა - + Toggles the visibility of selected items in the tree view ხის ხედში მონიშნული ელემენტების ხილვადობის გადართვა - + Create group ჯგუფის შექმნა - + Create a group ჯგუფის შექმნა - - + + Rename სახელის გადარქმევა - + Rename object ობიექტის სახელის გადარქმევა - + Finish editing ჩასწორების დასრულება - + Finish editing object ობიექტის ჩასწორების დასრულება - + Add dependent objects to selection დამოკიდებული ობიექტების მონიშნულში ჩამატება - + Adds all dependent objects to the selection მონიშნულში ყველა დამოკიდებული ობიექტის ჩამატება - + Close document დოკუმენტის დახურვა - + Close the document დოკუმენტის დახურვა - + Reload document დოკუმენტის თავიდან ჩატვირთვა - + Reload a partially loaded document ნაწილობრივ ჩატვირთული დოკუმენტის თავიდან ჩატვირთვა - + Skip recomputes გადათვლების გამოტოვება - + Enable or disable recomputations of document დოკუმენტის გადათვლების ჩართვა ან გამორთვა - + Allow partial recomputes ნაწილობრივი გადაანგარიშებების ჩართვა - + Enable or disable recomputating editing object when 'skip recomputation' is enabled როცა 'გადათვლის გამოტოვება' ჩართულია, რთავს ან თიშავს ობიექტის გადათვლას მისი ჩასწორებისას - + Mark to recompute გადათვლისთვის მონიშვნა - + Mark this object to be recomputed ამ ობიექტის მონიშვნა, როგორც გადასართველის - + Recompute object ობიექტის გადათვლა - + Recompute the selected object მონიშნული ობიექტის თავიდან გამოთვლა - + (but must be executed) (მაგრამ უნდა შესრულდეს) - + %1, Internal name: %2 %1, შიდა სახელი: %2 @@ -7735,14 +7713,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input არასწორი შეტანა - - + + Input in line %1 is not a number ხაზზე %1 შეყვანილი სტრიქონი რიცხვს არ წარმოადგენს @@ -7750,47 +7728,47 @@ Do you want to specify another directory? QDockWidget - + Tree view ელემენტების ხე - + Tasks დავალებები - + Property view თვისებაზე გადახედვა - + Selection view მონიშნულის ხედი - + Task List ამოცანების სია - + Model მოდელი - + DAG View DAG ხედი - + Report view ანგარიში - + Python console Python-ის კონსოლი @@ -7830,45 +7808,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype ფაილის უცნობი ტიპი - - + + Cannot open unknown filetype: %1 ფაილის უცნობი ტიპი: %1 - + Export failed გატანის შეცდომა - + Cannot save to unknown filetype: %1 უცნობ ფაილის ტიპში ჩაწერის შეცდომა: %1 - + + Recomputation required + აუცილებელია თავიდან გამოთვლა + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + ზოგიერთ დოკუმენტს მიგრაციის მიზნით თავიდან გამოთვლა სჭირდება. თავსებადობის პრობლემების თავიდან ასაცილებლად თავიდან გამოთვლის ჩატარება მკაცრად რეკომენდებულია. + +გნებავთ თავიდან გამოთვლა ახლავე? + + + + Recompute error + შეცდომის თავიდან გამოთვლა + + + + Failed to recompute some document(s). +Please check report view for more details. + ზოგიერთი დოკუმენტის თავიდან გამოთვლა ჩავარდა. +მეტი დეტალებისთვის იხილეთ ანგარიშის ხედი. + + + Workbench failure სამუშაო მაგიდის შეცდომა - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. თქვენს სისტემაზე გაშვებული OpenGL-ის ვერსიაა %1.%2. FreeCAD-ს სამუშაოდ OpenGL 2.0 ან უფრო მაღალი სჭირდება. განაახლეთ საჭიროებისამებრ თქვენი ვიდეობარათის დრაივერი ან/და თვითონ ბარათი. - + Invalid OpenGL Version არასწორი OpenGL-ის ვერსია @@ -7919,7 +7923,7 @@ Do you want to specify another directory? PDF-ად გატანა... - + Unsaved document შეუნახავი დოკუმენტი @@ -7930,50 +7934,50 @@ Do you want to specify another directory? გატანილი ობიექტი შეიცავს გარე ბმულს. გთხოვთ გატანამდე დოკუმენტი ერთხელ მაინც შეინახოთ. - + Delete failed წაშლის შეცდომა - + Dependency error დამოკიდებულების შეცდომა - + Copy selected მონიშნულის კოპირება - + Copy active document აქტიური დოკუმენტის კოპირება - + Copy all documents ყველა დოკუმენტის კოპირება - + Paste ჩასმა - + Expression error გამოხატვის შეცდომა - + Failed to parse some of the expressions. Please check the Report View for more details. შეცდომა ზოგიერთი გამოთქმის გავლილსას. მეტი დეტალებისთვის იხილეთ ჟურნალი. - + Failed to paste expressions გამოთქმების ჩასმის შეცდომა @@ -8212,7 +8216,7 @@ Do you want to continue? ძალიან ბევრი გახსნილი არაშემაწუხებელი გაფრთხილება. გაფრთხილებებს გამოვტოვებთ! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8221,44 +8225,44 @@ Do you want to continue? - + Are you sure you want to continue? დარწმუნებული ბრძანდებით, რომ გნებავთ, გააგრძელოთ? - + Please check report view for more... მეტის გასაგებად, გთხოვთ გაეცნოთ ანგარიშს... - + Physical path: ფიზიკური მისამართი: - - + + Document: დოკუმენტი: - - + + Path: მისამართი: - + Identical physical path იგივე ფიზიკური მისამართი - + Could not save document ფაილის შენახვის შეცდომა - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8271,102 +8275,102 @@ Would you like to save the file with a different name? გსურთ შეინახოთ ფაილი სხვა სახელით? - - - + + + Saving aborted შენახვა შეწყვეტილია - + Save dependent files დამოკიდებული ფაილების ჩაწერა - + The file contains external dependencies. Do you want to save the dependent files, too? ფაილი შეიცავს გარე დამოკიდებულებებს. გსურთ შეინახოთ დამოკიდებული ფაილებიც? - - + + Saving document failed დკუმენტის შენახვის შეცდომა - + Save document under new filename... დოკუმენტის ახალი სახელით შენახვა... - - + + Save %1 Document დოკუმენტ %1-ის შენახვა - + Document დოკუმენტი - - + + Failed to save document დოკუმენტის შენახვის შეცდომა - + Documents contains cyclic dependencies. Do you still want to save them? დოკუმენტები შეიცავენ წრიულ დამოკიდებულებებს. მაინც გნებავთ მათი შენახვა? - + Save a copy of the document under new filename... დოკუმენტის ასლის ახალი სახელით შენახვა... - + %1 document (*.FCStd) %1 დოკუმენტი (*.FCStd) - + Document not closable დოკუმენტი დახურვადი არაა - + The document is not closable for the moment. დოკუმენტი ამ მომენტისთვის დახურვადი არაა. - + Document not saved დოკუმენტი არ იქნა შენახული - + The document%1 could not be saved. Do you want to cancel closing it? %1-ის შენახვა შეუძლებელია. გნებავთ დახურვის გაუქმება? - + Undo დაბრუნება - + Redo გამეორება - + There are grouped transactions in the following documents with other preceding transactions შემდეგ დოკუმენტებში არის დაჯგუფებული ტრანზაქციები სხვა წინა ტრანზაქციებთან ერთად - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8439,12 +8443,12 @@ Choose 'Abort' to abort პარამეტრები... - + Out of memory მეხსიერება აღარ არის - + Not enough memory available to display the data. არ არის საკმარისი მეხსიერება მონაცემთა საჩვენებლად. @@ -8460,7 +8464,7 @@ Choose 'Abort' to abort ვერ ვიპოვე ფაილი %1, ვერც %2 და ვერც %3 - + Navigation styles ნავიგაციის სტილები @@ -8476,32 +8480,32 @@ Choose 'Abort' to abort ნამდვილად გსურთ ამ ფანჯრის დახურვა? - + Do you want to save your changes to document '%1' before closing? გსურთ შეინახოთ ცვლილებები %1 -ში მის დახურვამდე? - + Do you want to save your changes to document before closing? გსურთ შეინახოთ დოკუმენტის ცვლილებები მის დახურვამდე? - + If you don't save, your changes will be lost. თუ არ შეინახავთ, ყველა თქვენი ცვლილება დაიკარგება. - + Apply answer to all პასუხის ყველაზე გადატარება - + %1 Document(s) not saved %1 დოკუმენტი არ იქნა შენახული - + Some documents could not be saved. Do you want to cancel closing? ზოგიერთი დოკუმენტის შენახვა შეუძლებელია. გნებავთ დახურვის გაუქმება? @@ -8637,8 +8641,8 @@ underscore, and must not start with a digit. %1-სთვის თვისების დამატება: %2 - - + + Drag & drop failed გადათრევის შეცდომა @@ -8935,12 +8939,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: არაა დაშვებული: - + Selection not allowed by filter მონიშვნა უარყოფილია ფილტრის მიერ @@ -9028,13 +9032,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... სწორება... - - + + Align the selected objects მონიშნული ობიექტების სწორება @@ -9318,17 +9322,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode &ჩასწორების რეჟიმის გამორთვა - + Toggles the selected object's edit mode მონიშნული ობიექტის ჩასწორების რეჟიმის ჩართ/გამორთ - + Activates or Deactivates the selected object's edit mode მონიშნული ობიექტის ჩასწორების რეჟიმის ჩართ/გამორთ @@ -9360,13 +9364,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions მოქმედებები გამოთქმით - - + + Actions that apply to expressions გამოსახულებებზე გადასატარებელი ქმედებები @@ -9827,7 +9831,7 @@ underscore, and must not start with a digit. ახალი ცარიელი პროექტის შექმნა - + Unnamed უსახელო @@ -9925,13 +9929,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... მდებარეობა... - - + + Place the selected objects მონიშნული ობიექტების მოთავსება @@ -10069,13 +10073,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &განახლება - - + + Recomputes the current active document აქტიური დოკუმენტის გადათვლა @@ -10419,13 +10423,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... გარდაქმნა... - - + + Transform the geometry of selected objects გეომეტრიის ან მონიშნული ობიექტების გარდაქმნა @@ -10433,13 +10437,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform გარდაქმნა - - + + Transform the selected object in the 3d view მონიშნული ობიექტის გარდაქმნა 3D ხედში @@ -11295,7 +11299,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11306,7 +11310,7 @@ Are you sure you want to continue? - + Object dependencies ობიექტის დამოკიდებულებები @@ -11418,7 +11422,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11970,7 +11974,7 @@ Currently, your system has the following workbenches:</p></body>< Apply - გადატარება + დადება @@ -12186,8 +12190,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information დაფიქსირდა შეცდომა - ინფორმაციისთვის იხილეთ ანგარიშის ხედი @@ -12688,7 +12692,7 @@ display the splash screen Apply - დადება + გადატარება @@ -12940,65 +12944,40 @@ from Python console to Report view panel სინათლის წყაროები - + + Push In + მიწოლა + + + + Pull Out + გამოღება + + + Light sources სინათლის წყაროები - + Light source სინათლის წყარო - + Intensity ინტენსივობა - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction მიმართულება - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13406,12 +13385,12 @@ the region are non-opaque. StdCmdProperties - + Properties თვისებები - + Show the property view, which displays the properties of the selected object. თვისების ხედის ჩვენება, რომელიც მონიშნული ობიექტის თვისებებს აჩვენებს. diff --git a/src/Gui/Language/FreeCAD_ko.ts b/src/Gui/Language/FreeCAD_ko.ts index 2562d6aebe..4956584419 100644 --- a/src/Gui/Language/FreeCAD_ko.ts +++ b/src/Gui/Language/FreeCAD_ko.ts @@ -29,13 +29,12 @@ The displayed size of the origin - 32/5000 -원점의 화면표시된 크기 + 표시되는 원점의 크기 Visual size of the feature - 기능의 시각적 크기(보이는 형태의 크기) + 도형특징의 시각적 크기 @@ -57,7 +56,7 @@ Position - Position + 위치 @@ -92,19 +91,19 @@ 편집 - + Import 가져오기 - + Delete 삭제 - + Paste expressions - 식 복사하기 + 표현식 붙여넣기 @@ -149,7 +148,7 @@ Add a variable set - Add a variable set + 변수 집합 추가 @@ -157,8 +156,7 @@ 정렬 - - + Placement 위치 설정 @@ -187,7 +185,7 @@ Toggle transparency - Toggle transparency + 투명도 전환 @@ -281,7 +279,7 @@ TreeView - 트리보기 + 나무보기 @@ -357,12 +355,12 @@ Expression editor - Expression editor + 표현식 편집기 Variable Sets - Variable Sets + 변수 집합 @@ -372,22 +370,22 @@ Variable Set: - Variable Set: + 변수 집합: Info: - Info: + 정보: New Property: - New Property: + 새로운 속성: Show variable sets - Show variable sets + 변수 집합 보이기 @@ -407,7 +405,7 @@ Ok - OK + 확인 @@ -426,42 +424,42 @@ EditMode - + Default 기본값 - + The object will be edited using the mode defined internally to be the most appropriate for the object type 객체 유형에 가장 적합하도록 내부적으로 정의된 모드를 사용하여 객체를 편집합니다. - + Transform 변환하기 - + The object will have its placement editable with the Std TransformManip command 대상물이 변위 명령을 입력할 수 있는 상태로 될 것 입니다 - + Cutting 절단 - + This edit mode is implemented as available but currently does not seem to be used by any object 현 편집 모드는 사용할 수 있는 기능이고, 현재 사용중인 대상물이 없는 것으로 보입니다 - + Color 색상 - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -471,12 +469,12 @@ Enter an expression... (=) - Enter an expression... (=) + 표현식 입력...(=) Expression: - Expression: + 표현식: @@ -674,7 +672,7 @@ while doing a left or right click and move the mouse up or down Release date - 릴리스 날짜 + 배포일 @@ -689,7 +687,7 @@ while doing a left or right click and move the mouse up or down Copy to clipboard - 클립보드에 복사하기 + 오림판에 복사하기 @@ -756,7 +754,7 @@ while doing a left or right click and move the mouse up or down Privacy Policy - Privacy Policy + 개인정보 정책 @@ -1657,7 +1655,7 @@ same time. The one with the highest priority will be triggered. Find file: - Find file: + 파일 찾기: @@ -2408,12 +2406,12 @@ Specify another directory, please. Unit System: - Unit System: + 단위계: Unit system for this file - Unit system for this file + 이 파일의 단위계 @@ -2497,7 +2495,7 @@ Specify another directory, please. Create document - Create document + 문서 생성 @@ -2690,14 +2688,14 @@ lower right corner within opened files Show coordinate system in the corner - 모서리에 좌표계를 표시 + 구석에 좌표계를 표시 Size of main coordinate system representation in the corner -- in % of height/width of viewport - 주 좌표계 표현의 크기 -모서리 - 뷰포트 높이/폭의 % 단위 + 구석에 표시되는 주 좌표계의 크기 + - 뷰포트 높이/폭의 % 단위 @@ -2716,7 +2714,7 @@ opening or creation Time needed for last operation and resulting frame rate will be shown at the lower left corner in opened files 마지막 작업에 필요한 시간과 결과 프레임 속도는 -열린 파일의 왼쪽 하단 모서리에 표시됩니다 +열린 파일의 왼쪽 하단 구석에 표시됩니다 @@ -2777,12 +2775,12 @@ VBO는 데이터가 시스템 메모리가 아닌 그래픽 메모리에 상주 Relative size: - Relative size: + 상대적 크기: Letter color: - Letter color: + 문자 색상: @@ -2889,7 +2887,7 @@ but slower response to any scene changes. Size of vertices in the Sketcher, TechDraw and other workbenches - Size of vertices in the Sketcher, TechDraw and other workbenches + 스케치, 기술문서 및 다른 작업대에서 꼭지점의 크기 @@ -3029,7 +3027,7 @@ bounding box size of the 3D object that is currently displayed. Location (read-only): - Location (read-only): + 장소(읽기 전용): @@ -3904,14 +3902,14 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation 탐색 Navigation cube - 네비게이션 입방체 + 탐색 입방체 @@ -3926,12 +3924,12 @@ You can also use the form: John Doe <john@doe.com> Corner - 모서리 + 표시 위치 Corner where navigation cube is shown - 탐색 입방체가 표시되는 모서리 + 3D보기에서 탐색 입방체가 표시되는 위치 @@ -3964,99 +3962,99 @@ You can also use the form: John Doe <john@doe.com> 가장 가까운 위치로 회전하기 - + Font name of the navigation cube 탐색 큐브의 글꼴 이름 - + Default 기본값 - + Cube size 입방체 크기 - + Size of the navigation cube - 네비게이션 입방체의 크기 + 탐색 입방체의 크기 - + Opacity when inactive - Opacity when inactive + 비활성화시 불투명도 - + Opacity of the navigation cube when not focused - Opacity of the navigation cube when not focused + 초점이 맞춰지지 않은 경우 탐색 입방체의 불투명도 - + Color 색상 - + Base color for all elements Base color for all elements - + Rotation center indicator - Rotation center indicator + 회전 중심 표시기 - + Sphere size - Sphere size + 구체 크기 - + Color and transparency - Color and transparency + 색상 및 투명도 - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation 3D 탐색 - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. 선택한 각 탐색 설정에 대한 마우스 버튼 구성을 나열합니다. 세트를 선택한 다음 단추를 누르면 해당 구성이 표시됩니다. - + Mouse... 마우스... - + Navigation settings set 탐색 설정 설정하기 - + Orbit style 궤도 스타일 - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4067,104 +4065,104 @@ Free Turntable: the part will be rotated around the z-axis. 자유 턴테이블: 대상물이 x축에 대해 회전 하게됨. - + Turntable 턴테이블 - + Trackball 트랙볼 - + Free Turntable Free Turntable - + Rotation mode 회전 모드 - + Rotations in 3D will use current cursor position as center for rotation 3D 회전은 현재 커서 위치를 회전 중심으로 사용합니다 - + Window center 창 중앙 - + Drag at cursor 커서에서 드래그 - + Object center 객체 중심 - + Default camera orientation 기본 카메라 방향 - + Default camera orientation when creating a new document or selecting the home view 새 문서를 만들거나 홈 보기를 선택할 때의 기본 카메라 방향 - + Camera zoom 카메라 줌 - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. 새 문서에 대한 카메라 줌을 설정합니다. 값은 화면에 맞출 구체의 지름입니다. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animation duration - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoom step @@ -4174,34 +4172,34 @@ The value is the diameter of the sphere to fit on the screen. 글꼴 이름 - + Zoom operations will be performed at position of mouse pointer 확대/축소 작업은 마우스 포인터 위치에서 수행됩니다 - + Zoom at cursor 커서에서 확대/축소하기 - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. 얼마나 확대/축소되는지 여부. '1'의 확대/축소 단계는 모든 확대/축소 단계에 대해 7.5의 계수를 의미합니다. - + Direction of zoom operations will be inverted 확대/축소 작업의 방향이 반전됩니다 - + Invert zoom 확대/축소 반전하기 - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4210,7 +4208,7 @@ Mouse tilting is not disabled by this setting. 이 설정에 의해 마우스 기울기가 비활성화되지 않습니다. - + Disable touchscreen tilt gesture 터치스크린 틸트 제스처 비활성화하기 @@ -4570,7 +4568,7 @@ Larger value eases to pick things, but can make small features impossible to sel Units converter - Units converter + 단위 변환기 @@ -4649,7 +4647,7 @@ The preference system is the one set in the general preferences. Copy the result into the clipboard - 결과를 클립보드에 복사하기 + 결과를 오림판에 복사하기 @@ -4678,7 +4676,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement 위치 설정 @@ -5206,7 +5204,7 @@ The 'Status' column shows whether the document could be recovered. Rotation axis and angle - Rotation axis and angle + 공전 축과 각도 @@ -5264,32 +5262,17 @@ The 'Status' column shows whether the document could be recovered. 재설정 - - OK - 확인 - - - - Close - 닫기 - - - - Apply - 적용 - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. 이 단추를 클릭하기 전에 1, 2, 3 포인트를 선택하십시오. 포인트는 꼭짓점, 면 또는 모서리에 있을 수 있습니다. 면이나 모서리의 경우, 사용된 포인트는 면이나 모서리를 따라 마우스 위치에 있는 포인트가 됩니다. 1 포인트를 선택하면 회전 중심으로 사용됩니다. 2 포인트의 점을 선택하면 그 사이의 중간점이 회전 중심이 되고 필요한 경우 새 사용자 지정 축이 생성됩니다. 3 포인트의 포인트를 선택하면 첫 번째 포인트가 회전 중심이 되고 3개의 포인트로 정의된 평면에 수직인 벡터에 놓입니다. 보고서 보기에는 객체를 정렬할 때, 유용할 수 있는 일부 거리 및 각도 정보가 제공됩니다. 편의를 위해 Shift + 클릭을 사용할 때 적절한 거리 또는 각도가 클립보드에 복사됩니다. - + Incorrect quantity 잘못된 수량 - + There are input fields with incorrect input, please ensure valid placement values! 잘못된 입력 필드가 있습니다. 올바른 배치 값을 확인하십시오! @@ -5428,13 +5411,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - 취소하기 - - - - + Transform 변환하기 @@ -5825,13 +5802,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file 파일 선택하기 - + Select a directory 디렉터리 선택하기 @@ -5839,13 +5816,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as 다른 이름으로 저장하기 - - + + Open 열기 @@ -5853,12 +5830,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended 확장 - + All files (*.*) 모든 파일 (*.*) @@ -6035,7 +6012,7 @@ Do you want to save your changes? Gui::LabelEditor - + List 목록 @@ -6127,7 +6104,7 @@ Do you want to save your changes? Direction: - Direction: + 방향: @@ -6152,57 +6129,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension 치수 - + Ready 준비 - + Close All 모두 닫기 - - - + + + Toggles this toolbar 이 도구 모음 전환하기 - - - + + + Toggles this dockable window 이 도킹 가능 창 전환하기 - + WARNING: This is a development version. - WARNING: This is a development version. + 경고: 이것은 개발용 버전입니다. - + Please do not use it in a production environment. - Please do not use it in a production environment. + 생산환경에서 이 버전을 사용하지 마세요. - - + + Unsaved document 저장하지 않은 문서 - + The exported object contains external link. Please save the documentat least once before exporting. 내보낸 객체에 외부 링크가 포함되어 있습니다. 내보내기 전에 문서를 한 번 이상 저장하십시오. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? 외부 객체에 링크하려면, 문서를 한 번 이상 저장해야 합니다. @@ -6791,12 +6768,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module 모듈 선택 - + Open %1 as 다음으로 %1 열기 @@ -6889,7 +6866,7 @@ Do you want to specify another directory? Position - Position + 위치 @@ -7321,7 +7298,7 @@ Do you want to specify another directory? Danish - Danish + 덴마크어 @@ -7332,7 +7309,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view 트리 보기 @@ -7340,7 +7317,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search 검색하기 @@ -7375,12 +7352,12 @@ Do you want to specify another directory? Show description - Show description + 설명 보이기 Show internal name - Show internal name + 내부 이름 보이기 @@ -7398,148 +7375,148 @@ Do you want to specify another directory? 그룹 - + Labels & Attributes 레이블 및 특성 - + Description 설명 - + Internal name - Internal name + 내부 이름 - + Show items hidden in tree view 트리 뷰에서 숨겨진 항목 보기 - + Show items that are marked as 'hidden' in the tree view 트리 뷰에서 '숨김'으로 표시된 항목 보기 - + Toggle visibility in tree view 트리 뷰에서 표시여부 토글 - + Toggles the visibility of selected items in the tree view 트리 뷰에서 선택 항목의 표시여부를 토글함 - + Create group 그룹 만들기 - + Create a group 그룹 만들기 - - + + Rename 이름 바꾸기 - + Rename object 객체 이름 바꾸기 - + Finish editing 편집 완료 - + Finish editing object 객체 편집 완료 - + Add dependent objects to selection 선택 항목에 종속 오브젝트 추가 - + Adds all dependent objects to the selection 모든 종속 개체를 선택 항목에 추가합니다. - + Close document 문서 닫기 - + Close the document 문서 닫기 - + Reload document 문서 다시 불러오기 - + Reload a partially loaded document 부분적인 불러온 문서 다시 불러오기 - + Skip recomputes 재계산 건너뛰기 - + Enable or disable recomputations of document 문서 계산 사용 또는 사용 안 함 - + Allow partial recomputes 부분적인 재계산 허용하기 - + Enable or disable recomputating editing object when 'skip recomputation' is enabled '계산 건너뛰기'가 활성화된 경우 편집 개체 다시 계산 사용 또는 사용 안 함 - + Mark to recompute 다시 계산 표시 - + Mark this object to be recomputed 이 객체가 다시 계산될 수 있도록 표시합니다 - + Recompute object 객체 다시 계산하기 - + Recompute the selected object 선택한 객체를 다시 계산합니다 - + (but must be executed) (단, 실행해야 함) - + %1, Internal name: %2 %1, 내부 이름: %2 @@ -7730,20 +7707,20 @@ Do you want to specify another directory? 5 m - 5 m + 5 m  PropertyListDialog - - + + Invalid input 잘못 된 입력 - - + + Input in line %1 is not a number 줄에 있는 입력%1 이 숫자가 아닙니다. @@ -7751,47 +7728,47 @@ Do you want to specify another directory? QDockWidget - + Tree view 트리 보기 - + Tasks 작업 - + Property view 속성 보기 - + Selection view 선택항목 보기 - + Task List 작업 목록 - + Model 모델 - + DAG View DAG 보기 - + Report view 보고서 보기 - + Python console Python 콘솔 @@ -7831,45 +7808,71 @@ Do you want to specify another directory? 파이썬 - - - + + + Unknown filetype 알 수 없는 파일유형 - - + + Cannot open unknown filetype: %1 알 수 없는 파일유형을 열 수 없습니다: %1 - + Export failed 내보내기 실패 - + Cannot save to unknown filetype: %1 알 수 없는 파일유형에 저장할 수 없습니다. %1 - + + Recomputation required + 재계산 필요 + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + 재계산 오류 + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure 작업대 실패 - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7920,7 +7923,7 @@ Do you want to specify another directory? PDF로 내보내기... - + Unsaved document 저장하지 않은 문서 @@ -7931,50 +7934,50 @@ Do you want to specify another directory? 내보낸 객체에 외부 링크가 포함되어 있습니다. 내보내기 전에 문서를 한 번 이상 저장하십시오. - + Delete failed 삭제 실패 - + Dependency error 종속성 오류 - + Copy selected 사본 선택됨 - + Copy active document 활성 문서 복사하기 - + Copy all documents 모든 문서 복사하기 - + Paste 붙여넣기 - + Expression error 표현식 오류 - + Failed to parse some of the expressions. Please check the Report View for more details. 일부 식을 구문 분석하지 못했습니다. 자세한 내용은 보고서 뷰를 확인하십시오. - + Failed to paste expressions 식을 붙여넣지 못했습니다. @@ -8195,7 +8198,7 @@ Do you want to continue? Notifier: - Notifier: + 알림: @@ -8213,51 +8216,51 @@ Do you want to continue? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! 동일한 물리적 경로가 감지되었습니다. 존재하는 문서의 원치 않는 덮어쓰기가 발생할 수 있습니다! - + Are you sure you want to continue? 계속 진행 하시겠습니까? - + Please check report view for more... 자세한 내용은 보고서 보기를 확인하십시오... - + Physical path: 물리적 경로: - - + + Document: 문서: - - + + Path: 경로: - + Identical physical path 동일한 물리적 경로 - + Could not save document 문서를 저장할 수 없습니다 - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8270,102 +8273,102 @@ Would you like to save the file with a different name? 파일을 다른 이름으로 저장하시겠습니까? - - - + + + Saving aborted 저장 실패 - + Save dependent files 종속 파일 저장하기 - + The file contains external dependencies. Do you want to save the dependent files, too? 파일에 외부 종속성이 있습니다. 종속 파일도 저장하시겠습니까? - - + + Saving document failed 문서 저장 실패 - + Save document under new filename... 새 파일 이름으로 문서 저장하기... - - + + Save %1 Document %1 문서 저장 - + Document 문서 - - + + Failed to save document 문서 저장 실패 - + Documents contains cyclic dependencies. Do you still want to save them? 문서에는 주기적 종속성이 포함되어 있습니다. 아직도 저장하길 원하나요? - + Save a copy of the document under new filename... 문서의 사본을 새 파일 이름으로 저장하기... - + %1 document (*.FCStd) %1 문서 (*.FCStd) - + Document not closable 문서를 닫을 수 없습니다 - + The document is not closable for the moment. 그 문서는 당분간 닫을 수 없다. - + Document not saved 문서가 저장되지 않았습니다 - + The document%1 could not be saved. Do you want to cancel closing it? %1 문서를 저장할 수 없습니다. 닫기를 취소하시겠습니까? - + Undo 실행 취소 - + Redo 다시 실행 - + There are grouped transactions in the following documents with other preceding transactions 다음 문서에 다른 이전 트랜잭션과 함께 그룹화된 트랜잭션이 있습니다. - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8438,12 +8441,12 @@ Choose 'Abort' to abort 옵션... - + Out of memory 메모리 부족 - + Not enough memory available to display the data. 데이터를 화면표시하는 데 사용할 수 있는 메모리가 충분하지 않습니다. @@ -8459,7 +8462,7 @@ Choose 'Abort' to abort %2 또는 %3에서 %1 파일을 찾을 수 없습니다 - + Navigation styles 탐색 스타일 @@ -8475,32 +8478,32 @@ Choose 'Abort' to abort 다이얼로그를 닫으시겠습니까? - + Do you want to save your changes to document '%1' before closing? 문서를 닫기 전에 변경 내용을 '%1'에 저장하시겠습니까? - + Do you want to save your changes to document before closing? 닫기 전에 변경사항을 문서에 저장하시겠습니까? - + If you don't save, your changes will be lost. 저장하지 않으면 변경 내용이 손실됩니다. - + Apply answer to all 모든 것에 답변 적용 - + %1 Document(s) not saved %1문서가 저장되지 않았습니다. - + Some documents could not be saved. Do you want to cancel closing? 일부 문서를 저장할 수 없습니다. 닫는 것을 취소하시겠습니까? @@ -8636,8 +8639,8 @@ underscore, and must not start with a digit. '%1'에 속성을 추가하지 못했습니다: %2 - - + + Drag & drop failed 드래그 엔 드랍 실패 @@ -8931,12 +8934,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: 허용 되지 않습니다. - + Selection not allowed by filter 필터에서 허용되지 않는 선택 @@ -9024,13 +9027,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... 정렬... - - + + Align the selected objects 선택한 객체를 정렬합니다 @@ -9314,17 +9317,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode 편집 모드 전환하기(&E) - + Toggles the selected object's edit mode 선택한 객체의 편집 모드를 전환합니다 - + Activates or Deactivates the selected object's edit mode 선택한 객체의 편집 모드를 활성화 또는 비활성화합니다 @@ -9356,13 +9359,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Expression actions - - + + Actions that apply to expressions Actions that apply to expressions @@ -9788,7 +9791,7 @@ underscore, and must not start with a digit. Merge document... - Merge document... + 문서 병합... @@ -9796,7 +9799,7 @@ underscore, and must not start with a digit. Merge document - Merge document + 문서 병합 @@ -9823,7 +9826,7 @@ underscore, and must not start with a digit. 비어 있는 새 문서 만들기 - + Unnamed 이름없음 @@ -9921,13 +9924,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... 위치 설정... - - + + Place the selected objects 선택한 객체를 배치합니다 @@ -10065,13 +10068,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh 새로 고침(&R) - - + + Recomputes the current active document 현재 문서를 다시 계산합니다 @@ -10415,13 +10418,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... 전환 - - + + Transform the geometry of selected objects 선택한 오브젝트의 기하학적 구조 변환 @@ -10429,13 +10432,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform 변환하기 - - + + Transform the selected object in the 3d view 3D 뷰에서 선택한 오브젝트 변환 @@ -11291,7 +11294,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11301,7 +11304,7 @@ Are you sure you want to continue? 계속하시겠습니까? - + Object dependencies 객체 종속성 @@ -11319,7 +11322,7 @@ Are you sure you want to continue? As is - 이와 + 있는 그대로 @@ -11413,7 +11416,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11503,7 +11506,7 @@ Do you still want to proceed? Clipboard - Clipboard + 오림판 @@ -11859,12 +11862,12 @@ Currently, your system has the following workbenches:</p></body>< Reverse direction - Reverse direction + 역방향 Offset: - Offset: + 편차: @@ -11882,37 +11885,37 @@ Currently, your system has the following workbenches:</p></body>< XY-Plane - XY-Plane + XY 평면 XZ-Plane - XZ-Plane + XZ 평면 YZ-Plane - YZ-Plane + YZ 평면 Reverse direction - Reverse direction + 역방향 Offset: - Offset: + 편차: X distance: - X distance: + X 거리: Y distance: - Y distance: + Y 거리: @@ -11942,7 +11945,7 @@ Currently, your system has the following workbenches:</p></body>< Keep aspect ratio - Keep aspect ratio + 종횡비 유지 @@ -11957,7 +11960,7 @@ Currently, your system has the following workbenches:</p></body>< Calibration - Calibration + 교정 @@ -12071,7 +12074,7 @@ Currently, your system has the following workbenches:</p></body>< Delete All - Delete All + 전체 삭제 @@ -12084,7 +12087,7 @@ Currently, your system has the following workbenches:</p></body>< Delete All - Delete All + 전체 삭제 @@ -12178,8 +12181,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12931,72 +12934,47 @@ from Python console to Report view panel Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity 강도 - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction 방향 - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency Toggle transparency - Toggle transparency + 투명도 전환 @@ -13296,7 +13274,7 @@ the region are non-opaque. Auto hide - Auto hide + 자동 숨김 @@ -13397,12 +13375,12 @@ the region are non-opaque. StdCmdProperties - + Properties 속성 - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. @@ -13530,7 +13508,7 @@ the region are non-opaque. Accent color 1 - Accent color 1 + 강조색 1 @@ -13542,12 +13520,12 @@ the region are non-opaque. Accent color 2 - Accent color 2 + 강조색 2 Accent color 3 - Accent color 3 + 강조색 3 @@ -13577,7 +13555,7 @@ the region are non-opaque. Hide Internal Names - Hide Internal Names + 내부 이름 숨김 diff --git a/src/Gui/Language/FreeCAD_lt.ts b/src/Gui/Language/FreeCAD_lt.ts index 21cd3e3c80..2e850e226d 100644 --- a/src/Gui/Language/FreeCAD_lt.ts +++ b/src/Gui/Language/FreeCAD_lt.ts @@ -91,17 +91,17 @@ Taisyti - + Import Įkelti - + Delete Naikinti - + Paste expressions Įklijuoti išraiškas @@ -156,8 +156,7 @@ Lygiavimas - - + Placement Padėtis @@ -425,42 +424,42 @@ EditMode - + Default Numatytasis - + The object will be edited using the mode defined internally to be the most appropriate for the object type Daiktas bus keičiamas naudojant vidinę veikseną, labiausiai tinkamą šiai daikto rūšiai - + Transform Keisti - + The object will have its placement editable with the Std TransformManip command Daikto padėtį bus galima keisti naudojant komandą Std TransformManip - + Cutting Pjovimas - + This edit mode is implemented as available but currently does not seem to be used by any object Ši taisos veiksena yra įgyvendinta ir prieinama, bet kol kas nėra naudojama nei vienam daiktui keisti - + Color Spalva - + The object will have the color of its individual faces editable with the Part FaceAppearances command Daikto kiekviena sienos spalva bus keičiama komanda Part FaceAppearances @@ -3892,7 +3891,7 @@ Jūs taip pat galite naudoti tokį pavidalą: Vardenis Pavardenis <vardenis@p Gui::Dialog::DlgSettingsNavigation - + Navigation Naršymas @@ -3952,99 +3951,99 @@ Jūs taip pat galite naudoti tokį pavidalą: Vardenis Pavardenis <vardenis@p Sukti iki artimiausio - + Font name of the navigation cube Naršymo kubo šrifto pavadinimas - + Default Numatytasis - + Cube size Kubo dydis - + Size of the navigation cube Naršymo kubo dydis - + Opacity when inactive Nepermatomumas, kai neveikiamas - + Opacity of the navigation cube when not focused Naršymo kubo permatomumas, kai jis nepasirinktas - + Color Spalva - + Base color for all elements Visų narių pagrindinė spalva - + Rotation center indicator Sukimosi taško rodyklis - + Sphere size Rutulio dydis - + Color and transparency Spalva ir skaidrumas - + The size of the rotation center indicator Sukimosi centro žymens dydis - + The color of the rotation center indicator Sukimosi centro žymens spalva - + 3D Navigation Erdvinio naršymo būdai - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Rodyti pelės mygtukų derinius kiekvienai pasirinktai naršymo nuostatai. Pasirinkite rinkinį ir tuomet paspauskite mygtuką pamatyti išvartintus derinius. - + Mouse... Pelė... - + Navigation settings set Naršymo nuostatų rinkinys - + Orbit style Vaizdo sukimo įrankis - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4055,104 +4054,104 @@ Sukamasis stalelis: diktas bus sukama tik apie z ašį (suvaržytos likę ašys) Laisvas sukamasis stalelis: daiktas bus sukamas aplie z ašį. - + Turntable Peržiūra sukant - + Trackball Rutulinis manipuliatorius - + Free Turntable Laisvoji peržiūra sukant ratu - + Rotation mode Sukimo būdas - + Rotations in 3D will use current cursor position as center for rotation Posūkis erdvėje bus atliekamas apie esamoje žymeklio padėtyje esantį sukimosi tašką - + Window center Lango vidurys - + Drag at cursor Vilkti ties žymekliu - + Object center Daikto vidurys - + Default camera orientation Numatytoji kameros padėtis - + Default camera orientation when creating a new document or selecting the home view Numatytoji kameros padėtis kai kuriamas naujas dokumentas ar pasirenkamas pradinis rodinys - + Camera zoom Kameros priartinimas - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Nustato kameros priartinimo lygį naujiems dokumentams. Dydis yra sferos, telpančios ekrane, skersmuo. - + mm mm - + Animations Animacijos - + Enable spinning animations that are used in some navigation styles after dragging Po tempimo, įgalinti sukimo animacijas, kurios yra naudojamos kai kuriuose naršymo būduose - + Enable spinning animations Įgalinti sukimo animacijas - + Duration of navigation animations that have a fixed duration Apibrėžta naršymo animacijų trukmė - + Animation duration Animacijos trukmė - + The duration of navigation animations in milliseconds Naršymo animacijos trukmė milisekundėmis - + Zoom step Mastelio keitimo žingsnis @@ -4162,34 +4161,34 @@ Dydis yra sferos, telpančios ekrane, skersmuo. Šrifto pavadinimas - + Zoom operations will be performed at position of mouse pointer Priartinimo veiksmas bus atliekamas pelės žymeklio taško atžvilgiu - + Zoom at cursor Priartinti vaizdą ties žymekliu - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Kaip bus pakeistas mastelis. Mastelio keitimo žingsnis „1“ reiškia 7,5 kartų priartinimą (tolinimą) mastelio keitimo žingsniui. - + Direction of zoom operations will be inverted Mastelio keitimo veiksmas bus apgręžtas - + Invert zoom Apgręžtas didinimas - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4197,7 +4196,7 @@ Mouse tilting is not disabled by this setting. Paveikia tik įjungus naršymo gestais veikseną. Naudojant šį nustatymą pelės pakreipimas nėra išjungtas. - + Disable touchscreen tilt gesture Išjungti pasukimo gestą jutikliniame ekrane @@ -4664,7 +4663,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Padėtis @@ -5248,32 +5247,17 @@ The 'Status' column shows whether the document could be recovered. Atstatyti - - OK - Gerai - - - - Close - Užverti - - - - Apply - Pritaikyti - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Prieš paspausdami šį mygtuką, pažymėkite 1–3 taškus. Taškas turi būti viršūnėje, sienoje ar kraštinėje. Jei taškas yra sienoje ar kraštinėje, naudojamas taškas bus žymeklio vietoje esantis taškas, sutampantis su siena ar kraštine. Jei pasirinktas vienas taškas, jis bus naudojamas kaip sukimosi taškas. Jei pasirinkti du taškai, tai jas jungiančios atkarpos vidurio taškas bus naudojamas kaip sukimosi taškas; jei reikės, bus sukurta ir sukimosi ašis. Jei pasirinkti trys taškai, pirmasis pasirinktas taškas bus sukimosi taškas, kuris yra vektoriuje, statmename trimis taškais apibrėžtai plokštumai. Tam tikri atstumo ir kampo duomenys, naudingi daiktų sutapdinimui, bus pateikiami ataskaitos rodinyje. Jūsų patogumui, paspaudus „Shift“ ir pelės mygtuką, atitinkamas atstumas ar kampas bus nukopijuotas į mainų sritį. - + Incorrect quantity Neteisingas kiekis - + There are input fields with incorrect input, please ensure valid placement values! Yra laukų su neteisinga įvestimi, prašom jas pakeisti į tinkamas padėties vertes! @@ -5412,13 +5396,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Atšaukti - - - - + Transform Keisti @@ -5809,13 +5787,13 @@ Ar norite įrašyti keitimus? Gui::FileChooser - - + + Select a file Pasirinkti failą - + Select a directory Pasirinkite aplanką @@ -5823,13 +5801,13 @@ Ar norite įrašyti keitimus? Gui::FileDialog - + Save as Išsaugoti kaip - - + + Open Atverti @@ -5837,12 +5815,12 @@ Ar norite įrašyti keitimus? Gui::FileOptionsDialog - + Extended Plačiau - + All files (*.*) Visų rūšių failai (*.*) @@ -6019,7 +5997,7 @@ Ar norite įrašyti keitimus? Gui::LabelEditor - + List Sąrašas @@ -6136,57 +6114,57 @@ Ar norite įrašyti keitimus? Gui::MainWindow - + Dimension Matmuo - + Ready Paruošta - + Close All Užverti viską - - - + + + Toggles this toolbar Perjungia šią įrankių juostą - - - + + + Toggles this dockable window Paslepia ar padaro matomu šį įstatomą langą - + WARNING: This is a development version. PERSPĖJIMAS: Tai yra tobulinimo laida. - + Please do not use it in a production environment. Prašome nenaudoti to gamybinėje aplinkoje. - - + + Unsaved document Neišsaugotas dokumentas - + The exported object contains external link. Please save the documentat least once before exporting. Eksportuotas daiktas turi išorinių saitų. Prašom prieš eksportuojant išsaugoti dokumentą bent kartą. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Kad būtų susietas su išoriniais daiktais, dokumentas turi būti bent kartą išsaugotas. @@ -6777,12 +6755,12 @@ Ar norite išeiti neišsaugoję duomenų? Gui::SelectModule - + Select module Pasirinkti modulį - + Open %1 as Atidaryti %1 kaip @@ -7318,7 +7296,7 @@ Ar norėtumėte nurodyti kitą aplanką? Gui::TreeDockWidget - + Tree view Medžio rodinys @@ -7326,7 +7304,7 @@ Ar norėtumėte nurodyti kitą aplanką? Gui::TreePanel - + Search Paieška @@ -7384,148 +7362,148 @@ Ar norėtumėte nurodyti kitą aplanką? Grupė - + Labels & Attributes Pavadinimai ir požymiai - + Description Aprašymas - + Internal name Vidinis pavadinimas - + Show items hidden in tree view Rodyti narius, paslėptus medžio rodinyje - + Show items that are marked as 'hidden' in the tree view Rodyti narius, pažymėtus kaip paslėptus medžio rodinyje - + Toggle visibility in tree view Perjungti rodyti arba slėpti medžio rodinyje - + Toggles the visibility of selected items in the tree view Parodo arba paslepia pasirinktus narius medžio rodinyje - + Create group Sukurti grupę - + Create a group Sukurti grupę - - + + Rename Pervardyti - + Rename object Pervardyti objektą - + Finish editing Baigti taisymą - + Finish editing object Baigti taisyti daiktą - + Add dependent objects to selection Pasirinkti ir susijusius narius - + Adds all dependent objects to the selection Prie pasirinkimo prideda ir susijusius narius - + Close document Užverti dokumentą - + Close the document Užverti dokumentą - + Reload document Iš naujo atverti dokumentą - + Reload a partially loaded document Iš naujo atverti dalinai įkeltą dokumentą - + Skip recomputes Praleisti perskaičiavimus - + Enable or disable recomputations of document Įgalina arba nedaro dokumento perskaičiavimų - + Allow partial recomputes Leisti dalinius savybių perskaičiavimus - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Įgalinti ar uždrausti taisomo daikto savybių perskaičiavimą, kai yra įgalintas „perskaičiavimo praleidimas“ - + Mark to recompute Pažymėti perskaičiavimui - + Mark this object to be recomputed Pažymėti šį daiktą perskaičiavimui - + Recompute object Perskaičiuoti daikto savybes - + Recompute the selected object Perskaičiuoti pasirinkto daikto savybes - + (but must be executed) (bet turi būti įvykdyta) - + %1, Internal name: %2 %1, vidinis pavadinimas: %2 @@ -7722,14 +7700,14 @@ Ar norėtumėte nurodyti kitą aplanką? PropertyListDialog - - + + Invalid input Blogai įvesta informacija - - + + Input in line %1 is not a number Eilutėje %1 įrašytas ne skaičius @@ -7737,47 +7715,47 @@ Ar norėtumėte nurodyti kitą aplanką? QDockWidget - + Tree view Medžio langas - + Tasks Užduotys - + Property view Savybių langas - + Selection view Pasirinkimo rodinys - + Task List Užduočių sąrašas - + Model Modelis - + DAG View DAG rodinys - + Report view Ataskaitos rodinys - + Python console Python'o konsolė @@ -7817,45 +7795,71 @@ Ar norėtumėte nurodyti kitą aplanką? „Python“ - - - + + + Unknown filetype Nežinoma failo rūšis - - + + Cannot open unknown filetype: %1 Neįmanoma atverti nežinomos rūšies failo: %1 - + Export failed Eksportavimas nepavyko - + Cannot save to unknown filetype: %1 Neįmanoma įrašyti į nežinomos rūšies failą: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Darbastalio triktis - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Šioje sistemoje veikia OpenGL %1.%2. FreeCAD reikalinga OpenGL 2.0 arba naujesnė versija. Jei reikia, atnaujinkite grafikos tvarkyklę ir (arba) plokštę. - + Invalid OpenGL Version Netinkama OpenGL laida @@ -7906,7 +7910,7 @@ Ar norėtumėte nurodyti kitą aplanką? Išsaugoma į PDF... - + Unsaved document Neišsaugotas dokumentas @@ -7917,49 +7921,49 @@ Ar norėtumėte nurodyti kitą aplanką? Eksportuotas daiktas turi išorinių saitų. Prašom prieš eksportuojant išsaugoti dokumentą bent kartą. - + Delete failed Trynimas nepavyko - + Dependency error Priklausomybės klaida - + Copy selected Kopijuoti pasirinkimą - + Copy active document Kopijuoti veikiamąjį dokumentą - + Copy all documents Kopijuoti visus dokumentus - + Paste Įklijuoti - + Expression error Išraiškos klaida - + Failed to parse some of the expressions. Please check the Report View for more details. Nepavyko apdoroti kai kurių išraiškų. Norėdami gauti daugiau informacijos, patikrinkite ataskaitos rodinį. - + Failed to paste expressions Nepavyko įdėti išraiškų @@ -8198,7 +8202,7 @@ Ar norite tęsti? Per daug atidarytų neįkyrių pranešimų. Pranešimai pradėti praleidinėti! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8207,44 +8211,44 @@ Ar norite tęsti? - + Are you sure you want to continue? Ar tikrai norite tęsti? - + Please check report view for more... Norėdami sužinoti daugiau, peržiūrėkite ataskaitos rodinį... - + Physical path: Fizinis kelias: - - + + Document: Dokumentas: - - + + Path: Kelias: - + Identical physical path Tapatus fizinis kelias - + Could not save document Nepavyko išsaugoti dokumento - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8257,102 +8261,102 @@ Would you like to save the file with a different name? Ar norite išsaugoti failą kitu pavadinimu? - - - + + + Saving aborted Įrašymas nutrauktas - + Save dependent files Saugoti priklausomas rinkmenas - + The file contains external dependencies. Do you want to save the dependent files, too? Faile yra išorinių saitų su priklausomais failais. Ar norite išsaugoti ir priklausomus failus? - - + + Saving document failed Nepavyko įrašyti dokumento - + Save document under new filename... Įrašyti dokumentą nauju pavadinimu... - - + + Save %1 Document Įrašyti %1 dokumentą - + Document Dokumentas - - + + Failed to save document Nepavyko išsaugoti dokumento - + Documents contains cyclic dependencies. Do you still want to save them? Dokumentuose yra žiedinių priklausomybių. Ar vistiek norite juos išsaugoti? - + Save a copy of the document under new filename... Įrašyti dokumento kopiją nauju pavadinimu... - + %1 document (*.FCStd) %1 dokumentas (*. FCStd) - + Document not closable Dokumentas neužveriamas - + The document is not closable for the moment. Dokumento šiuo metu neįmanoma užverti. - + Document not saved Dokumentas neišsaugotas - + The document%1 could not be saved. Do you want to cancel closing it? Dokumento %1 nepavyko išsaugoti. Ar norite atšaukti jo uždarymą? - + Undo Atšaukti - + Redo Pakartoti - + There are grouped transactions in the following documents with other preceding transactions Toliau pateiktuose dokumentuose veiksmai yra sugrkitomisugrupuais ankstesniais veiksmais - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8425,12 +8429,12 @@ Norėdami nutraukti veiksmus, pasirinkite „Nutraukti“ Parinktys... - + Out of memory Trūksta atminties - + Not enough memory available to display the data. Nepakanka atminties duomenų atvaizdavimui. @@ -8446,7 +8450,7 @@ Norėdami nutraukti veiksmus, pasirinkite „Nutraukti“ Nepavyko rasti nei failo %1, nei failo %2, nei failo %3 - + Navigation styles Naršymo būdai @@ -8462,32 +8466,32 @@ Norėdami nutraukti veiksmus, pasirinkite „Nutraukti“ Ar norite uždaryti šį dialogo langą? - + Do you want to save your changes to document '%1' before closing? Ar norite įrašyti keitimus į dokumentą „%1“ prieš užveriant? - + Do you want to save your changes to document before closing? Ar norite įrašyti keitimus prieš užveriant? - + If you don't save, your changes will be lost. Jei neįrašysite, jūsų pakeitimai bus prarasti. - + Apply answer to all Pritaikyti atsakymą visiems - + %1 Document(s) not saved %1 dokumentas(-i) neišsaugotas(-i) - + Some documents could not be saved. Do you want to cancel closing? Kai kurie dokumentai negli būti išsaugoti. Ar norėtumėte atšaukti uždarymą? @@ -8623,8 +8627,8 @@ underscore, and must not start with a digit. Nepavyko pridėti ypatybės į '%1': %2 - - + + Drag & drop failed Nuvilkimas nepavyko @@ -8917,12 +8921,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Neleidžiama: - + Selection not allowed by filter Atranka neleidžiama filtro @@ -9010,13 +9014,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Lygiavimas... - - + + Align the selected objects Lygiuoti pažymėtus daiktus @@ -9300,17 +9304,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode &Taisyti/baigti taisymą - + Toggles the selected object's edit mode Įgalinamas arba užbaigiamas pažymėto daikto taisymas - + Activates or Deactivates the selected object's edit mode Įgalinamas arba išjungiamas pažymėto daikto taisymas @@ -9342,13 +9346,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Išraiškos veiksmai - - + + Actions that apply to expressions Veiksmai, taikomi išraiškoms @@ -9809,7 +9813,7 @@ underscore, and must not start with a digit. Sukurti naują tuščią dokumentą - + Unnamed Be pavadinimo @@ -9907,13 +9911,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Išdėstymas... - - + + Place the selected objects Išdėstyti pažymėtus daiktus @@ -10051,13 +10055,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Atnaujinti - - + + Recomputes the current active document Iš naujo perskaičiuoti rengiamo dokumento duomenis @@ -10401,13 +10405,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformacija... - - + + Transform the geometry of selected objects Pakeičia pažymėtų objektų pavidalą @@ -10415,13 +10419,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Keisti - - + + Transform the selected object in the 3d view Transformuoti pažymėtą objektą erdviniame rodinyje @@ -11277,7 +11281,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11288,7 +11292,7 @@ Ar esate įsitikinę, kad norite tęsti? - + Object dependencies Daikto priklausomybės @@ -11400,7 +11404,7 @@ Ar norit išsaugoti dokumentą dabar? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12166,8 +12170,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Įvyko klaida – paaiškinimo ieškokite ataskaitos rodinyje @@ -12913,65 +12917,40 @@ from Python console to Report view panel Šviesos šaltiniai - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Šviesos šaltiniai - + Light source Šviesos šaltinis - + Intensity Šviesos stipris - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Kryptis - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13376,12 +13355,12 @@ Spustelėjimo suveikimas galimas tik tuo atveju, jei visi taškai nagrinėjamoje StdCmdProperties - + Properties Savybės - + Show the property view, which displays the properties of the selected object. Rodyti savybių rodinį, kuris atvaizduoja pažymėto daikto savybes. diff --git a/src/Gui/Language/FreeCAD_nl.ts b/src/Gui/Language/FreeCAD_nl.ts index 6c4ee55413..a3b00a4f9a 100644 --- a/src/Gui/Language/FreeCAD_nl.ts +++ b/src/Gui/Language/FreeCAD_nl.ts @@ -91,17 +91,17 @@ Bewerken - + Import Importeren - + Delete Verwijderen - + Paste expressions Paste expressions @@ -156,8 +156,7 @@ Uitlijnen - - + Placement Plaatsing @@ -425,42 +424,42 @@ EditMode - + Default Standaard - + The object will be edited using the mode defined internally to be the most appropriate for the object type Het object zal worden bewerkt met behulp van de intern gedefinieerde modus die het meest geschikt is voor dit type object - + Transform Transformeren - + The object will have its placement editable with the Std TransformManip command De plaatsing van het object kan worden bewerkt met de Std TransformManip opdracht - + Cutting Snijden - + This edit mode is implemented as available but currently does not seem to be used by any object Deze bewerkingsmodus is geïmplementeerd zoals nu beschikbaar maar lijkt momenteel niet te worden gebruikt door een object - + Color Kleur - + The object will have the color of its individual faces editable with the Part FaceAppearances command De kleur van de individuele vlakken van het object kunnen worden bewerkt met de opdracht Weergave-Kleur per vlak @@ -1995,7 +1994,7 @@ Misschien een fout met bestandsrechten? % - % + % @@ -3892,7 +3891,7 @@ U kunt ook het formulier gebruiken: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigatie @@ -3952,99 +3951,99 @@ U kunt ook het formulier gebruiken: John Doe <john@doe.com> Draai naar dichtstbijzijnde - + Font name of the navigation cube Lettertype naam van de navigatiekubus - + Default Standaard - + Cube size Kubus grootte - + Size of the navigation cube Grootte van de navigatie kubus - + Opacity when inactive Transparantie indien inactief - + Opacity of the navigation cube when not focused Transparantie van de navigatiekubus indien niet gefocust - + Color Kleur - + Base color for all elements Basiskleur voor alle elementen - + Rotation center indicator Rotatiemiddelpunt indicator - + Sphere size Bol grootte - + Color and transparency Kleur en transparantie - + The size of the rotation center indicator De grootte van de rotatiemiddelpunt indicator - + The color of the rotation center indicator De kleur van de rotatiemiddelpunt indicator - + 3D Navigation 3D-navigatie - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Geef een lijst met de configuratie van de muisknop voor elke gekozen navigatie-instelling. Selecteer een set en druk vervolgens op de knop om deze configuraties te bekijken. - + Mouse... Muis... - + Navigation settings set Navigatie voorkeuren ingesteld - + Orbit style Rotatiebaan stijl - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4055,104 +4054,104 @@ Draaitafel: het object wordt rond de z-as gedraaid (met beperkte assen). Vrije draaitafel: het object zal worden gedraaid rond de z-as. - + Turntable Draaitafel - + Trackball Trackball - + Free Turntable Vrije draaitafel - + Rotation mode Draai modus - + Rotations in 3D will use current cursor position as center for rotation Rotaties in 3D zullen de huidige cursorpositie als middelpunt voor de rotatie gebruiken - + Window center Venster midden - + Drag at cursor Sleep bij cursor - + Object center Object midden - + Default camera orientation Standaard cameraoriëntatie - + Default camera orientation when creating a new document or selecting the home view Standaard cameraoriëntatie bij het aanmaken van een nieuw document of het selecteren van het startscherm - + Camera zoom Camera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Stelt de camerazoom in voor nieuwe documenten. De waarde is de diameter van de bol die op het scherm past. - + mm mm - + Animations Animaties - + Enable spinning animations that are used in some navigation styles after dragging Activeer ronddraaiende animaties die in sommige navigatiestijlen worden gebruikt na het slepen - + Enable spinning animations Activeer ronddraaiende animaties - + Duration of navigation animations that have a fixed duration Tijdsduur van de navigatie animaties met een vaste duur - + Animation duration Duur van de animatie - + The duration of navigation animations in milliseconds De tijdsduur van de navigatie animaties in milliseconden - + Zoom step Zoomstap @@ -4162,34 +4161,34 @@ De waarde is de diameter van de bol die op het scherm past. Font naam - + Zoom operations will be performed at position of mouse pointer Zoombewerkingen worden uitgevoerd bij de positie van de muisaanwijzer - + Zoom at cursor Inzoomen bij cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Hoeveel er ingezoomd zal worden. Zoomstap van '1' betekent een factor 7,5 voor elke zoomstap. - + Direction of zoom operations will be inverted Richting van zoombewerkingen zullen omgedraaid worden - + Invert zoom Zoom omkeren - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4198,7 +4197,7 @@ Beïnvloedt alleen navigatie met gebaren. Kantelen met de muis wordt niet uitgeschakeld door deze instelling. - + Disable touchscreen tilt gesture Touchscreen kantel gebaar uitschakelen @@ -4665,7 +4664,7 @@ Het voorkeurssysteem is het systeem dat in de algemene voorkeuren is ingesteld.< Gui::Dialog::DockablePlacement - + Placement Plaatsing @@ -5249,32 +5248,17 @@ The 'Status' column shows whether the document could be recovered. Herstel - - OK - OK - - - - Close - Sluiten - - - - Apply - Toepassen - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Gelieve 1, 2 of 3 punten te selecteren voordat u op deze knop klikt. Een punt kan op een eindpunt, vlak of rand zijn. Indien op een vlak of rand, zal het gebruikte punt het punt zijn dat zich op de positie van de muis langs het vlak of de rand bevindt. Als 1 punt wordt geselecteerd, wordt het gebruikt als draaipunt. Als 2 punten worden geselecteerd, is het middelpunt daarvan het draaipunt en wordt er zo nodig een nieuwe aangepaste as gemaakt. Als 3 punten worden geselecteerd, wordt het eerste punt het draaipunt en ligt het op de vector die normaal is voor het vlak gedefinieerd door de 3 punten. Enige informatie over afstand en hoek wordt in de rapportweergave gegeven, wat nuttig kan zijn bij het uitlijnen van objecten. Voor uw gemak wordt, wanneer Shift + klik gebruikt worden, de juiste afstand of hoek naar het klembord gekopieerd. - + Incorrect quantity Verkeerd aantal - + There are input fields with incorrect input, please ensure valid placement values! Er zijn invoervelden met verkeerde input, zorg voor geldige waarden van plaatsing! @@ -5413,13 +5397,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Annuleren - - - - + Transform Transformeren @@ -5808,13 +5786,13 @@ Wilt u uw wijzigingen opslaan? Gui::FileChooser - - + + Select a file Selecteer een bestand - + Select a directory Kies een map @@ -5822,13 +5800,13 @@ Wilt u uw wijzigingen opslaan? Gui::FileDialog - + Save as Opslaan als - - + + Open Openen @@ -5836,12 +5814,12 @@ Wilt u uw wijzigingen opslaan? Gui::FileOptionsDialog - + Extended Uitgebreid - + All files (*.*) Alle bestanden (*.*) @@ -6018,7 +5996,7 @@ Wilt u uw wijzigingen opslaan? Gui::LabelEditor - + List Lijst @@ -6135,57 +6113,57 @@ Wilt u uw wijzigingen opslaan? Gui::MainWindow - + Dimension Afmeting - + Ready Gereed - + Close All Alles sluiten - - - + + + Toggles this toolbar Schakelt deze werkbalk in/uit - - - + + + Toggles this dockable window Schakelt dit dokbare venster in/uit - + WARNING: This is a development version. WAARSCHUWING: Dit is een ontwikkelversie. - + Please do not use it in a production environment. Gebruik het alstublieft niet in een productieomgeving. - - + + Unsaved document Niet-opgeslagen document - + The exported object contains external link. Please save the documentat least once before exporting. Het geëxporteerde object bevat een externe link. Sla het document minstens één keer op voordat u het exporteert. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Om een link naar externe objecten te kunnen maken, moet het document minstens één keer worden opgeslagen. @@ -6773,12 +6751,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Module selecteren - + Open %1 as Open %1 als @@ -7312,7 +7290,7 @@ Wilt u een andere map opgeven? Gui::TreeDockWidget - + Tree view Boomstructuurweergave @@ -7320,7 +7298,7 @@ Wilt u een andere map opgeven? Gui::TreePanel - + Search Zoeken @@ -7378,148 +7356,148 @@ Wilt u een andere map opgeven? Groep - + Labels & Attributes Labels & attributen - + Description Omschrijving - + Internal name Interne naam - + Show items hidden in tree view Items verborgen in boomweergave weergeven - + Show items that are marked as 'hidden' in the tree view Toon items die in de structuurweergave gemarkeerd zijn als 'verborgen' - + Toggle visibility in tree view Zichtbaarheid in de structuurweergave in-/uitschakelen - + Toggles the visibility of selected items in the tree view Schakelt de zichtbaarheid, in de structuurweergave, van de geselecteerde items aan/uit - + Create group Groep maken - + Create a group Maak een groep - - + + Rename Hernoemen - + Rename object Object hernoemen - + Finish editing Bewerken gereed - + Finish editing object Beëindig bewerken object - + Add dependent objects to selection Afhankelijke objecten toevoegen aan selectie - + Adds all dependent objects to the selection Voegt alle afhankelijke objecten aan de selectie toe - + Close document Sluit document - + Close the document Sluit het document - + Reload document Document opnieuw laden - + Reload a partially loaded document Herlaad een gedeeltelijk geladen document - + Skip recomputes Herberekening overslaan - + Enable or disable recomputations of document Herberekening van het document in- of uitschakelen - + Allow partial recomputes Sta gedeeltelijke herberekeningen toe - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Herberekening van het bewerkingsobject in- of uitschakelen wanneer 'herberekening overslaan' is ingeschakeld - + Mark to recompute Markeren om te herberekenen - + Mark this object to be recomputed Object opnieuw berekenen - + Recompute object Herbereken object - + Recompute the selected object Het geselecteerde object herberekenen - + (but must be executed) (maar moet worden uitgevoerd) - + %1, Internal name: %2 %1, interne naam: %2 @@ -7716,14 +7694,14 @@ Wilt u een andere map opgeven? PropertyListDialog - - + + Invalid input Ongeldige invoer - - + + Input in line %1 is not a number Input in lijn %1 is geen getal @@ -7731,47 +7709,47 @@ Wilt u een andere map opgeven? QDockWidget - + Tree view Boomstructuurweergave - + Tasks Taken - + Property view Eigenschappen-aanzicht - + Selection view Selectieweergave - + Task List Taken lijst - + Model Model - + DAG View DAG weergave - + Report view Rapportweergave - + Python console Python Console @@ -7811,45 +7789,71 @@ Wilt u een andere map opgeven? Python - - - + + + Unknown filetype Onbekend bestandstype - - + + Cannot open unknown filetype: %1 Kan onbekende bestandstype niet openen: %1 - + Export failed Exporteren mislukt - + Cannot save to unknown filetype: %1 Kan onbekende bestandstype niet opslaan: %1 - + + Recomputation required + Herberekening vereist + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Een (aantal) document(en) vereis(t)en herberekening voor migratie doeleinden. Het is ten zeerste aanbevolen een herberekening uit te voeren, voorafgaand aan verdere aanpassingen, om compatibiliteitsproblemen te voorkomen. + +Wilt u nu herberekenen? + + + + Recompute error + Herberekenings fout + + + + Failed to recompute some document(s). +Please check report view for more details. + Kan sommige document(en) niet herberekenen. +Controleer de rapportweergave voor meer details. + + + Workbench failure Werkbank falen - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Dit systeem draait OpenGL %1.%2. FreeCAD vereist OpenGL 2.0 of hoger. Upgrade uw grafische stuurprogramma en/of grafische kaart indien nodig. - + Invalid OpenGL Version Verkeerde OpenGL versie @@ -7900,7 +7904,7 @@ Wilt u een andere map opgeven? Exporteren van PDF ... - + Unsaved document Niet-opgeslagen document @@ -7911,50 +7915,50 @@ Wilt u een andere map opgeven? Het geëxporteerde object bevat een externe link. Sla het document minstens één keer op voordat u het exporteert. - + Delete failed Verwijderen mislukt - + Dependency error Afhankelijkheidsfout - + Copy selected Kopieer geselecteerde - + Copy active document Kopieer actief document - + Copy all documents Kopieer alle documenten - + Paste Plakken - + Expression error Expressiefout - + Failed to parse some of the expressions. Please check the Report View for more details. Het ontleden van sommige uitdrukkingen is mislukt. Gelieve de rapportweergave te raadplegen voor meer details. - + Failed to paste expressions Fout bij het plakken van expressie @@ -8192,7 +8196,7 @@ Do you want to continue? Te veel geopende achtergrond meldingen. Meldingen worden weggelaten! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8201,44 +8205,44 @@ Do you want to continue? - + Are you sure you want to continue? Weet u zeker dat u wilt doorgaan? - + Please check report view for more... Controleer de rapportweergave voor meer... - + Physical path: Fysiek pad: - - + + Document: Document: - - + + Path: PAD: - + Identical physical path Identische fysieke pad - + Could not save document Kan verzending niet opslaan - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8251,102 +8255,102 @@ Would you like to save the file with a different name? Wilt u het bestand met een andere naam opslaan? - - - + + + Saving aborted Opslaan afgebroken - + Save dependent files Bewaar afhankelijke bestanden - + The file contains external dependencies. Do you want to save the dependent files, too? Het bestand bevat externe afhankelijkheden. Wilt u ook de afhankelijke bestanden opslaan? - - + + Saving document failed Document opslaan is mislukt - + Save document under new filename... Document opslaan onder een nieuwe bestandsnaam... - - + + Save %1 Document Document %1 opslaan - + Document Document - - + + Failed to save document Opslaan document mislukt - + Documents contains cyclic dependencies. Do you still want to save them? Documenten bevatten cyclische afhankelijkheden. Wilt u ze nog opslaan? - + Save a copy of the document under new filename... Bewaar een copy van het actieve document onder een nieuwe naam... - + %1 document (*.FCStd) %1 document (*.FCStd) - + Document not closable Document niet te sluiten - + The document is not closable for the moment. Het document kan nu niet gesloten worden. - + Document not saved Document niet opgeslagen - + The document%1 could not be saved. Do you want to cancel closing it? Het document%1 kon niet worden opgeslagen. Wilt u het sluiten annuleren? - + Undo Ongedaan maken - + Redo Herstel ongedaan maken - + There are grouped transactions in the following documents with other preceding transactions Er zijn gegroepeerde transacties in de volgende documenten met andere voorgaande transacties - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8419,12 +8423,12 @@ Kies 'Afbreken' om af te breken Opties... - + Out of memory Onvoldoende geheugen - + Not enough memory available to display the data. Niet genoeg geheugen beschikbaar om de gegevens weer te geven. @@ -8440,7 +8444,7 @@ Kies 'Afbreken' om af te breken Kan bestand %1 niet vinden noch in %2, noch in %3 - + Navigation styles Navigatie stijlen @@ -8456,32 +8460,32 @@ Kies 'Afbreken' om af te breken Wilt u dit dialoogvenster sluiten? - + Do you want to save your changes to document '%1' before closing? Wil je de wijzigingen in het document '%1' opslaan alvorens te sluiten? - + Do you want to save your changes to document before closing? Wilt u de wijzigingen aan het document opslaan voordat u afsluit? - + If you don't save, your changes will be lost. Als u niet opslaat, zullen uw wijzigingen verloren gaan. - + Apply answer to all Antwoord op alles toepassen - + %1 Document(s) not saved %1 Document(en) niet opgeslagen - + Some documents could not be saved. Do you want to cancel closing? Sommige documenten konden niet worden opgeslagen. Wilt u het sluiten annuleren? @@ -8618,8 +8622,8 @@ underscore bevatten en mag niet beginnen met een cijfer. Eigenschap toevoegen aan '%1': %2 mislukt - - + + Drag & drop failed Verslepen en neerzetten mislukt @@ -8912,12 +8916,12 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. SelectionFilter - + Not allowed: Niet toegestaan: - + Selection not allowed by filter Selectie niet toegestaan door het filter @@ -9005,13 +9009,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdAlignment - + Alignment... Uitlijning... - - + + Align the selected objects Lijn de geselecteerde objecten uit @@ -9295,17 +9299,17 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdEdit - + Toggle &Edit mode Bewerkingsmode - + Toggles the selected object's edit mode Verander de bewerkingsmode van het geselecteerde object - + Activates or Deactivates the selected object's edit mode Activeert of deactiveert de bewerkingsmodus van het geselecteerde object @@ -9337,13 +9341,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdExpression - + Expression actions Expressieacties - - + + Actions that apply to expressions Acties die van toepassing zijn op expressies @@ -9804,7 +9808,7 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. Maak een nieuw leeg document - + Unnamed Naamloos @@ -9902,13 +9906,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdPlacement - + Placement... Plaatsing... - - + + Place the selected objects Plaats de geselecteerde objecten @@ -10046,13 +10050,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdRefresh - + &Refresh &Verversen - - + + Recomputes the current active document Het huidige actieve document herberekenen @@ -10396,13 +10400,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdTransform - + Transform... Verander... - - + + Transform the geometry of selected objects Verander de geometrie van de geselecteerde objecten @@ -10410,13 +10414,13 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. StdCmdTransformManip - + Transform Transformeren - - + + Transform the selected object in the 3d view Transformeren van het geselecteerde object in de 3D-weergave @@ -11272,7 +11276,7 @@ onderstrepingsteken, en mag niet beginnen met een cijfer. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11283,7 +11287,7 @@ Weet u zeker dat u wilt doorgaan? - + Object dependencies Object afhankelijkheden @@ -11395,7 +11399,7 @@ Wilt u het document nu opslaan? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12163,8 +12167,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Er is een fout opgetreden - zie Report View voor informatie @@ -12920,65 +12924,40 @@ van de Python-console naar het rapportweergavepaneel Lichtbronnen - + + Push In + Vergroot + + + + Pull Out + Verklein + + + Light sources Lichtbronnen - + Light source Lichtbron - + Intensity Intensiteit - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Pas de oriëntatie van de gerichte lichtbron aan door de handgreep met de muis te verslepen of door de spin box te gebruiken voor de detailafstelling. - + Direction Richting - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - z - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13384,12 +13363,12 @@ the region are non-opaque. StdCmdProperties - + Properties Instellingen - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_pl.ts b/src/Gui/Language/FreeCAD_pl.ts index 1ab56bb024..44f2f8d0fc 100644 --- a/src/Gui/Language/FreeCAD_pl.ts +++ b/src/Gui/Language/FreeCAD_pl.ts @@ -91,17 +91,17 @@ Edycja - + Import Importuj - + Delete Usuń - + Paste expressions Wklej wyrażenia @@ -156,8 +156,7 @@ Wyrównaj - - + Placement Umiejscowienie @@ -425,42 +424,42 @@ EditMode - + Default Domyślnie - + The object will be edited using the mode defined internally to be the most appropriate for the object type Obiekt będzie edytowany przy użyciu trybu zdefiniowanego wewnętrznie, aby był najbardziej odpowiedni dla typu obiektu - + Transform Przemieszczenie - + The object will have its placement editable with the Std TransformManip command Obiekt będzie miał umiejscowienie edytowalne za pomocą polecenia Przemieszczenie - + Cutting Cięcie - + This edit mode is implemented as available but currently does not seem to be used by any object Ten tryb edycji jest zaimplementowany jako dostępny, ale obecnie nie wydaje się być używany przez żaden obiekt - + Color Kolor - + The object will have the color of its individual faces editable with the Part FaceAppearances command Kolor poszczególnych ścian obiektu będzie można edytować za pomocą polecenia Kolor dla ściany środowiska Część @@ -1999,7 +1998,7 @@ Możliwy błąd dostępu do pliku? % - % + % @@ -3909,7 +3908,7 @@ Możesz również skorzystać z formatki: John Doe <john@doe.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Nawigacja @@ -3969,99 +3968,99 @@ Możesz również skorzystać z formatki: John Doe <john@doe.com>Obróć do najbliższego - + Font name of the navigation cube Nazwa czcionki kostki nawigacyjnej - + Default Domyślny - + Cube size Rozmiar kostki nawigacyjnej - + Size of the navigation cube Rozmiar kostki nawigacyjnej - + Opacity when inactive Przezroczystość, gdy nieaktywne - + Opacity of the navigation cube when not focused Kostka nawigacyjna będzie przezroczysta, gdy nie znajduje się pod kursorem myszki - + Color Kolor - + Base color for all elements Podstawowy kolor dla wszystkich elementów - + Rotation center indicator Wskaźnik środka obrotu - + Sphere size Rozmiar sfery - + Color and transparency Kolor i przezroczystość - + The size of the rotation center indicator Rozmiar wskaźnika środka obrotu - + The color of the rotation center indicator Kolor wskaźnika środka obrotu - + 3D Navigation Styl nawigacji w przestrzeni 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Lista konfiguracji przycisku myszki dla każdego wybranego ustawienia nawigacji. Wybierz zestaw, a następnie naciśnij przycisk, w celu wyświetlenia konfiguracji. - + Mouse... Myszka ... - + Navigation settings set Zestaw ustawień nawigacyjnych - + Orbit style Technika obrotu widokiem - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4072,104 +4071,104 @@ Turntable: część zostanie obrócona wokół osi z (z powiązanymi osiami). Free Turntable: część będzie obracana wokół osi z. - + Turntable Turntable - + Trackball Trackball - + Free Turntable Free Turntable - + Rotation mode Tryb obrotu - + Rotations in 3D will use current cursor position as center for rotation Do obrótu w przestrzeni 3D będzie użyta pozycja kursora jako środek obrotu - + Window center Środek okna - + Drag at cursor Przeciągnij kursorem - + Object center Środek obiektu - + Default camera orientation Domyślna orientacja ujęcia widoku - + Default camera orientation when creating a new document or selecting the home view Domyślna orientacja ujęcia widoku podczas tworzenia nowego dokumentu lub wybierania widoku głównego - + Camera zoom Przybliż ujęcie widoku - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Ustawia przybliżenie ujęcia widoku z kamery dla nowych dokumentów. Wartością jest średnica kuli, która ma zmieścić się na ekranie. - + mm mm - + Animations Animacje - + Enable spinning animations that are used in some navigation styles after dragging Włącza animacje obracania, używane w niektórych stylach nawigacji po przeciągnięciu. - + Enable spinning animations Włącz animacje wirowania - + Duration of navigation animations that have a fixed duration Określony czas trwania animacji nawigacji - + Animation duration Czas trwania animacji - + The duration of navigation animations in milliseconds Czas trwania animacji nawigacji w milisekundach - + Zoom step Krok powiększenia @@ -4179,34 +4178,34 @@ Wartością jest średnica kuli, która ma zmieścić się na ekranie.Nazwa czcionki - + Zoom operations will be performed at position of mouse pointer Operacje powiększenia będą wykonywane w odniesieniu dla pozycji kursora myszki - + Zoom at cursor Powiększ przy kursorze - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Określa krok powiększenia Stopień powiększenia "1" oznacza współczynnik 7,5 dla każdego kolejnego kroku powiększenia. - + Direction of zoom operations will be inverted Kierunek wykonania operacji przybliż / oddal zostanie odwrócony - + Invert zoom Odwrócenie operacji przybliż / oddal - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4215,7 +4214,7 @@ Dotyczy tylko nawigacji gestami. Obracanie przy pomocy myszki nie jest blokowane. - + Disable touchscreen tilt gesture Wyłącz gest obrotu na ekranie dotykowym @@ -4687,7 +4686,7 @@ System preferencji to ten, który jest ustawiony w preferencjach ogólnych. Gui::Dialog::DockablePlacement - + Placement Umiejscowienie @@ -5273,32 +5272,17 @@ Kolumna "Aktualny status" pokazuje, czy dokument może być odzyskany.Reset - - OK - OK - - - - Close - Zamknij - - - - Apply - Zastosuj - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Proszę wybrać 1, 2 lub 3 punkty przed kliknięciem na ten przycisk. Punktem może być wierzchołek, ściana lub krawędź. Jeśli zostanie wybrany punkt na ścianie lub na krawędzi, zostanie użyty punkt pozycji myszy na tej ścianie lub wzdłuż tej krawędzi. Jeśli zostanie wybrany 1 punkt, to zostanie on użyty jako środek obrotu. Jeśli zostaną wybrane 2 punkty, to punkt pomiędzy nimi zostanie wybrany jako środek obrotu, a te punkty utworzą nową oś, jeśli jest taka potrzeba. Jeśli zostaną wybrane 3 punkty to pierwszy punkt zostanie użyty jako środek obrotu i jako wierzchołek wektora normalnego do płaszczyzny zdefiniowanej przez te 3 punkty. Niektóre odległości i kąty są pokazane na widoku raportu, mogę być one pomocne przy dopasowywaniu obiektów. Dla Twojej wygody, gdy naciśniesz Shift+Click, to odpowiednia odległość lub kąt są skopiowane do schowka. - + Incorrect quantity Nieprawidłowa ilość - + There are input fields with incorrect input, please ensure valid placement values! Istnieją pola wejściowe z niepoprawnymi danymi, proszę zapewnić prawidłowe rozmieszczenie wartości! @@ -5437,13 +5421,7 @@ Kolumna "Aktualny status" pokazuje, czy dokument może być odzyskany.Gui::Dialog::Transform - - Cancel - Anuluj - - - - + Transform Przemieszczenie @@ -5833,13 +5811,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Wybierz plik - + Select a directory Wybierz katalog @@ -5847,13 +5825,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Zapisz jako - - + + Open Otwórz @@ -5861,12 +5839,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Rozszerz - + All files (*.*) Wszystkie pliki (*.*) @@ -6043,7 +6021,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Lista @@ -6160,57 +6138,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Wymiar - + Ready Gotowe - + Close All Zamknij wszystkie - - - + + + Toggles this toolbar Włącza / wyłącza ten pasek narzędzi - - - + + + Toggles this dockable window Włącza / wyłącza to okno dokujące - + WARNING: This is a development version. UWAGA: To jest wersja deweloperska. - + Please do not use it in a production environment. Proszę nie używać tej wersji w środowisku produkcyjnym. - - + + Unsaved document Dokument niezapisany - + The exported object contains external link. Please save the documentat least once before exporting. Wyeksportowany obiekt zawiera zewnętrzny odnośnik. Proszę zapisać dokument przynajmniej raz przed wyeksportowaniem. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Aby powiązać z obiektami zewnętrznymi, dokument musi być zapisany co najmniej raz. @@ -6799,12 +6777,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Wybierz moduł importera - + Open %1 as Otwórz %1 za pomocą: @@ -7336,7 +7314,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Widok drzewa @@ -7344,7 +7322,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Szukaj @@ -7404,148 +7382,148 @@ Opis elementu można ustawić, naciskając klawisz F2 Grupa - + Labels & Attributes Etykiety i atrybuty - + Description Opis - + Internal name Nazwa wewnętrzna - + Show items hidden in tree view Pokaż elementy ukryte w widoku drzewa - + Show items that are marked as 'hidden' in the tree view Pokaż elementy, które są oznaczone jako "ukryte" w widoku drzewa - + Toggle visibility in tree view Przełącz widoczność w widoku drzewa - + Toggles the visibility of selected items in the tree view Przełącza widoczność wybranych elementów w widoku drzewa - + Create group Utwórz grupę - + Create a group Utwórz grupę - - + + Rename Zmień nazwę - + Rename object Zmiana nazwy obiektu - + Finish editing Zakończ edycję - + Finish editing object Zakończ edycję obiektu - + Add dependent objects to selection Dodaj obiekty zależne do zaznaczenia - + Adds all dependent objects to the selection Dodaje wszystkie obiekty zależne do zaznaczenia - + Close document Zamknij dokument - + Close the document Zamknij dokument - + Reload document Przeładuj dokument - + Reload a partially loaded document Załaduj ponownie częściowo wczytany dokument - + Skip recomputes Pomiń przeliczanie - + Enable or disable recomputations of document Włącz lub wyłącz ponowne przeliczanie dokumentu - + Allow partial recomputes Zezwalaj na częściowe przeliczanie - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Włącz lub wyłącz przeliczanie edytowanego obiektu gdy 'pomijanie przeliczania' jest aktywne - + Mark to recompute Zaznacz do przeliczenia - + Mark this object to be recomputed Zaznacz ten obiekt do przeliczania - + Recompute object Przelicz obiekt - + Recompute the selected object Przelicz wybrany obiekt - + (but must be executed) (ale musi zostać wykonany) - + %1, Internal name: %2 %1, wewnętrzna nazwa: %2 @@ -7742,14 +7720,14 @@ Opis elementu można ustawić, naciskając klawisz F2 PropertyListDialog - - + + Invalid input Niepoprawne dane wejściowe - - + + Input in line %1 is not a number Wprowadzony ciąg znaków w linii %1 nie jest liczbą @@ -7757,47 +7735,47 @@ Opis elementu można ustawić, naciskając klawisz F2 QDockWidget - + Tree view Widok drzewa - + Tasks Zadania - + Property view Widok właściwości - + Selection view Widok wyboru - + Task List Lista zadań - + Model Model - + DAG View Widok DAG - + Report view Widok raportu - + Python console Konsola Python @@ -7837,47 +7815,75 @@ Opis elementu można ustawić, naciskając klawisz F2 Python - - - + + + Unknown filetype Nieznany typ pliku - - + + Cannot open unknown filetype: %1 Nie można otworzyć pliku nieznanego typu: %1 - + Export failed Eksport nie powiódł się - + Cannot save to unknown filetype: %1 Nie można zapisać do pliku nieznanego typu: %1 - + + Recomputation required + Wymagane ponowne obliczenie + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Niektóre dokumenty wymagają ponownego przeliczenia do celów migracji. +Zalecane jest ponowne przeliczenie przed modyfikacją, +w celu uniknięcia problemów kompatybilności. + +Czy chcesz przeliczyć teraz? + + + + Recompute error + Błąd przeliczania + + + + Failed to recompute some document(s). +Please check report view for more details. + Nie udało się przeliczyć niektórych dokumentów. +Sprawdź widok raportu, aby uzyskać więcej informacji. + + + Workbench failure Awaria środowiska pracy - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. W tym systemie działa OpenGL w wersji %1.%2. FreeCAD wymaga OpenGL 2.0 lub nowszego. W razie potrzeby zaktualizuj sterownik i / lub kartę graficzną. - + Invalid OpenGL Version Nieprawidłowa wersja OpenGL @@ -7931,7 +7937,7 @@ na temat obiektów, których to dotyczy. Eksportuj do PDF... - + Unsaved document Niezapisany dokument @@ -7942,50 +7948,50 @@ na temat obiektów, których to dotyczy. Wyeksportowany obiekt zawiera zewnętrzny odnośnik. Proszę zapisać dokument przynajmniej raz przed wyeksportowaniem. - + Delete failed Usunięcie nie powiodło się - + Dependency error Błąd zależności - + Copy selected Kopiuj zaznaczone - + Copy active document Kopiuj aktywny dokument - + Copy all documents Kopiuj wszystkie dokumenty - + Paste Wklej - + Expression error Błąd wyrażenia - + Failed to parse some of the expressions. Please check the Report View for more details. Nie udało się przetworzyć niektórych wyrażeń. Sprawdź widok raportu, aby uzyskać więcej informacji. - + Failed to paste expressions Nie udało się wkleić wyrażeń @@ -8224,7 +8230,7 @@ Do you want to continue? Powiadomienia są pomijane! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8233,44 +8239,44 @@ Powiadomienia są pomijane! - + Are you sure you want to continue? Czy na pewno chcesz kontynuować? - + Please check report view for more... Proszę sprawdzić widok raportu w celu uzyskania dodatkowych informacji ... - + Physical path: Ścieżka fizyczna: - - + + Document: Dokument: - - + + Path: Ścieżka: - + Identical physical path Identyczna fizyczna ścieżka - + Could not save document Nie udało się zapisać dokumentu - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8283,102 +8289,102 @@ Would you like to save the file with a different name? Czy chcesz zapisać plik pod inną nazwą? - - - + + + Saving aborted Zapisywanie przerwane - + Save dependent files Zapisz zależne pliki - + The file contains external dependencies. Do you want to save the dependent files, too? Plik zawiera zewnętrzne zależności. Czy chcesz zapisać również zależne pliki? - - + + Saving document failed Zapisywanie dokumentu nie powiodło się - + Save document under new filename... Zapisz dokument pod nową nazwą pliku ... - - + + Save %1 Document Zapis dokumentu %1 - + Document Dokument - - + + Failed to save document Nie udało się zapisać dokumentu - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenty zawierają zależności kołowe. Czy nadal chcesz je zapisać? - + Save a copy of the document under new filename... Zapisz kopię dokumentu pod nową nazwą pliku... - + %1 document (*.FCStd) Dokument %1 (*.FCStd) - + Document not closable Dokument nie może zostać zamknięty - + The document is not closable for the moment. Nie można zamknąć dokumentu w tym momencie. - + Document not saved Dokument nie zapisany - + The document%1 could not be saved. Do you want to cancel closing it? Nie można zapisać dokumentu %1. Czy chcesz przerwać zamykanie dokumentu? - + Undo Cofnij - + Redo Ponów - + There are grouped transactions in the following documents with other preceding transactions W następujących dokumentach zgrupowane są operacje z innymi poprzedzającymi je operacjami - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8451,12 +8457,12 @@ Wybierz "Przerwij", aby zrezygnować Opcje ... - + Out of memory Przekroczono limit pamięci - + Not enough memory available to display the data. Za mało dostępnej pamięci, aby wyświetlić dane. @@ -8472,7 +8478,7 @@ Wybierz "Przerwij", aby zrezygnować Nie znaleziono pliku %1 w %2, ani w %3 - + Navigation styles Style nawigacji @@ -8488,32 +8494,32 @@ Wybierz "Przerwij", aby zrezygnować Czy chcesz zamknąć to okno? - + Do you want to save your changes to document '%1' before closing? Czy chcesz zapisać zmiany do dokumentu "%1" przed zamknięciem? - + Do you want to save your changes to document before closing? Czy chcesz zapisać zmiany przed zamknięciem? - + If you don't save, your changes will be lost. Jeśli nie zapiszesz dokumentu, zmiany zostaną utracone. - + Apply answer to all Zastosuj odpowiedź dla wszystkich - + %1 Document(s) not saved Dokument %1 nie został zapisany - + Some documents could not be saved. Do you want to cancel closing? Niektóre dokumenty nie mogły zostać zapisane. Czy chcesz przerwać zamykanie dokumentów? @@ -8650,8 +8656,8 @@ podkreślenie i nie może zaczynać się od cyfry. Nie udało się dodać właściwości do '%1': %2 - - + + Drag & drop failed Przeciągnięcie i upuszczenie nie powiodło się @@ -8935,7 +8941,7 @@ bieżącej kopii zostaną utracone. The property name must only contain alpha numericals, underscore, and must not start with a digit. - Nazwa właściwości musi zawierać tylko znaki alfanumeryczne i podkreślenia, + Nazwa właściwości może zawierać tylko znaki alfanumeryczne i podkreślenia, nie może zaczynać się cyfrą. @@ -8950,12 +8956,12 @@ oraz nie może zaczynać się od cyfry. SelectionFilter - + Not allowed: Niedozwolone: - + Selection not allowed by filter Wybór niedozwolony przez filtr @@ -9043,13 +9049,13 @@ oraz nie może zaczynać się od cyfry. StdCmdAlignment - + Alignment... Wyrównanie ... - - + + Align the selected objects Wyrównaj zaznaczone obiekty @@ -9333,17 +9339,17 @@ oraz nie może zaczynać się od cyfry. StdCmdEdit - + Toggle &Edit mode Przełącz tryb &Edycji - + Toggles the selected object's edit mode Przełącza tryb edycji wybranego obiektu - + Activates or Deactivates the selected object's edit mode Aktywuje lub wyłącza tryb edycji dla zaznaczonych obiektów @@ -9375,13 +9381,13 @@ oraz nie może zaczynać się od cyfry. StdCmdExpression - + Expression actions Akcje z wyrażeniami - - + + Actions that apply to expressions Akcje z wyrażeniami @@ -9844,7 +9850,7 @@ co czyni je bardziej efektywnymi pod względem pamięciowym, co pomaga w tworzen Utwórz nowy pusty dokument - + Unnamed Bez nazwy @@ -9945,13 +9951,13 @@ takich jak Elementy pierwotne środowiska Część, Zawartość środowiska Proj StdCmdPlacement - + Placement... Umiejscowienie ... - - + + Place the selected objects Umieść wybrany obiekt @@ -10089,13 +10095,13 @@ takich jak Elementy pierwotne środowiska Część, Zawartość środowiska Proj StdCmdRefresh - + &Refresh &Odśwież - - + + Recomputes the current active document Przelicza aktywny dokument @@ -10439,13 +10445,13 @@ takich jak Elementy pierwotne środowiska Część, Zawartość środowiska Proj StdCmdTransform - + Transform... Przemieszczenie ... - - + + Transform the geometry of selected objects Przekształć geometrię wybranych obiektów @@ -10453,13 +10459,13 @@ takich jak Elementy pierwotne środowiska Część, Zawartość środowiska Proj StdCmdTransformManip - + Transform Przemieszczenie - - + + Transform the selected object in the 3d view Przekształć wybrany obiekt w widoku 3D @@ -11315,7 +11321,7 @@ takich jak Elementy pierwotne środowiska Część, Zawartość środowiska Proj Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11326,7 +11332,7 @@ Czy na pewno kontynuować? - + Object dependencies Zależności obiektu @@ -11438,7 +11444,7 @@ Czy chcesz zapisać dokument teraz? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12210,8 +12216,8 @@ zostanie załadowane automatycznie po uruchomieniu programu FreeCAD Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Wystąpił błąd -- zajrzyj do Widoku raportu, aby uzyskać więcej informacji @@ -12970,66 +12976,40 @@ z konsoli Python do panelu Widoku Raportu Źródła światła - + + Push In + Przybliż + + + + Pull Out + Oddal + + + Light sources Źródła światła - + Light source Źródło światła - + Intensity Intensywność - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - Dostosuj orientację kierunkowego źródła światła, przeciągając uchwyt za pomocą kursora myszki -lub użyj obrotowych pól do precyzyjnego dostrojenia. + Dostosuj orientację kierunkowego źródła światła przeciągając uchwyt myszą lub użyj pól z wartościami i strzałkami do precyzyjnego dostrojenia. - + Direction Kierunek - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13439,12 +13419,12 @@ Ustaw zero, aby wypełnić miejsce. StdCmdProperties - + Properties Właściwości - + Show the property view, which displays the properties of the selected object. Pokazuje widok właściwości, który wyświetla właściwości wybranego obiektu. diff --git a/src/Gui/Language/FreeCAD_pt-BR.ts b/src/Gui/Language/FreeCAD_pt-BR.ts index 631c65d09a..a07914aa79 100644 --- a/src/Gui/Language/FreeCAD_pt-BR.ts +++ b/src/Gui/Language/FreeCAD_pt-BR.ts @@ -91,17 +91,17 @@ Editar - + Import Importar - + Delete Excluir - + Paste expressions Colar expressões @@ -156,8 +156,7 @@ Alinhar - - + Placement Posicionamento @@ -425,42 +424,42 @@ EditMode - + Default Padrão - + The object will be edited using the mode defined internally to be the most appropriate for the object type O objeto será editado usando o modo definido internamente para ser o mais apropriado para o tipo de objeto - + Transform Transformar - + The object will have its placement editable with the Std TransformManip command O objeto terá seu posicionamento editável com o comando Std TransformManip - + Cutting Corte - + This edit mode is implemented as available but currently does not seem to be used by any object Este modo de edição está implementado como disponível, mas atualmente não parece ser usado por nenhum objeto - + Color Cor - + The object will have the color of its individual faces editable with the Part FaceAppearances command O objeto terá a cor de suas faces individuais editáveis com o comando Part FaceAppearance @@ -1996,7 +1995,7 @@ Talvez um erro de permissão de arquivo? % - % + % @@ -3903,7 +3902,7 @@ Você também pode usar o formulário: João Silva <joao@silva.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Navegação @@ -3963,99 +3962,99 @@ Você também pode usar o formulário: João Silva <joao@silva.com>Girar para o mais próximo - + Font name of the navigation cube Nome da fonte do cubo de navegação - + Default Padrão - + Cube size Tamanho do cubo - + Size of the navigation cube Tamanho do cubo de navegação - + Opacity when inactive Opacidade quando inativo - + Opacity of the navigation cube when not focused Opacidade do cubo de navegação enquanto não estiver focado - + Color Cor - + Base color for all elements Cor base para todos os elementos - + Rotation center indicator Indicador de rotação central - + Sphere size Tamanho da esfera - + Color and transparency Cor e transparência - + The size of the rotation center indicator O tamanho do indicador do centro de rotação - + The color of the rotation center indicator A cor do indicador do centro de rotação - + 3D Navigation Navegação 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Mostra as configurações dos botões do mouse para cada configuração de navegação escolhida. Selecione um conjunto e, em seguida, pressione o botão para visualizar as referidas configurações. - + Mouse... Mouse... - + Navigation settings set Configurações de navegação definidas - + Orbit style Estilo de orbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4066,104 +4065,104 @@ Girarmesa a parte será girada em torno do eixo z (com eixos limitados). Girarmesa livre: a parte será girada em torno do eixo z. - + Turntable Plataforma - + Trackball Trackball - + Free Turntable Girarmesa Livre - + Rotation mode Modo de rotação - + Rotations in 3D will use current cursor position as center for rotation Rotações de câmera usarão a posição atual do cursor como centro de rotação - + Window center Centro da janela - + Drag at cursor Arraste no cursor - + Object center Centro do objeto - + Default camera orientation Orientação padrão da câmera - + Default camera orientation when creating a new document or selecting the home view Orientação padrão da câmera ao criar um novo documento ou selecionar a vista inicial - + Camera zoom Zoom da Câmera - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Define o zoom da câmera para novos documentos. O valor é o diâmetro de uma esfera que caberia na tela. - + mm mm - + Animations Animações - + Enable spinning animations that are used in some navigation styles after dragging Ativar animações giratórias usadas em alguns estilos de navegação após arrastar - + Enable spinning animations Ativar animações giratórias - + Duration of navigation animations that have a fixed duration Duração das animações de navegação com duração fixa - + Animation duration Duração da animação - + The duration of navigation animations in milliseconds A duração das animações de navegação em milissegundos - + Zoom step Aumento do zoom @@ -4173,34 +4172,34 @@ O valor é o diâmetro de uma esfera que caberia na tela. Nome da fonte - + Zoom operations will be performed at position of mouse pointer Operações de zoom serão realizadas a partir da posição do cursor do mouse - + Zoom at cursor Zoom no cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Quanto será ampliado. O intervalo de ampliação '1' significa um fator de 7,5 para cada intervalo. - + Direction of zoom operations will be inverted A direção das operações de zoom será invertida - + Invert zoom Inverter o zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4209,7 +4208,7 @@ Afeta somente o estilo de navegação por gesto. A inclinação do mouse não está afetada por esta configuração. - + Disable touchscreen tilt gesture Desativar o gesto de inclinação da tela sensível ao toque @@ -4677,7 +4676,7 @@ O sistema de preferências é aquele que está configurado nas preferências ger Gui::Dialog::DockablePlacement - + Placement Posicionamento @@ -5261,32 +5260,17 @@ The 'Status' column shows whether the document could be recovered. Restaurar - - OK - OK - - - - Close - Fechar - - - - Apply - Aplicar - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Por favor, selecione 1, 2 ou 3 pontos antes de clicar neste botão. Um ponto pode estar em um vértice, face ou aresta. Se em uma face ou borda, o ponto usado será o ponto na posição do mouse ao longo da face ou da borda. Se 1 ponto for selecionado, ele será usado como centro de rotação. Se 2 pontos forem selecionados, o ponto médio entre eles será o centro de rotação e um novo eixo personalizado será criado, se necessário. Se 3 pontos são selecionados, o primeiro ponto se torna o centro de rotação e fica no vetor que é normal ao plano definido pelos 3 pontos. Algumas informações de distância e ângulo são fornecidas na visão do relatório, o que pode ser útil ao alinhar objetos. Para sua conveniência, quando Shift + clique é usado, a distância ou ângulo apropriado é copiado para a área de transferência. - + Incorrect quantity Quantidade incorreta - + There are input fields with incorrect input, please ensure valid placement values! Existem campos com valor incorreto, por favor, certifique-se de usar valores de posicionamento válidos! @@ -5425,13 +5409,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Cancelar - - - - + Transform Transformar @@ -5821,13 +5799,13 @@ Deseja salvar as alterações? Gui::FileChooser - - + + Select a file Selecione um arquivo - + Select a directory Selecione um diretório @@ -5835,13 +5813,13 @@ Deseja salvar as alterações? Gui::FileDialog - + Save as Salvar como - - + + Open Abrir @@ -5849,12 +5827,12 @@ Deseja salvar as alterações? Gui::FileOptionsDialog - + Extended Extendido - + All files (*.*) Todos os arquivos (*.*) @@ -6031,7 +6009,7 @@ Deseja salvar as alterações? Gui::LabelEditor - + List Lista @@ -6148,57 +6126,57 @@ Deseja salvar as alterações? Gui::MainWindow - + Dimension Dimensão - + Ready Pronto - + Close All Fechar tudo - - - + + + Toggles this toolbar Alterna esta barra de ferramentas - - - + + + Toggles this dockable window Alterna esta janela acoplável - + WARNING: This is a development version. AVISO: esta é uma versão em desenvolvimento. - + Please do not use it in a production environment. Por favor, não use em ambiente de produção. - - + + Unsaved document Documento não salvo - + The exported object contains external link. Please save the documentat least once before exporting. O objeto exportado contém links externos. Salve o documento pelo menos uma vez antes de exportar. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Para vincular a objetos externos, o documento deve ser salvo pelo menos uma vez. @@ -6787,12 +6765,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Selecione o módulo - + Open %1 as Abrir %1 como @@ -7324,7 +7302,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Exibição em árvore @@ -7332,7 +7310,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Pesquisar @@ -7390,148 +7368,148 @@ Do you want to specify another directory? Grupo - + Labels & Attributes Rótulos & atributos - + Description Descrição - + Internal name Nome interno - + Show items hidden in tree view Mostrar itens ocultos na vista em árvore - + Show items that are marked as 'hidden' in the tree view Exibir itens marcados como 'oculto' na visualização de árvore - + Toggle visibility in tree view Alternar visibilidade na exibição em árvore - + Toggles the visibility of selected items in the tree view Alterna a visibilidade dos itens selecionados na exibição em árvore - + Create group Criar grupo - + Create a group Criar um grupo - - + + Rename Renomear - + Rename object Renomear objeto - + Finish editing Concluir a edição - + Finish editing object Terminar de editar o objeto - + Add dependent objects to selection Adicionar objetos dependentes à seleção - + Adds all dependent objects to the selection Adicionar todos os objetos dependentes à seleção - + Close document Fechar documento - + Close the document Fechar o documento - + Reload document Recarregar documento - + Reload a partially loaded document Recarregar um documento parcialmente carregado - + Skip recomputes Pular recálculos - + Enable or disable recomputations of document Ativa/desativa o recálculo automático do documento - + Allow partial recomputes Permitir recálculos parciais - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Ativar ou desativar o recálculo do objeto editado quando a opção 'pular recálculo' estiver ativada - + Mark to recompute Marcar para recalcular - + Mark this object to be recomputed Marcar este objeto para ser recalculado - + Recompute object Recalcular o objeto - + Recompute the selected object Recalcula o objeto selecionado - + (but must be executed) (mas deve ser executado) - + %1, Internal name: %2 %1, Nome interno: %2 @@ -7728,14 +7706,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Entrada inválida - - + + Input in line %1 is not a number A entrada na linha %1 não é um número @@ -7743,47 +7721,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Exibição em árvore - + Tasks Tarefas - + Property view Tela de propriedades - + Selection view Tela de seleção - + Task List Lista de tarefas - + Model Modelo - + DAG View Vista DAG - + Report view Ver Relatório - + Python console Console Python @@ -7823,45 +7801,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Tipo de arquivo desconhecido - - + + Cannot open unknown filetype: %1 Não é possível abrir o tipo de arquivo desconhecido: %1 - + Export failed Falha na exportação - + Cannot save to unknown filetype: %1 Não é possível salvar em tipo de arquivo desconhecido: %1 - + + Recomputation required + Recálculo necessário + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Alguns documentos exigem recálculo para fins de migração. É altamente recomendado realizar um recálculo antes de qualquer modificação para evitar problemas de compatibilidade. + +Você quer recalcular agora? + + + + Recompute error + Erro de recálculo + + + + Failed to recompute some document(s). +Please check report view for more details. + Falha no recálculo de alguns documentos. +Por favor, verifique a visualização do relatório para mais detalhes. + + + Workbench failure Falha da bancada de trabalho - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Este sistema está rodando OpenGL %1.%2. FreeCAD requer OpenGL 2.0 ou superior. Por favor, atualize seu driver gráfico e/ou sua placa de vídeo conforme necessário. - + Invalid OpenGL Version Versão OpenGL inválida @@ -7912,7 +7916,7 @@ Do you want to specify another directory? Exportar PDF... - + Unsaved document Documento não salvo @@ -7923,50 +7927,50 @@ Do you want to specify another directory? O objeto exportado contém links externos. Salve o documento pelo menos uma vez antes de exportar. - + Delete failed Falha ao apagar - + Dependency error Erro de dependência - + Copy selected Copiar a seleção - + Copy active document Copiar documento ativo - + Copy all documents Copiar todos os documentos - + Paste Colar - + Expression error Erro de expressão - + Failed to parse some of the expressions. Please check the Report View for more details. Falha ao analisar algumas das expressões. Veja o painel de relatório para mais detalhes. - + Failed to paste expressions Falha ao colar expressões @@ -8204,7 +8208,7 @@ Do you want to continue? Muitas notificações não intrusivas abertas. Notificações estão sendo omitidas! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8213,44 +8217,44 @@ Do you want to continue? - + Are you sure you want to continue? Tem certeza que deseja continuar? - + Please check report view for more... Por favor, verifique o relatório de visualização para mais... - + Physical path: Caminho físico: - - + + Document: Documento: - - + + Path: Caminho: - + Identical physical path Caminho físico idêntico - + Could not save document Não foi possível salvar o documento - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8263,102 +8267,102 @@ Would you like to save the file with a different name? Salvar o arquivo com um nome diferente? - - - + + + Saving aborted Salvamento abortado - + Save dependent files Salvar arquivos dependentes - + The file contains external dependencies. Do you want to save the dependent files, too? O arquivo contém dependências externas. Deseja também salvar os arquivos dependentes? - - + + Saving document failed Falha ao salvar documento - + Save document under new filename... Salvar documento sob novo nome ... - - + + Save %1 Document Salvar documento %1 - + Document Documento - - + + Failed to save document Falha ao salvar o documento - + Documents contains cyclic dependencies. Do you still want to save them? Os documentos contêm dependências cíclicas. Deseja salvá-los mesmo assim? - + Save a copy of the document under new filename... Salve uma cópia do documento com um novo nome de arquivo... - + %1 document (*.FCStd) documento %1 (*.FCStd) - + Document not closable O documento não pode ser fechado - + The document is not closable for the moment. O documento não pode ser fechado neste momento. - + Document not saved Documento não salvo - + The document%1 could not be saved. Do you want to cancel closing it? O documento%1 não pode ser salvo. Cancelar o fechamento? - + Undo Desfazer - + Redo Refazer - + There are grouped transactions in the following documents with other preceding transactions Existem transações agrupadas com outras transações anteriores nos seguintes documentos - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8431,12 +8435,12 @@ Escolha 'Abortar' para cancelar Opções... - + Out of memory Memória insuficiente - + Not enough memory available to display the data. Não há memória suficiente para exibir os dados. @@ -8452,7 +8456,7 @@ Escolha 'Abortar' para cancelar Não é possível encontrar o arquivo %1 nem em %2, nem em %3 - + Navigation styles Estilos de navegação @@ -8468,32 +8472,32 @@ Escolha 'Abortar' para cancelar Deseja fechar este diálogo? - + Do you want to save your changes to document '%1' before closing? Deseja salvar as alterações no documento '%1' antes de fechar? - + Do you want to save your changes to document before closing? Deseja salvar suas alterações no documento antes de fechar? - + If you don't save, your changes will be lost. Se você não for salvar, suas alterações serão perdidas. - + Apply answer to all Aplicar esta resposta a todos - + %1 Document(s) not saved %1 Documento(s) não foram salvos - + Some documents could not be saved. Do you want to cancel closing? Alguns documentos não puderam ser salvos. Cancelar o fechamento? @@ -8630,8 +8634,8 @@ ou underscore e não deve começar com um número. Falha ao adicionar uma propriedade a '%1': %2 - - + + Drag & drop failed Arrastar & soltar falhou @@ -8928,12 +8932,12 @@ ou underscore e não pode começar com um número. SelectionFilter - + Not allowed: Não é permitido: - + Selection not allowed by filter Seleção não permitida pelo filtro @@ -9021,13 +9025,13 @@ ou underscore e não pode começar com um número. StdCmdAlignment - + Alignment... Alinhamento... - - + + Align the selected objects Alinha os objetos selecionados @@ -9311,17 +9315,17 @@ ou underscore e não pode começar com um número. StdCmdEdit - + Toggle &Edit mode Alterar o modo de &edição - + Toggles the selected object's edit mode Alterna o modo de edição do objeto selecionado - + Activates or Deactivates the selected object's edit mode Ativa ou desativa o modo de edição do objeto selecionado @@ -9353,13 +9357,13 @@ ou underscore e não pode começar com um número. StdCmdExpression - + Expression actions Ações de expressão - - + + Actions that apply to expressions Ações que se aplicam às expressões @@ -9820,7 +9824,7 @@ ou underscore e não pode começar com um número. Criar um novo documento vazio - + Unnamed Sem nome @@ -9918,13 +9922,13 @@ ou underscore e não pode começar com um número. StdCmdPlacement - + Placement... Posicionamento... - - + + Place the selected objects Colocar os objetos selecionados @@ -10062,13 +10066,13 @@ ou underscore e não pode começar com um número. StdCmdRefresh - + &Refresh &Atualizar - - + + Recomputes the current active document Recalcula o documento ativo atual @@ -10412,13 +10416,13 @@ ou underscore e não pode começar com um número. StdCmdTransform - + Transform... Transformar... - - + + Transform the geometry of selected objects Transformar a geometria dos objetos selecionados @@ -10426,13 +10430,13 @@ ou underscore e não pode começar com um número. StdCmdTransformManip - + Transform Transformar - - + + Transform the selected object in the 3d view Transformar o objeto selecionado na vista 3D @@ -11288,7 +11292,7 @@ ou underscore e não pode começar com um número. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11299,7 +11303,7 @@ Tem certeza que deseja continuar? - + Object dependencies Dependências do objeto @@ -11411,7 +11415,7 @@ Deseja salvar o documento agora? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12178,8 +12182,8 @@ Atualmente, o seu sistema tem as seguintes bancadas de trabalho:</p></b Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Ocorreu um erro -- consulte Ver Relatório para informações @@ -12935,65 +12939,40 @@ do console Python para o painel de Relatórios Fontes de luz - + + Push In + Ampliar + + + + Pull Out + Afastar + + + Light sources Fontes de luz - + Light source Fonte de luz - + Intensity Intensidade - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajuste a orientação da fonte de luz direcional ao arrastar o alça com o mouse ou use as caixas de rotação para um ajuste fino. - + Direction Direção - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13398,12 +13377,12 @@ da região forem não opacos. StdCmdProperties - + Properties Propriedades - + Show the property view, which displays the properties of the selected object. Mostra a vista da propriedades, que exibe as propriedades do objeto selecionado. diff --git a/src/Gui/Language/FreeCAD_pt-PT.ts b/src/Gui/Language/FreeCAD_pt-PT.ts index 80e7c70802..ba5bf73289 100644 --- a/src/Gui/Language/FreeCAD_pt-PT.ts +++ b/src/Gui/Language/FreeCAD_pt-PT.ts @@ -91,17 +91,17 @@ Editar - + Import Importar - + Delete Apagar - + Paste expressions Colar expressões @@ -156,8 +156,7 @@ Alinhamento - - + Placement Colocação @@ -425,42 +424,42 @@ EditMode - + Default Predefinição - + The object will be edited using the mode defined internally to be the most appropriate for the object type The object will be edited using the mode defined internally to be the most appropriate for the object type - + Transform Transformar - + The object will have its placement editable with the Std TransformManip command The object will have its placement editable with the Std TransformManip command - + Cutting Corte - + This edit mode is implemented as available but currently does not seem to be used by any object This edit mode is implemented as available but currently does not seem to be used by any object - + Color Cor - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3904,7 +3903,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navegação @@ -3964,99 +3963,99 @@ You can also use the form: John Doe <john@doe.com> Girar para o mais próximo - + Font name of the navigation cube Font name of the navigation cube - + Default Predefinição - + Cube size Tamanho do cubo - + Size of the navigation cube Tamanho do cubo de navegação - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Cor - + Base color for all elements Base color for all elements - + Rotation center indicator Rotation center indicator - + Sphere size Sphere size - + Color and transparency Color and transparency - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation Navegação 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. - + Mouse... Rato ... - + Navigation settings set Navigation settings set - + Orbit style Estilo da Órbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4067,104 +4066,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable Plataforma giratória - + Trackball Trackball - + Free Turntable Free Turntable - + Rotation mode Modo de Rotação - + Rotations in 3D will use current cursor position as center for rotation Rotations in 3D will use current cursor position as center for rotation - + Window center Window center - + Drag at cursor Drag at cursor - + Object center Centro do objeto - + Default camera orientation Default camera orientation - + Default camera orientation when creating a new document or selecting the home view Default camera orientation when creating a new document or selecting the home view - + Camera zoom Camera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animation duration - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoom step @@ -4174,34 +4173,34 @@ The value is the diameter of the sphere to fit on the screen. Nome da fonte - + Zoom operations will be performed at position of mouse pointer Zoom operations will be performed at position of mouse pointer - + Zoom at cursor Zoom no cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. - + Direction of zoom operations will be inverted Direction of zoom operations will be inverted - + Invert zoom Inverter Zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4210,7 +4209,7 @@ Affects only gesture navigation style. Mouse tilting is not disabled by this setting. - + Disable touchscreen tilt gesture Desativar o gesto de inclinação da tela sensível ao toque @@ -4680,7 +4679,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Colocação @@ -5264,32 +5263,17 @@ The 'Status' column shows whether the document could be recovered. Reiniciar - - OK - OK - - - - Close - Fechar - - - - Apply - Aplicar - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Por favor selecione 1, 2 ou 3 pontos antes de clicar neste botão. Um ponto pode estar num vértice, face ou aresta. Se estiver numa face ou aresta, o ponto utilizado será o ponto na posição do rato ao longo da face ou aresta. Se for selecionado 1 ponto será usado como o centro de rotação. Se forem selecionados 2 pontos o ponto médio entre eles será o centro de rotação e será criado um novo eixo personalizado, se necessário. Se forem selecionados 3 pontos o primeiro ponto torna-se o centro de rotação e encontra-se sobre o vetor normal ao plano definido por 3 pontos. Algumas informações de distância e ângulo são fornecidas na vista de relatório, que pode ser útil ao alinhar objetos. Para sua conveniência quando Shift + clique for usado a distância adequada ou ângulo é copiado para a área de transferência. - + Incorrect quantity Quantidade incorreta - + There are input fields with incorrect input, please ensure valid placement values! Existem campos com valor incorreto, por favor, certifique-se de usar valores de posicionamento válidos! @@ -5428,13 +5412,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Cancelar - - - - + Transform Transformar @@ -5825,13 +5803,13 @@ Deseja guardar as suas alterações? Gui::FileChooser - - + + Select a file Selecionar um Ficheiro - + Select a directory Selecionar uma Pasta @@ -5839,13 +5817,13 @@ Deseja guardar as suas alterações? Gui::FileDialog - + Save as Guardar Como - - + + Open Abrir @@ -5853,12 +5831,12 @@ Deseja guardar as suas alterações? Gui::FileOptionsDialog - + Extended Estendido - + All files (*.*) Todos os Ficheiros (*.*) @@ -6035,7 +6013,7 @@ Deseja guardar as suas alterações? Gui::LabelEditor - + List Lista @@ -6152,57 +6130,57 @@ Deseja guardar as suas alterações? Gui::MainWindow - + Dimension Dimensão - + Ready Pronto - + Close All Fechar Tudo - - - + + + Toggles this toolbar Altera esta Barra de Ferramentas - - - + + + Toggles this dockable window Ativa/desativa esta janela encaixável - + WARNING: This is a development version. WARNING: This is a development version. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document Documento não guardado - + The exported object contains external link. Please save the documentat least once before exporting. The exported object contains external link. Please save the documentat least once before exporting. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? To link to external objects, the document must be saved at least once. @@ -6792,12 +6770,12 @@ Deseja sair sem guardar os seus dados? Gui::SelectModule - + Select module Selecionar Módulo - + Open %1 as Abrir %1 Como @@ -7331,7 +7309,7 @@ Quer especificar outro diretório? Gui::TreeDockWidget - + Tree view Visualizar em Árvore @@ -7339,7 +7317,7 @@ Quer especificar outro diretório? Gui::TreePanel - + Search Procurar @@ -7397,148 +7375,148 @@ Quer especificar outro diretório? Grupo - + Labels & Attributes Nomes e Atributos - + Description Descrição - + Internal name Internal name - + Show items hidden in tree view Show items hidden in tree view - + Show items that are marked as 'hidden' in the tree view Show items that are marked as 'hidden' in the tree view - + Toggle visibility in tree view Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view Toggles the visibility of selected items in the tree view - + Create group Criar grupo - + Create a group Criar um Grupo - - + + Rename Renomear - + Rename object Renomear objeto - + Finish editing Terminar Edição - + Finish editing object Terminar Edição do Objeto - + Add dependent objects to selection Add dependent objects to selection - + Adds all dependent objects to the selection Adds all dependent objects to the selection - + Close document Fechar documento - + Close the document Fechar o documento - + Reload document Recarregar documento - + Reload a partially loaded document Recarregar um documento parcialmente carregado - + Skip recomputes Ignorar recalcular - + Enable or disable recomputations of document Habilitar ou desabilitar recalculo do documento - + Allow partial recomputes Allow partial recomputes - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Enable or disable recomputating editing object when 'skip recomputation' is enabled - + Mark to recompute Marcar para recalcular - + Mark this object to be recomputed Marcar este objeto para ser recalculado - + Recompute object Recompute object - + Recompute the selected object Recompute the selected object - + (but must be executed) (but must be executed) - + %1, Internal name: %2 %1, nome interno: %2 @@ -7735,14 +7713,14 @@ Quer especificar outro diretório? PropertyListDialog - - + + Invalid input Inserção inválida - - + + Input in line %1 is not a number A entrada na linha %1 não é um número @@ -7750,47 +7728,47 @@ Quer especificar outro diretório? QDockWidget - + Tree view Visualizar em Árvore - + Tasks Tarefas - + Property view Visualizar Propriedades - + Selection view Visualizar Seleção - + Task List Task List - + Model Modelo - + DAG View Vista DAG - + Report view Visualizar Relatório - + Python console Consola Python @@ -7830,45 +7808,71 @@ Quer especificar outro diretório? Python - - - + + + Unknown filetype Tipo de ficheiro desconhecido - - + + Cannot open unknown filetype: %1 Não é possível abrir o tipo de ficheiro desconhecido: %1 - + Export failed Exportação falhada - + Cannot save to unknown filetype: %1 Não é possível guardar um tipo de ficheiro desconhecido: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Falha da bancada de trabalho - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7919,7 +7923,7 @@ Quer especificar outro diretório? A exportar PDF ... - + Unsaved document Documento não guardado @@ -7930,50 +7934,50 @@ Quer especificar outro diretório? The exported object contains external link. Please save the documentat least once before exporting. - + Delete failed Falha ao Eliminar - + Dependency error Erro de dependência - + Copy selected Copiar selecionados - + Copy active document Copiar documento ativo - + Copy all documents Copiar todos os documentos - + Paste Colar - + Expression error Erro de expressão - + Failed to parse some of the expressions. Please check the Report View for more details. Failed to parse some of the expressions. Please check the Report View for more details. - + Failed to paste expressions Falha ao colar expressões @@ -8211,7 +8215,7 @@ Do you want to continue? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8220,44 +8224,44 @@ Do you want to continue? - + Are you sure you want to continue? Tem certeza que deseja continuar? - + Please check report view for more... Please check report view for more... - + Physical path: Physical path: - - + + Document: Document: - - + + Path: Caminho: - + Identical physical path Identical physical path - + Could not save document Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8270,102 +8274,102 @@ Would you like to save the file with a different name? Would you like to save the file with a different name? - - - + + + Saving aborted Guardar interrompido - + Save dependent files Guardar ficheiros dependentes - + The file contains external dependencies. Do you want to save the dependent files, too? O ficheiro contém dependências externas. Você também deseja guardar os ficheiros dependentes? - - + + Saving document failed Salvar o documento falhou - + Save document under new filename... Guardar o documento sob um novo nome de ficheiro... - - + + Save %1 Document Guardar Documento %1 - + Document Documento - - + + Failed to save document Falha ao guardar documento - + Documents contains cyclic dependencies. Do you still want to save them? Documentos contém dependências cíclicas. Você ainda deseja salvá-los? - + Save a copy of the document under new filename... Guardar uma cópia do documento com um novo nome... - + %1 document (*.FCStd) documento %1 (*.FCStd) - + Document not closable O documento não pode ser fechado - + The document is not closable for the moment. O documento não pode ser fechado neste momento. - + Document not saved Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? The document%1 could not be saved. Do you want to cancel closing it? - + Undo Desfazer - + Redo Refazer - + There are grouped transactions in the following documents with other preceding transactions There are grouped transactions in the following documents with other preceding transactions - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8438,12 +8442,12 @@ Choose 'Abort' to abort Opções ... - + Out of memory Sem Memória - + Not enough memory available to display the data. Não há memória disponível para visualizar os dados. @@ -8459,7 +8463,7 @@ Choose 'Abort' to abort Não é possível encontrar o ficheiro %1, nem em %2 ou em %3 - + Navigation styles Estilos de Navegação @@ -8475,32 +8479,32 @@ Choose 'Abort' to abort Deseja fechar esta janela? - + Do you want to save your changes to document '%1' before closing? Deseja guardar as alterações no documento '%1' antes de fechar? - + Do you want to save your changes to document before closing? Do you want to save your changes to document before closing? - + If you don't save, your changes will be lost. Se não guardar, as alterações serão perdidas. - + Apply answer to all Aplicar resposta a todos - + %1 Document(s) not saved %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? Some documents could not be saved. Do you want to cancel closing? @@ -8637,8 +8641,8 @@ sublinhado (_) e não deve começar com um dígito. Falha ao adicionar propriedade a '%1': %2 - - + + Drag & drop failed Arrastar & soltar falhou @@ -8935,12 +8939,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Não é permitido: - + Selection not allowed by filter Seleção não permitida pelo filtro @@ -9028,13 +9032,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Alinhamento ... - - + + Align the selected objects Alinhar os objetos selecionados @@ -9318,17 +9322,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Alternar Modo de &Edição - + Toggles the selected object's edit mode Alterna o modo de edição do objeto selecionado - + Activates or Deactivates the selected object's edit mode Ativa ou desativa o modo de edição do objeto selecionado @@ -9360,13 +9364,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Expression actions - - + + Actions that apply to expressions Actions that apply to expressions @@ -9827,7 +9831,7 @@ underscore, and must not start with a digit. Criar um Novo Documento vazio - + Unnamed Sem nome @@ -9925,13 +9929,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Posição... - - + + Place the selected objects Colocar os objetos selecionados @@ -10069,13 +10073,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Atualizar - - + + Recomputes the current active document Recalcula o documento ativo atual @@ -10419,13 +10423,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformar... - - + + Transform the geometry of selected objects Transformar a geometria dos objetos selecionados @@ -10433,13 +10437,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transformar - - + + Transform the selected object in the 3d view Transformar o objeto selecionado na vista 3D @@ -11295,7 +11299,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11306,7 +11310,7 @@ Are you sure you want to continue? - + Object dependencies Dependências do objeto @@ -11418,7 +11422,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12186,8 +12190,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Ocorreu um erro -- consulte Visualização e Relatórios para mais informações @@ -12945,65 +12949,40 @@ from Python console to Report view panel Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity Intensidade - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Ajuste a orientação da fonte de luz direcional ao arrastar o alça com o mouse ou use as caixas de rotação para um ajuste fino. - + Direction Direção - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13411,12 +13390,12 @@ the region are non-opaque. StdCmdProperties - + Properties Propriedades - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_ro.ts b/src/Gui/Language/FreeCAD_ro.ts index 05fb63125d..d25b8a2edb 100644 --- a/src/Gui/Language/FreeCAD_ro.ts +++ b/src/Gui/Language/FreeCAD_ro.ts @@ -91,17 +91,17 @@ Editare - + Import Import - + Delete Ştergeţi - + Paste expressions Lipește expresii @@ -156,8 +156,7 @@ Aliniere - - + Placement Amplasare @@ -425,42 +424,42 @@ EditMode - + Default Implicit - + The object will be edited using the mode defined internally to be the most appropriate for the object type Obiectul va fi editat folosind modul definit intern pentru a fi cel mai potrivit pentru tipul obiectului - + Transform Transformare - + The object will have its placement editable with the Std TransformManip command Obiectul va avea posibilitatea de a plasa cu comanda Std TransformManip - + Cutting Tăiere - + This edit mode is implemented as available but currently does not seem to be used by any object Acest mod de editare este implementat ca disponibil, dar în prezent nu pare să fie folosit de orice obiect - + Color Culoare - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3904,7 +3903,7 @@ Puteți folosi și formatul: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigare @@ -3964,99 +3963,99 @@ Puteți folosi și formatul: John Doe <john@doe.com> Rotire la cel mai apropiat - + Font name of the navigation cube Numele fontului cubului de navigare - + Default Implicit - + Cube size Dimensiune Cub - + Size of the navigation cube Dimensiunea cubului de navigare - + Opacity when inactive Opacitate când este inactivă - + Opacity of the navigation cube when not focused Opacitatea cubului de navigație atunci când acesta nu este concentrat - + Color Culoare - + Base color for all elements Culoare de bază pentru toate elementele - + Rotation center indicator Indicatorul centrului de rotaţie - + Sphere size Dimensiune sferică - + Color and transparency Culoare si transparenta - + The size of the rotation center indicator Dimensiunea indicatorului centrului de rotaţie - + The color of the rotation center indicator Culoarea indicatorului centrului de rotaţie - + 3D Navigation Navigare 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Listează configurările butonului mouse-ului pentru fiecare setare de navigare aleasă. Selectează un set și apoi apasă butonul pentru a vedea configurația menționată. - + Mouse... Mouse... - + Navigation settings set Set de setări de navigație - + Orbit style Stil de rotație - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4067,104 +4066,104 @@ Turntable: partea va fi rotită în jurul axei z (cu axe constrânse). Gratuit de întoarcere: partea va fi rotită în jurul axei z. - + Turntable Placa turnantă - + Trackball Trackball - + Free Turntable Gratuit de Turntable - + Rotation mode Modul de rotație - + Rotations in 3D will use current cursor position as center for rotation Rotațiile în 3D vor utiliza poziția curentă a cursorului ca centru de rotație - + Window center Centrul ferestrei - + Drag at cursor Trageți la cursor - + Object center Centrul obiectului - + Default camera orientation Orientarea implicită a camerei - + Default camera orientation when creating a new document or selecting the home view Orientarea implicită a camerei la crearea unui nou document sau la selectarea vizualizării de bază - + Camera zoom Zoom cameră - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Setează zoom-ul camerei pentru documentele noi. Valoarea este diametrul sferei pentru a o potrivi pe ecran. - + mm mm - + Animations Animații - + Enable spinning animations that are used in some navigation styles after dragging Activează animațiile de rotire care sunt utilizate în unele stiluri de navigare după tragere - + Enable spinning animations Activează animațiile de rotire - + Duration of navigation animations that have a fixed duration Durata animațiilor de navigare care au o durată fixă - + Animation duration Durata animației - + The duration of navigation animations in milliseconds Durata animațiilor de navigare în milisecunde - + Zoom step Pasul de mărire @@ -4174,34 +4173,34 @@ Valoarea este diametrul sferei pentru a o potrivi pe ecran. Nume font - + Zoom operations will be performed at position of mouse pointer Operațiunile de zoom vor fi efectuate la poziția indicatorului mouse-ului - + Zoom at cursor Mareste la pozitia cursorului - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Cât de mult va fi mărit. Pasul de mărire de '1' înseamnă un factor de 7,5 pentru fiecare pas de mărire. - + Direction of zoom operations will be inverted Direcția operațiunilor de zoom va fi inversată - + Invert zoom Inverseaza zoom-ul - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4210,7 +4209,7 @@ Afectează numai stilul de navigare prin gesturi. Înclinarea cu mouse-ul nu este dezactivată de această setare. - + Disable touchscreen tilt gesture Dezactivaţi inclinarea prin gest a ecranului tactil @@ -4680,7 +4679,7 @@ Sistemul preferat este cel ales în preferințele generale. Gui::Dialog::DockablePlacement - + Placement Amplasare @@ -5264,32 +5263,17 @@ The 'Status' column shows whether the document could be recovered. Reinițializare - - OK - OK - - - - Close - Închide - - - - Apply - Aplică - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Vă rugăm să selectaţi 1, 2 sau 3 puncte înainte de a face clic pe acest buton. Un punct poate fi pe un vârf, faţă, sau muchie. Dacă este pe o față sau o muchie, punctul folosit va fi punctul de la poziția mouse-ului de-a lungul feței sau muchiei respective. Dacă este selectat un punct, acesta va fi folosit ca centru de rotaţie. Dacă 2 puncte sunt selectate punctul intermediar dintre ele va fi centrul de rotație și va fi creată o nouă axă personalizată, dacă este necesar. Dacă sunt selectate 3 puncte, primul punct devine centrul de rotaţie şi se află pe vectorul care este normal planului definit de cele 3 puncte. Unele informații privind distanța și unghiul sunt furnizate în vizualizarea raport, ceea ce poate fi util la alinierea obiectelor. Pentru confortul tău când Shift + click este folosit distanța sau unghiul corespunzător este copiat în clipboard. - + Incorrect quantity Cantitate incorectă - + There are input fields with incorrect input, please ensure valid placement values! Există campurile input cu intrare incorectă, asigură-te că sunt valorile de poziționare sunt valide! @@ -5428,13 +5412,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Renunţă - - - - + Transform Transformare @@ -5824,13 +5802,13 @@ Doriți să salvați modificările? Gui::FileChooser - - + + Select a file Selectaţi un fişier - + Select a directory Selectaţi un director @@ -5838,13 +5816,13 @@ Doriți să salvați modificările? Gui::FileDialog - + Save as Salvare ca - - + + Open Deschide @@ -5852,12 +5830,12 @@ Doriți să salvați modificările? Gui::FileOptionsDialog - + Extended Extins - + All files (*.*) Toate fişierele (*.*) @@ -6034,7 +6012,7 @@ Doriți să salvați modificările? Gui::LabelEditor - + List Listă @@ -6151,57 +6129,57 @@ Doriți să salvați modificările? Gui::MainWindow - + Dimension Dimensiune - + Ready Gata - + Close All Inchide toate - - - + + + Toggles this toolbar Activează/dezactivează această bară de instrumente - - - + + + Toggles this dockable window Activează/dezactivează această fereastră fixabilă - + WARNING: This is a development version. AVERTISMENT: Aceasta este o versiune de dezvoltare. - + Please do not use it in a production environment. Vă rugăm să nu o utilizaţi într-un mediu de producţie. - - + + Unsaved document Document nesalvat - + The exported object contains external link. Please save the documentat least once before exporting. Obiectul exportat conține o legătură externă. Vă rugăm să salvați documentul cel puțin o dată înainte de al exporta. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Pentru face legăturile la obiecte externe, documentul trebuie salvat cel puțin o dată. @@ -6791,12 +6769,12 @@ Doriți să ieşiți fără a salva datele dumneavoastră? Gui::SelectModule - + Select module Selectaţi modulul - + Open %1 as Deschide '%1' ca @@ -7330,7 +7308,7 @@ Doriţi să specificaţi un alt director? Gui::TreeDockWidget - + Tree view Vizualizare arborescentă @@ -7338,7 +7316,7 @@ Doriţi să specificaţi un alt director? Gui::TreePanel - + Search Caută @@ -7396,148 +7374,148 @@ Doriţi să specificaţi un alt director? Grup - + Labels & Attributes Etichete & Atribute - + Description Descriere - + Internal name Internal name - + Show items hidden in tree view Arată elementele ascunse în vizualizarea arborelui - + Show items that are marked as 'hidden' in the tree view Arată elementele care sunt marcate ca 'ascunse' în vizualizarea arborelui - + Toggle visibility in tree view Comută vizibilitatea în vizualizarea arborelui - + Toggles the visibility of selected items in the tree view Activează/dezactivează vizibilitatea elementelor selectate în vizualizarea arborelui - + Create group Creați grupul - + Create a group Creează un grup - - + + Rename Redenumire - + Rename object Redenumire obiect - + Finish editing Termina editarea - + Finish editing object Editarea obiectului incheiata - + Add dependent objects to selection Adaugă obiectele dependente la selecție - + Adds all dependent objects to the selection Adauga toate obiectele dependente la selectie - + Close document Închide documentul - + Close the document Închide documentul - + Reload document Reîncarcă documentul - + Reload a partially loaded document Reîncarcă un document parțial încărcat - + Skip recomputes Abandonați recalcularea - + Enable or disable recomputations of document Autorizați sau interziceți recalculare documentului - + Allow partial recomputes Permite recompilări parțiale - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Activați sau dezactivați recalcularea editării obiectului atunci când este activat 'săriți peste recalculare' - + Mark to recompute Marcare de recalculare - + Mark this object to be recomputed Marcați acest obiect pentru a fi recalculate - + Recompute object Recalculare obiect - + Recompute the selected object Recalculează obiectul selectat - + (but must be executed) (dar trebuie executat) - + %1, Internal name: %2 %1, nume intern : %2 @@ -7734,14 +7712,14 @@ Doriţi să specificaţi un alt director? PropertyListDialog - - + + Invalid input Introducere valoare nevalidă - - + + Input in line %1 is not a number Intrarea la linia %1 nu este un număr @@ -7749,47 +7727,47 @@ Doriţi să specificaţi un alt director? QDockWidget - + Tree view Vizualizare arborescentă - + Tasks Sarcini - + Property view Vizualizare proprietăţi - + Selection view Vizualizare selecție - + Task List Listă sarcini - + Model Model - + DAG View Vizualizare DAG - + Report view Vezualizare raport - + Python console Consola Python @@ -7829,45 +7807,71 @@ Doriţi să specificaţi un alt director? Python - - - + + + Unknown filetype Tip de fișier necunoscut - - + + Cannot open unknown filetype: %1 Imposibil de deschis fişierul în format necunoscut:%1 - + Export failed Export eșuat - + Cannot save to unknown filetype: %1 Nu se poate salva într-un format de fişier necunoscut:%1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Bancul de lucru a eşuat - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Acest sistem rulează OpenGL %1.%2. FreeCAD necesită OpenGL 2.0 sau mai mult. Vă rugăm să faceţi upgrade la driverul grafic şi/sau card după cum este necesar. - + Invalid OpenGL Version Versiune OpenGL invalidă @@ -7918,7 +7922,7 @@ Doriţi să specificaţi un alt director? Export PDF... - + Unsaved document Document nesalvat @@ -7929,50 +7933,50 @@ Doriţi să specificaţi un alt director? Obiectul exportat conține o legătură externă. Vă rugăm să salvați documentul cel puțin o dată înainte de al exporta. - + Delete failed Ștergerea a eșuat - + Dependency error Eroare de dependență - + Copy selected Copiază selecția - + Copy active document Copiază documentul activ - + Copy all documents Copiază toate documentele - + Paste Lipește - + Expression error Eroare de expresie - + Failed to parse some of the expressions. Please check the Report View for more details. Eșec în analiza unora dintre expresii. Verificați fereastra Raport pentru mai multe detalii. - + Failed to paste expressions Nu s-a reușit lipirea expresiilor @@ -8211,7 +8215,7 @@ Doriţi să continuaţi? Prea multe notificări neintruzive deschise. Notificările sunt omise! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8220,44 +8224,44 @@ Doriţi să continuaţi? - + Are you sure you want to continue? Ești sigur că vrei să continui? - + Please check report view for more... Vă rugăm să verificați vizualizarea raportului pentru mai multe... - + Physical path: Calea fizică: - - + + Document: Documentul: - - + + Path: Cale: - + Identical physical path Cale fizică identică - + Could not save document Documentul nu a putut fi salvat - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8270,102 +8274,102 @@ Would you like to save the file with a different name? Doriți să salvați fișierul cu alt nume? - - - + + + Saving aborted Salvarea a fost anulată - + Save dependent files Salvează fișierele dependente - + The file contains external dependencies. Do you want to save the dependent files, too? Fișierul conține dependențe externe. Doriți să salvați și fișierele dependente? - - + + Saving document failed Salvarea documentului a eșuat - + Save document under new filename... Salvaţi documentul sub un nume nou... - - + + Save %1 Document Salvaţi documentul %1 - + Document Documentul - - + + Failed to save document Salvarea documentului nu a reușit - + Documents contains cyclic dependencies. Do you still want to save them? Documentele conţin dependenţe ciclice. Mai doriţi să le salvaţi? - + Save a copy of the document under new filename... Salvați o copie a documentului sub un nou nume de fişier... - + %1 document (*.FCStd) Documentul %1 (*.FCStd) - + Document not closable Documentul nu se poate închide - + The document is not closable for the moment. Documentul nu se poate închide momentan. - + Document not saved Document nesalvat - + The document%1 could not be saved. Do you want to cancel closing it? Documentul%1 nu a putut fi salvat. Doriți să renunțați la închiderea acestuia? - + Undo Anulează - + Redo Reface - + There are grouped transactions in the following documents with other preceding transactions Există tranzacții grupate cu alte tranzacții anterioare în următoarele documente - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8438,12 +8442,12 @@ Alege 'Abandonează' pentru a abandona Opţiuni... - + Out of memory Memorie insuficientă - + Not enough memory available to display the data. Insuficientă memorie disponibilă pentru a afişa datele. @@ -8459,7 +8463,7 @@ Alege 'Abandonează' pentru a abandona Imposibil de găsit fișierul %1 la %2 nici în %3 - + Navigation styles Stiluri de navigare @@ -8475,32 +8479,32 @@ Alege 'Abandonează' pentru a abandona Doriţi să închideţi această fereastră de dialog? - + Do you want to save your changes to document '%1' before closing? Vreți să salvați modificările dvs înainte de a închide? - + Do you want to save your changes to document before closing? Doriți să salvați modificările documentului înainte de închidere? - + If you don't save, your changes will be lost. Dacă nu salvați, schimbările vor fi pierdute. - + Apply answer to all Aplică răspunsul tuturor - + %1 Document(s) not saved %1 Document(e) nu au fost salvate - + Some documents could not be saved. Do you want to cancel closing? Unele documente nu au putut fi salvate. Doriți să renunțați la închiderea documentelor? @@ -8637,8 +8641,8 @@ liniuță jos și nu trebuie să înceapă cu o cifră. Nu am putut adăuga proprietatea la '%1': %2 - - + + Drag & drop failed Drag & drop eșuat @@ -8939,12 +8943,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Nu este permis: - + Selection not allowed by filter Selecție nepermisă de către Filtrul de selecție @@ -9032,13 +9036,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Aliniament... - - + + Align the selected objects Aliniati obiectele selectate @@ -9322,17 +9326,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Activează/dezactivează modul de &editare - + Toggles the selected object's edit mode Activează/dezactivează modul de editare pentru obiectul selectat - + Activates or Deactivates the selected object's edit mode Activează sau Dezactivează modul Editare al obiectelor selectate @@ -9364,13 +9368,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Acțiunile expresiei - - + + Actions that apply to expressions Acțiuni care se aplică expresiilor @@ -9831,7 +9835,7 @@ underscore, and must not start with a digit. Creaţi un nou document gol - + Unnamed Nedenumit @@ -9929,13 +9933,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Amplasare... - - + + Place the selected objects Poziționați obiectele selectate @@ -10073,13 +10077,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Reîmprospătare - - + + Recomputes the current active document Recalculează documentul activ @@ -10423,13 +10427,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transformare... - - + + Transform the geometry of selected objects Transforma geometria obiectelor selectate @@ -10437,13 +10441,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transformare - - + + Transform the selected object in the 3d view Transforma obiectul selectat în vizualizarea 3D @@ -11299,7 +11303,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11310,7 +11314,7 @@ Sunteți sigur că doriți să continuați? - + Object dependencies Dependențe obiect @@ -11422,7 +11426,7 @@ Doriți să salvați documentul acum? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12190,8 +12194,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information S-a produs o eroare -- vezi Raport View pentru informaţii @@ -12950,65 +12954,40 @@ din consola Python către panoul de vizualizare Rapoarte Surse de lumină - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Surse de lumină - + Light source Sursă de lumină - + Intensity Intensitate - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Direcţia - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13416,12 +13395,12 @@ regiunea nu este opacă. StdCmdProperties - + Properties Proprietăți - + Show the property view, which displays the properties of the selected object. Arată vizualizarea proprietății, care afișează proprietățile obiectului selectat. diff --git a/src/Gui/Language/FreeCAD_ru.ts b/src/Gui/Language/FreeCAD_ru.ts index 54529b6bac..bd1089bcf7 100644 --- a/src/Gui/Language/FreeCAD_ru.ts +++ b/src/Gui/Language/FreeCAD_ru.ts @@ -91,17 +91,17 @@ Редактировать - + Import Импорт - + Delete Удалить - + Paste expressions Вставить выражения @@ -156,8 +156,7 @@ Выровнить - - + Placement Расположение @@ -425,42 +424,42 @@ EditMode - + Default По умолчанию - + The object will be edited using the mode defined internally to be the most appropriate for the object type Объект будет отредактирован с помощью режима, определяемого внутри наиболее подходящего для типа объекта - + Transform Преобразовать - + The object will have its placement editable with the Std TransformManip command Объекта будет иметь размещение, редактируемое с помощью команды Std TransformManip - + Cutting Обрезка - + This edit mode is implemented as available but currently does not seem to be used by any object Этот режим редактирования реализован как доступный, но в настоящее время он не используется ни одним объектом - + Color Цвет - + The object will have the color of its individual faces editable with the Part FaceAppearances command Цвет отдельных граней объекта будет редактироваться с помощью команды Part FaceAppearances @@ -1996,7 +1995,7 @@ Perhaps a file permission error? % - % + % @@ -3898,7 +3897,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Навигация @@ -3958,99 +3957,99 @@ You can also use the form: John Doe <john@doe.com> Повернуть к ближайшему - + Font name of the navigation cube Шрифт используемый для навигационного куба - + Default По умолчанию - + Cube size Размер куба - + Size of the navigation cube Размер навигационного куба - + Opacity when inactive Непрозрачность в неактивном состоянии - + Opacity of the navigation cube when not focused Непрозрачность куба навигации, когда он не сфокусирован - + Color Цвет - + Base color for all elements Основной цвет для всех элементов - + Rotation center indicator Индикатор поворота центра - + Sphere size Размер сферы - + Color and transparency Цвета и прозрачность - + The size of the rotation center indicator Размер индикатора центра вращения - + The color of the rotation center indicator Цвет индикатора центра вращения - + 3D Navigation Трёхмерная навигация - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Список настроек кнопки мыши для каждой выбранной настройки навигации. Выберите набор и затем нажмите кнопку, чтобы просмотреть указанные конфигурации. - + Mouse... Подробности стиля управления... - + Navigation settings set Набор настроек навигации - + Orbit style Вращение - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4061,104 +4060,104 @@ Free Turntable: the part will be rotated around the z-axis. Свободное вращение: деталь поворачивается относительно оси Z. - + Turntable Поворотный круг - + Trackball Trackball - + Free Turntable Свободное вращение - + Rotation mode Режим вращения - + Rotations in 3D will use current cursor position as center for rotation Вращение в 3D будет использовать текущую позицию курсора как центр вращения - + Window center Центр окна - + Drag at cursor Перенести к курсору - + Object center Центр объекта - + Default camera orientation Ориентация камеры по умолчанию - + Default camera orientation when creating a new document or selecting the home view Ориентация камеры по умолчанию при создании нового документа или выборе вида "Домой" - + Camera zoom Масштаб камеры - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Устанавливает масштаб камеры для новых документов. Значение - диаметр сферы, помещаемой на экран. - + mm мм - + Animations Анимации - + Enable spinning animations that are used in some navigation styles after dragging Включить анимацию вращения, которая используется в некоторых стилях навигации после перетаскивания - + Enable spinning animations Включить анимацию прокрутки - + Duration of navigation animations that have a fixed duration Продолжительность навигационных анимаций, имеющих фиксированную продолжительность - + Animation duration Длительность анимации - + The duration of navigation animations in milliseconds Длительность анимации навигации в миллисекундах - + Zoom step Шаг масштабирования @@ -4168,34 +4167,34 @@ The value is the diameter of the sphere to fit on the screen. Шрифт - + Zoom operations will be performed at position of mouse pointer Операции масштабирования будут выполняться в позиции указателя мыши - + Zoom at cursor Зум туда, где мышь - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Насколько будет масштабировано. Шаг масштаба '1' означает коэффициент 7.5 для каждого шага масштаба. - + Direction of zoom operations will be inverted Направление масштабирования будет инвертировано - + Invert zoom Инвертировать зум - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4204,7 +4203,7 @@ Mouse tilting is not disabled by this setting. Наклон мыши этой настройкой не отключен. - + Disable touchscreen tilt gesture Отключить жест наклона для сенсорного экрана @@ -4675,7 +4674,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Расположение @@ -5261,32 +5260,17 @@ The 'Status' column shows whether the document could be recovered. Сброс - - OK - OK - - - - Close - Закрыть - - - - Apply - Применить - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Пожалуйста, выберите 1, 2 или 3 точки, прежде чем нажать эту кнопку. Точка может быть на вершине, грани или кромке. Если используемая точка на грани или кромке, то она будет точкой на позиции мыши вдоль грани или кромки. Если выбрана 1 точка, то она будет использоваться в качестве центра вращения. Если выбраны 2 точки, то посредине между ними будет центр вращения, и, при необходимости, будет создана новая пользовательская ось. Если выбраны 3 точки, то первая точка становится центром вращения, и будет лежать на векторе, который перпендикулярен плоскости, проходящей через эти 3 точки. Некоторые расстояния и углы содержатся в отчёте, который может быть полезен при выравнивании объектов. Для Вашего удобства при использовании Shift + щелчок мыши соответствующее расстояние или угол копируются в буфер обмена. - + Incorrect quantity Неправильное количество - + There are input fields with incorrect input, please ensure valid placement values! Некоторые поля заполнены неправильно. Убедитесь в правильности выражений и единиц. @@ -5425,13 +5409,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Отмена - - - - + Transform Преобразовать @@ -5820,13 +5798,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Выберите файл - + Select a directory Выберите папку @@ -5834,13 +5812,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Сохранить как - - + + Open Открыть @@ -5848,12 +5826,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Расширенный - + All files (*.*) Все файлы (*.*) @@ -6030,7 +6008,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Список @@ -6147,57 +6125,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Размер - + Ready Готово - + Close All Закрыть все - - - + + + Toggles this toolbar Переключение этой панели инструментов - - - + + + Toggles this dockable window Спрятать/показать это встраиваемое окно - + WARNING: This is a development version. ПРЕДУПРЕЖДЕНИЕ: Это версия для разработчиков. - + Please do not use it in a production environment. Пожалуйста, не применяйте это в рабочей среде. - - + + Unsaved document Документ не сохранён - + The exported object contains external link. Please save the documentat least once before exporting. Экспортированный объект содержит внешнюю ссылку. Пожалуйста, сохраните документ хотя бы один раз перед экспортом. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Для ссылки на внешние объекты документ необходимо сохранить хотя бы один раз. @@ -6785,12 +6763,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Выбрать модуль - + Open %1 as Открыть %1 как @@ -7325,7 +7303,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view В виде дерева @@ -7333,7 +7311,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Поиск @@ -7391,149 +7369,149 @@ Do you want to specify another directory? Группа - + Labels & Attributes Метки и свойства - + Description Описание - + Internal name Внутреннее имя - + Show items hidden in tree view Показать элементы, скрытые в дереве - + Show items that are marked as 'hidden' in the tree view Показать элементы, помеченные как 'скрытые' в дереве - + Toggle visibility in tree view Переключить видимость в виде дерева - + Toggles the visibility of selected items in the tree view Переключение видимости выбранных элементов в виде дерева - + Create group Создать группу - + Create a group Создать группу - - + + Rename Переименовать - + Rename object Переименовать объект - + Finish editing Завершить редактирование - + Finish editing object Завершить редактирование объекта - + Add dependent objects to selection Добавить зависимые объекты к выделению - + Adds all dependent objects to the selection Добавляет к выделению все зависимые объекты - + Close document Закрыть документ - + Close the document Закрыть документ - + Reload document Перезагрузить документ - + Reload a partially loaded document Перезагрузить частично загруженный документ - + Skip recomputes Пропуск пересчета - + Enable or disable recomputations of document Включение или отключение повторных вычислений документа - + Allow partial recomputes Разрешить частичные перерасчёты - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Включить или выключить повторное вычисление объекта редактирования, если включен параметр 'пропустить пересчет ' - + Mark to recompute Отметить для пересчета - + Mark this object to be recomputed Пометить этот объект для повторного вычисления - + Recompute object Пересчитать объект - + Recompute the selected object Пересчитать выбранный объект - + (but must be executed) (но должно быть выполнено) - + %1, Internal name: %2 %1, внутреннее название: %2 @@ -7730,14 +7708,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Неверный ввод - - + + Input in line %1 is not a number Введённое в строку %1 не является числом @@ -7745,47 +7723,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Иерархия документа - + Tasks Задачи - + Property view Окно свойств - + Selection view Просмотр выделения - + Task List Список задач - + Model Модель - + DAG View DAG Вид - + Report view Просмотр отчёта - + Python console Консоль Python @@ -7825,45 +7803,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Неизвестный тип файла - - + + Cannot open unknown filetype: %1 Не удается открыть неизвестный файл: %1 - + Export failed Экспорт не удался - + Cannot save to unknown filetype: %1 Не удалось сохранить в неизвестном формате файла: %1 - + + Recomputation required + Требуется повторный расчет + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Некоторые документы требуют перерасчета для целей миграции. Настоятельно рекомендуется выполнить перерасчет перед любым изменением, чтобы избежать проблем совместимости. + +Хотите перерассчитать сейчас? + + + + Recompute error + Ошибка пересчёта + + + + Failed to recompute some document(s). +Please check report view for more details. + Не удалось пересчитать некоторые документы. +Пожалуйста, проверьте вид отчета для получения более подробной информации. + + + Workbench failure Ошибка загрузки верстака - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. В вашей системе используется OpenGL %1.%2. FreeCAD требует OpenGL 2.0 или выше. Пожалуйста, обновите ваш графический драйвер и/или карту при необходимости. - + Invalid OpenGL Version Недопустимая версия OpenGL @@ -7914,7 +7918,7 @@ Do you want to specify another directory? Экспорт PDF... - + Unsaved document Документ не сохранён @@ -7925,50 +7929,50 @@ Do you want to specify another directory? Экспортированный объект содержит внешнюю ссылку. Пожалуйста, сохраните документ хотя бы один раз перед экспортом. - + Delete failed Удаление не удалось - + Dependency error Ошибка зависимости - + Copy selected Копировать выбранное - + Copy active document Копировать активный документ - + Copy all documents Копировать все документы - + Paste Вставить - + Expression error Ошибка выражения - + Failed to parse some of the expressions. Please check the Report View for more details. Не удалось проанализировать некоторые выражения. Дополнительные сведения смотрите в журнале. - + Failed to paste expressions Не удалось вставить выражения @@ -8207,7 +8211,7 @@ Do you want to continue? Слишком много открытых ненавязчивых уведомлений. Уведомления пропускаются! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8216,44 +8220,44 @@ Do you want to continue? - + Are you sure you want to continue? Вы уверены, что хотите продолжить? - + Please check report view for more... Пожалуйста, проверьте Просмотр отчёта для более подробной информации... - + Physical path: Физический путь: - - + + Document: Документ: - - + + Path: Путь: - + Identical physical path Идентичная физическая траектория - + Could not save document Невозможно сохранить документ - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8266,102 +8270,102 @@ Would you like to save the file with a different name? Хотите сохранить файл под другим именем? - - - + + + Saving aborted Сохранение прервано - + Save dependent files Сохранить зависимые файлы - + The file contains external dependencies. Do you want to save the dependent files, too? Файл содержит внешние зависимости. Хотите ли вы также сохранить зависимые файлы? - - + + Saving document failed Не удалось сохранить документ - + Save document under new filename... Сохранить документ под новым именем... - - + + Save %1 Document Сохранение документа %1 - + Document Документ - - + + Failed to save document Не удалось сохранить документ - + Documents contains cyclic dependencies. Do you still want to save them? Документы содержат циклические зависимости. Вы уверены, что хотите сохранить их? - + Save a copy of the document under new filename... Сохранить копию документа под новым именем файла... - + %1 document (*.FCStd) документ %1 (*.FCStd) - + Document not closable Документ не закрываем - + The document is not closable for the moment. Этот документ не закрываемый на данный момент. - + Document not saved Документ не сохранен - + The document%1 could not be saved. Do you want to cancel closing it? Документ %1 не может быть сохранен. Вы хотите отменить его закрытие? - + Undo Отменить - + Redo Повторить - + There are grouped transactions in the following documents with other preceding transactions В следующих документах имеются группируются транзакции с другими предыдущими транзакциями - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8434,12 +8438,12 @@ Choose 'Abort' to abort Параметры... - + Out of memory Недостаточно памяти - + Not enough memory available to display the data. Недостаточно памяти для отображения данных. @@ -8455,7 +8459,7 @@ Choose 'Abort' to abort Не удается найти файл %1, ни в %2 ни в %3 - + Navigation styles Стили навигации @@ -8471,32 +8475,32 @@ Choose 'Abort' to abort Вы хотите закрыть этот диалог? - + Do you want to save your changes to document '%1' before closing? Сохранить изменения перед закрытием документа '%1'? - + Do you want to save your changes to document before closing? Сохранить изменения перед закрытием документа ''? - + If you don't save, your changes will be lost. Если вы не сохраните, ваши изменения будут потеряны. - + Apply answer to all Применить ответ ко всем - + %1 Document(s) not saved %1 Документ(ы) не сохранены - + Some documents could not be saved. Do you want to cancel closing? Некоторые документы не удалось сохранить. Вы хотите отменить закрытие? @@ -8633,8 +8637,8 @@ underscore, and must not start with a digit. Не удалось добавить свойство к '%1': %2 - - + + Drag & drop failed Не удалось переместить @@ -8917,8 +8921,7 @@ the current copy will be lost. The property name must only contain alpha numericals, underscore, and must not start with a digit. - The property name must only contain alpha numericals, -underscore, and must not start with a digit. + Имя свойства должно содержать только буквы, цифры, подчеркивание и не должно начинаться с цифры. @@ -8930,12 +8933,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Не допускается: - + Selection not allowed by filter Выбор отвергнут фильтром @@ -9023,13 +9026,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Выравнивание... - - + + Align the selected objects Утилита выравнивания объектов @@ -9313,17 +9316,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Редактировать / закончить редактирование - + Toggles the selected object's edit mode Редактировать выделенные объекты / закончить редактирование - + Activates or Deactivates the selected object's edit mode Активирует или деактивирует режим редактирования выбранного объекта @@ -9355,13 +9358,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Действия с выражением - - + + Actions that apply to expressions Действия, применимые к выражениям @@ -9822,7 +9825,7 @@ underscore, and must not start with a digit. Создать новый пустой документ - + Unnamed Безымянный @@ -9920,13 +9923,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Расположение... - - + + Place the selected objects Расположить выбранные объекты @@ -10064,13 +10067,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh Обновить - - + + Recomputes the current active document Пересчитывает активный документ @@ -10414,13 +10417,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Преобразовать... - - + + Transform the geometry of selected objects Преобразование геометрии выделенных объектов @@ -10428,13 +10431,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Переместить - - + + Transform the selected object in the 3d view Преобразование выделенного объекта в трёхмерном виде @@ -11290,7 +11293,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11301,7 +11304,7 @@ Are you sure you want to continue? - + Object dependencies Зависимости объектов @@ -11413,7 +11416,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12180,8 +12183,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Произошла ошибка -- смотрите просмотр отчета для информации @@ -12938,65 +12941,40 @@ from Python console to Report view panel Источники Света - + + Push In + Отправить в + + + + Pull Out + Вытащить + + + Light sources Источники света - + Light source Источник света - + Intensity Интенсивность - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. + Направление источника света можно изменить перетаскиванием стрелки мышью или полями ввода для более точного позиционирования. - + Direction Направление - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - у - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13404,12 +13382,12 @@ the region are non-opaque. StdCmdProperties - + Properties Свойства - + Show the property view, which displays the properties of the selected object. "Вывести свойства выделенного объекта на экран". diff --git a/src/Gui/Language/FreeCAD_sl.ts b/src/Gui/Language/FreeCAD_sl.ts index 667c1198d5..d5ea7ff314 100644 --- a/src/Gui/Language/FreeCAD_sl.ts +++ b/src/Gui/Language/FreeCAD_sl.ts @@ -91,17 +91,17 @@ Uredi - + Import Uvozi - + Delete Izbriši - + Paste expressions Prilepi izraze @@ -156,8 +156,7 @@ Poravnaj - - + Placement Postavitev @@ -425,42 +424,42 @@ EditMode - + Default Privzeto - + The object will be edited using the mode defined internally to be the most appropriate for the object type Urejanje predmeta bo v načinu, ki je notranje določen kot najprimernejši glede na vrsto predmeta - + Transform Preoblikuj - + The object will have its placement editable with the Std TransformManip command Postavitev predmeta bo mogoče urejati z ukazom Std TransformManip - + Cutting Prerez - + This edit mode is implemented as available but currently does not seem to be used by any object Ta urejevalni način je razpoložljiv, vendar trenutno ni kaže, da bi ga uporabljal katerikoli predmet - + Color Barva - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3908,7 +3907,7 @@ Lahko uporabite tudi obliko: Neznanec <ne@znanec.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Krmarjenje @@ -3968,99 +3967,99 @@ Lahko uporabite tudi obliko: Neznanec <ne@znanec.com> Zasuk do najbližjega - + Font name of the navigation cube Ime pisave za krmilno kocko - + Default Privzeti - + Cube size Velikost kocke - + Size of the navigation cube Velikost krmilne kocke - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Barva - + Base color for all elements Osnovna barva vseh predmetov - + Rotation center indicator Označba vrtišča - + Sphere size Velikost krogle - + Color and transparency Barva in prozornost - + The size of the rotation center indicator Velikost označbe vrtišča - + The color of the rotation center indicator Barva označbe vrtišča - + 3D Navigation 3D krmarjenje - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Naštej nastavitve miškinih tipk za vsako izbrano nastavitev krmarjenja. Izberite nastavitev in nato pritisnite tipko za pregled navedenih nastavitev. - + Mouse... Miška … - + Navigation settings set Nabor nastavitev krmarjenja - + Orbit style Slog vrtenja - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4071,104 +4070,104 @@ Sukajoči pogled: del se bo sukal okrog osi z. (z omejitvami osi). Prostosukajoči pogled: del se bo sukal okoli osi z. - + Turntable Sukajoča pogled - + Trackball Vrtilna krogla - + Free Turntable Prostosukajoča plošča - + Rotation mode Sukalni način - + Rotations in 3D will use current cursor position as center for rotation Pri prostorskem sukanju bo za vrtišče izbran trenutni položaj kazalke - + Window center Sredina okna - + Drag at cursor Povleci h kazalki - + Object center Središče predmeta - + Default camera orientation Privzeta usmeritev kamere - + Default camera orientation when creating a new document or selecting the home view Privzeta usmeritev kamere pri ustvarjanju novega dokumenta ali izbiri domačega pogleda - + Camera zoom Preodmičenje - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Nastavi vidno polje kamere za nove dokumente. Vrednost predstavlja premer krogle, včrtane v zaslon. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Trajanje časovno omejenih animacij krmarjenja - + Animation duration Dolžina animacije - + The duration of navigation animations in milliseconds Trajanje animacij krmarjenja, merjeno v milisekundah - + Zoom step Korak preodmičenja @@ -4178,34 +4177,34 @@ Vrednost predstavlja premer krogle, včrtane v zaslon. Ime pisave - + Zoom operations will be performed at position of mouse pointer Preodmičenje se bo izvajalo okrog položaja kazalke - + Zoom at cursor Preodmičenje ob kazalki - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Za koliko se bo spremenila povečava. Korak preodmičenja "1" pomeni količnik velikost 7,5 za vsak korak. - + Direction of zoom operations will be inverted Smer preodmičenja bo obrnjena - + Invert zoom Obrni preodmičenje - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4214,7 +4213,7 @@ Vpliva le na slog krmarjenja s kretnjami. S to nastavitvijo nagibanje z miško ni onemogočeno. - + Disable touchscreen tilt gesture Onemogoči potezo nagibanja na zaslonu na dotik @@ -4684,7 +4683,7 @@ Prednostni je sistem, nastavljen v splošnih prednastavitvah. Gui::Dialog::DockablePlacement - + Placement Postavitev @@ -5268,32 +5267,17 @@ The 'Status' column shows whether the document could be recovered. Ponastavi - - OK - Potrdi - - - - Close - Zapri - - - - Apply - Uveljavi - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Izberite 1, 2 ali 3 točke preden kliknete ta gumb. Točka je lahko na ogljišču, ploskvi ali na robu. Če bo na ploskvi ali robu, bo uporabljena točka položaja kazalke na ploskvi ali robu. Če je izbrana 1 točka, bo uporabljena kot središče sukanja. Če sta izbrani 2 točki, bo točka na sredini med njima središče sukanja in ustvarjena bo nova os po meri, če bo potrebno. Če so izbrane 3 točke, prva točka postane središče vrtenja in leži na vektorju, ki je pravokoten na ravnino, določeno s temi 3 točkami. Nekateri podatki o razdaljah in kotih so podani v poročilnem pogledu, ki je lahko koristen posebno pri poravnavanju objektov. Za lažjo uporabo se s Premakni + klik ustrezna razdalja ali kot kopira v odložišče. - + Incorrect quantity Nepravilna količina - + There are input fields with incorrect input, please ensure valid placement values! Nekatera vnosna polja so napačno izpolnjena. Vnesite veljavne vrednosti postavitve! @@ -5432,13 +5416,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Prekliči - - - - + Transform Preoblikuj @@ -5829,13 +5807,13 @@ Ali želite shraniti spremembe? Gui::FileChooser - - + + Select a file Izberite datoteko - + Select a directory Izberite mapo @@ -5843,13 +5821,13 @@ Ali želite shraniti spremembe? Gui::FileDialog - + Save as Shrani kot - - + + Open Odpri @@ -5857,12 +5835,12 @@ Ali želite shraniti spremembe? Gui::FileOptionsDialog - + Extended Razširi - + All files (*.*) Vse datoteke (*.*) @@ -6039,7 +6017,7 @@ Ali želite shraniti spremembe? Gui::LabelEditor - + List Seznam @@ -6156,57 +6134,57 @@ Ali želite shraniti spremembe? Gui::MainWindow - + Dimension Mera - + Ready Pripravljen - + Close All Zapri vse - - - + + + Toggles this toolbar Preklopi to orodno vrstico - - - + + + Toggles this dockable window Preklopi to usidrivo okno - + WARNING: This is a development version. OPOZORILO: To je razvojna različica. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document Neshranjen dokument - + The exported object contains external link. Please save the documentat least once before exporting. Izvoženi predmet vsebuje zunanje povezave. Pred izvažanjem shranite dokument vsaj enkrat. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Za povezovanje na zunanje predmete mora biti dokument shranjen vsaj enkrat. @@ -6796,12 +6774,12 @@ Ali želite končati ne da bi shranili podatke? Gui::SelectModule - + Select module Izberite modul - + Open %1 as Odpri %1 kot @@ -7337,7 +7315,7 @@ Ali želite navesti drugo mapo? Gui::TreeDockWidget - + Tree view Drevesni prikaz @@ -7345,7 +7323,7 @@ Ali želite navesti drugo mapo? Gui::TreePanel - + Search Poišči @@ -7403,148 +7381,148 @@ Ali želite navesti drugo mapo? Skupina - + Labels & Attributes Oznake in značilke - + Description Opis - + Internal name Internal name - + Show items hidden in tree view Prikaži predmete, skrite v drevesnem pogledu - + Show items that are marked as 'hidden' in the tree view Prikaži predmete, ki so v drevesnem pogledu označeni kot "skriti" - + Toggle visibility in tree view Preklopi vidnost v drevesnem pogledu - + Toggles the visibility of selected items in the tree view Preklopi vidnost izbranih predmetov v drevesnem pogledu - + Create group Ustvari skupino - + Create a group Ustvarite skupino - - + + Rename Preimenuj - + Rename object Preimenuj predmet - + Finish editing Zaključi urejanje - + Finish editing object Zaključi urejanje predmeta - + Add dependent objects to selection Dodaj izboru odvisne predmete - + Adds all dependent objects to the selection Doda izboru vse odvisne predmete - + Close document Zapri dokument - + Close the document Zapri dokument - + Reload document Ponovno naloži dokument - + Reload a partially loaded document Ponovno naloži delno naložen dokument - + Skip recomputes Preskoči ponovne preračune - + Enable or disable recomputations of document Omogoči ali onemogoči ponovni preračun dokumenta - + Allow partial recomputes Dovoli delno praračunavanje - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Omogoči ali onemogoči preračunavanje urejevanih predmetov, ko je onemogočeno "Preskoči preračunavanje" - + Mark to recompute Označi za ponovni izračun - + Mark this object to be recomputed Označi ta predmet za ponovni preračun - + Recompute object Preračunaj predmete - + Recompute the selected object Preračunaj izbranie predmet - + (but must be executed) (vendar mora biti izvedeno) - + %1, Internal name: %2 %1, Notranje ime: %2 @@ -7741,14 +7719,14 @@ Ali želite navesti drugo mapo? PropertyListDialog - - + + Invalid input Neveljaven vnos - - + + Input in line %1 is not a number Vnos v vrstici %1 ni število @@ -7756,47 +7734,47 @@ Ali želite navesti drugo mapo? QDockWidget - + Tree view Drevesni prikaz - + Tasks Opravila - + Property view Pogled z lastnostmi - + Selection view Pogled na izbor - + Task List Seznam nalog - + Model Model - + DAG View DAG pogled - + Report view Poročevalni pogled - + Python console Pythonova ukazna miza @@ -7836,45 +7814,71 @@ Ali želite navesti drugo mapo? Python - - - + + + Unknown filetype Neznana vrsta datoteke - - + + Cannot open unknown filetype: %1 Neznane vrste datoteke ni mogoče odpreti: %1 - + Export failed Izvažanje spodletelo - + Cannot save to unknown filetype: %1 Ni mogoče shraniti v neznano vrsto datoteke: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Napaka delovnega okolja - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7925,7 +7929,7 @@ Ali želite navesti drugo mapo? Izvažanje PDF... - + Unsaved document Neshranjen dokument @@ -7936,50 +7940,50 @@ Ali želite navesti drugo mapo? Izvoženi predmet vsebuje zunanje povezave. Pred izvažanjem shranite dokument vsaj enkrat. - + Delete failed Brisanje spodletelo - + Dependency error Napaka odvisnosti - + Copy selected Kopiraj izbrano - + Copy active document Kopiraj dejavni dokument - + Copy all documents Kopiraj vse dokumente - + Paste Prilepi - + Expression error Napaka izraza - + Failed to parse some of the expressions. Please check the Report View for more details. Nekaterh izrazov ni bilo mogoče razčleniti. Za več podrobnosti poglejte Poročevalni pogled. - + Failed to paste expressions Izraza ni bilo mogoče prilepiti @@ -8218,7 +8222,7 @@ Ali želite nadaljevati? Preveč odprtih nevsivljivih obvestil. Obvestila so prezrta! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8227,44 +8231,44 @@ Ali želite nadaljevati? - + Are you sure you want to continue? Ali ste prepričani da želite nadaljevati? - + Please check report view for more... Za več informacij poglejte poročevalni pogled ... - + Physical path: Tvarna pot: - - + + Document: Dokument: - - + + Path: Pot: - + Identical physical path Enaka tvarna pot - + Could not save document Dokumenta ni bilo mogoče shraniti - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8277,102 +8281,102 @@ Would you like to save the file with a different name? Ali želite datoteko shraniti z drugačnim imenom? - - - + + + Saving aborted Shranjevanje prekinjeno - + Save dependent files Shrani odvisne datoteke - + The file contains external dependencies. Do you want to save the dependent files, too? Datoteka vsebuje zunanje odvisnosti. Ali želite shraniti tudi odvisne datoteke? - - + + Saving document failed Shranjevanje dokumenta spodletelo - + Save document under new filename... Shrani dokument z novim imenom datoteke … - - + + Save %1 Document Shrani dokument %1 - + Document Dokument - - + + Failed to save document Shranjevanje dokumenta spodletelo - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenti vsebujejo krožne odvisnosti. Jih vseeno želite shraniti? - + Save a copy of the document under new filename... Shrani dvojnik dokumenta z novim imenom … - + %1 document (*.FCStd) Dokument %1 (*.FCStd) - + Document not closable Dokumenta ni mogoče zapreti - + The document is not closable for the moment. Dokumenta trenutno ni mogoče zapreti. - + Document not saved Dokument ni shranjen - + The document%1 could not be saved. Do you want to cancel closing it? Dokumenta%1 ni bilo mogoče shraniti. Ali želite preklicati zapiranje? - + Undo Razveljavi - + Redo Ponovno uveljavi - + There are grouped transactions in the following documents with other preceding transactions V sledečih dokumentih so skupinske izmenjava z drugimi predhodnimi izmenjavami - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8445,12 +8449,12 @@ Izberite "Prekini" za prekinitev Možnosti ... - + Out of memory Zmanjkalo je pomnilnika - + Not enough memory available to display the data. Ni dovolj pomnilnika za prikaz podatkov. @@ -8466,7 +8470,7 @@ Izberite "Prekini" za prekinitev Datoteke %1 ni mogoče najti v %2 niti v %3 - + Navigation styles Slogi krmarjenja @@ -8482,32 +8486,32 @@ Izberite "Prekini" za prekinitev Ali želite zapreti to pogovorno okno? - + Do you want to save your changes to document '%1' before closing? Ali želite pred zapiranjem shraniti spremembe dokumenta '%1'? - + Do you want to save your changes to document before closing? Ali želite pred zapiranjem shraniti spremembe dokumenta? - + If you don't save, your changes will be lost. Če ne shranite, bodo spremembe izgubljene. - + Apply answer to all Uporabi odgovor za vse - + %1 Document(s) not saved %1 Dokumenti niso shranjeni - + Some documents could not be saved. Do you want to cancel closing? Določenih dokumentov se ni dalo zapreti. Ali želite preklicati zapiranje? @@ -8644,8 +8648,8 @@ in podčrtaj ter se ne smo začeti s števko. Ni bilo mogoče dodati lastnosti v '%1': %2 - - + + Drag & drop failed Povleci-spusti spodletelo @@ -8942,12 +8946,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Ni dovoljeno: - + Selection not allowed by filter Sito ne dovoljuje izbora @@ -9035,13 +9039,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Poravnava … - - + + Align the selected objects Poravnaj izbrane predmete @@ -9325,17 +9329,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Pr&eklopi način urejanja - + Toggles the selected object's edit mode Preklopi način urejanja izbranih predmetov - + Activates or Deactivates the selected object's edit mode Omogoči ali onemogoči urejevalni način izbranih predmetov @@ -9367,13 +9371,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Dejanja izrazov - - + + Actions that apply to expressions Dejanja, ki veljajo za izraze @@ -9834,7 +9838,7 @@ underscore, and must not start with a digit. Ustvari nov, prazen dokument - + Unnamed Neimenovan @@ -9932,13 +9936,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Postavitev … - - + + Place the selected objects Postavi izbrane predmete @@ -10076,13 +10080,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Osveži - - + + Recomputes the current active document Ponovno izračuna trenutno dejavni dokument @@ -10426,13 +10430,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Preoblikuj … - - + + Transform the geometry of selected objects Preoblikuj geometrijo izbranih predmetov @@ -10440,13 +10444,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Preoblikuj - - + + Transform the selected object in the 3d view Preoblikuj izbrani predmet v prostorskem pogledu @@ -11302,7 +11306,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11313,7 +11317,7 @@ Ali želite vseeno nadaljevati? - + Object dependencies Odvisnosti predmetov @@ -11425,7 +11429,7 @@ Ali želite shraniti dokument zdaj? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12193,8 +12197,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Prišlo je do napake -- več o tem si preberite v poročevalnem pogledu @@ -12953,65 +12957,40 @@ s Pythonove ukazne mize na poročilno podokno Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity Jakost - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Smer - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13419,12 +13398,12 @@ the region are non-opaque. StdCmdProperties - + Properties Lastnosti - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_sr-CS.ts b/src/Gui/Language/FreeCAD_sr-CS.ts index 339654dc08..acc11ccaae 100644 --- a/src/Gui/Language/FreeCAD_sr-CS.ts +++ b/src/Gui/Language/FreeCAD_sr-CS.ts @@ -91,17 +91,17 @@ Uredi - + Import Uvezi - + Delete Obriši - + Paste expressions Nalepi izraz @@ -156,8 +156,7 @@ Poravnaj - - + Placement Položaj @@ -425,44 +424,44 @@ EditMode - + Default Podrazumevano - + The object will be edited using the mode defined internally to be the most appropriate for the object type Objekat će biti uređivan korišćenjem interno definisanog režima koji je najprikladniji za taj tip objekta - + Transform Pomeri - + The object will have its placement editable with the Std TransformManip command Objekat će imati svoj položaj koji se može uređivati pomoću komande Std TransformManip - + Cutting Cutting - + This edit mode is implemented as available but currently does not seem to be used by any object Ovaj režim uređivanja je implementiran kao dostupan, ali trenutno izgleda da ga nijedan objekat ne koristi - + Color Boja - + The object will have the color of its individual faces editable with the Part FaceAppearances command - The object will have the color of its individual faces editable with the Part FaceAppearances command + Objekat će imati boju svojih pojedinačnih stranica koje se mogu uređivati komandom Part FaceColors @@ -1998,7 +1997,7 @@ Možda je greška u nivou pristupu datoteki? % - % + % @@ -2799,13 +2798,13 @@ There are 3 options available to achieve this: 3) 'Centralized', manually turn off cache in all nodes of all view provider, and only cache at the scene graph root node. This offers the fastest rendering speed but slower response to any scene changes. - 'Render Caching' is another way to say 'Rendering Acceleration'. -There are 3 options available to achieve this: -1) 'Auto' (default), let Coin3D decide where to cache. -2) 'Distributed', manually turn on cache for all view provider root node. -3) 'Centralized', manually turn off cache in all nodes of all view provider, and -only cache at the scene graph root node. This offers the fastest rendering speed -but slower response to any scene changes. + „Keširanje renderovanja“ je još jedan način da se kaže „Ubrzanje renderovanja“. +Dostupne su 3 opcije da se to postigne: +1) 'Auto' (podrazumevano), neka Coin3D odluči gde će se keširati. +2) 'Raspodeljen', ručno uključite keš za sve čvorove davaoca prikaza. +3) „Centralizovan“, ručno isključite keš memoriju za sve čvorove davaoce prikaza, +keširaj samo u korenskom čvoru grafa scene. Ovo nudi najveću brzinu renderovanja +ali sporiji odgovor na bilo kakve promene scene. @@ -3227,7 +3226,7 @@ will be displayed with transparency Number of labels besides the color bar - Number of labels besides the color bar + Broj oznaka pored trake boja @@ -3243,8 +3242,7 @@ will be displayed with transparency Number of decimals for labels besides the color bar - Number of decimals for labels -besides the color bar + Broj decimala oznaka pored trake boja @@ -3906,7 +3904,7 @@ Takođe možete koristiti obrazac: Pera Perić <pera@peric.com>Gui::Dialog::DlgSettingsNavigation - + Navigation Navigacija @@ -3966,99 +3964,99 @@ Takođe možete koristiti obrazac: Pera Perić <pera@peric.com>Okreni na najbliže - + Font name of the navigation cube Naziv fonta navigacione kocke - + Default Podrazumevano - + Cube size Veličina kocke - + Size of the navigation cube Veličina navigacione kocke - + Opacity when inactive Prozirnost kada je neaktivna - + Opacity of the navigation cube when not focused Prozirnost navigaciona kocke kada nije u upotrebi - + Color Boja - + Base color for all elements Osnovna boja za sve elemente - + Rotation center indicator Indikator centra okretanja - + Sphere size Veličina sfere - + Color and transparency Boja i providnost - + The size of the rotation center indicator Veličina indikatora centra rotacije - + The color of the rotation center indicator Boja indikatora centra rotacije - + 3D Navigation 3D Navigacija - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Funkcije tastera miša za izabrani stil 3D navigacije. Izaberi stil 3D navigacije, a zatim pritisni dugme da vidiš funkcije tastera. - + Mouse... Miš... - + Navigation settings set Stil 3D navigacije miša - + Orbit style Način okretanja orbit - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4069,104 +4067,104 @@ Obrtni sto: deo će biti rotiran oko z-ose (sa zadanim ograničenjima na osama). Slobodni obrtni sto: deo će biti rotiran oko z-ose. - + Turntable Obrtni sto - + Trackball Trackball - + Free Turntable Obični gramofon - + Rotation mode Režimi rotacije - + Rotations in 3D will use current cursor position as center for rotation 3D rotacija će koristiti trenutni položaj kursora miša kao centar za rotaciju - + Window center Centar prozora - + Drag at cursor - Drag at cursor + Vuci za kursorom - + Object center Centar objekta - + Default camera orientation Podrazumevana orijentacija kamere - + Default camera orientation when creating a new document or selecting the home view Podrazumevana orijentacija kamere prilikom kreiranja novog dokumenta ili izbora početnog pogleda - + Camera zoom Zumiranje kamere - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Podešava zum kamere za nove dokumente. Vrednost je prečnik sfere koja staje na ekran. - + mm mm - + Animations Animacije - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations - Enable spinning animations + Omogući animaciju obrtanja - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Trajanje animacije - + The duration of navigation animations in milliseconds - The duration of navigation animations in milliseconds + Trajanje animacija navigacije u milisekundama - + Zoom step Korak zumiranja @@ -4176,34 +4174,34 @@ Vrednost je prečnik sfere koja staje na ekran. Naziv fonta - + Zoom operations will be performed at position of mouse pointer Operacije zumiranja će se izvoditi na položaju pokazivača miša - + Zoom at cursor Zumiraj na kursoru - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Koliko će biti zumirano. Korak zumiranja od '1' znači koeficijent od 7,5 za svaki korak zumiranja. - + Direction of zoom operations will be inverted Smer operacije zumiranja će biti obrnut - + Invert zoom Obrnite smer zumiranja - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4212,7 +4210,7 @@ Utiče samo na stil navigacije pokretima. Ovim podešavanjem nije onemogućeno naginjanje miša. - + Disable touchscreen tilt gesture Onemogući naginjanje ekrana osetljivog na dodir @@ -4314,7 +4312,7 @@ horizontalni prostor u Python konzoli Saves Python history across sessions - Saves Python history across sessions + Čuva Python istoriju u svim sesijama @@ -4324,7 +4322,7 @@ horizontalni prostor u Python konzoli Python profiler interval (milliseconds): - Python profiler interval (milliseconds): + Interval Python profajlera (u milisekundama): @@ -4344,7 +4342,7 @@ horizontalni prostor u Python konzoli Used for package installation with pip and debugging with debugpy. Autodetected if needed and not specified. - Used for package installation with pip and debugging with debugpy. Autodetected if needed and not specified. + Koristi se prilikom instalacije paketa sa pip-om i otklanjanje grešaka pomoću debugpy-a. Automatski se detektuje ako je potrebno i nije navedeno. @@ -4401,7 +4399,7 @@ Veća vrednost olakšava odabir stvari, ali može onemogućiti odabir malih stva Preselect the object in 3D view when hovering the cursor over the tree item - Napravi preizbor objekta u 3D pogledu kada miš pređe preko stavke u Stablu dokumenta + Napravi preizbor objekta u 3D pogledu lebdenjem miša iznad stavke u Stablu dokumenta @@ -4483,7 +4481,7 @@ Veća vrednost olakšava odabir stvari, ali može onemogućiti odabir malih stva Color Bar (used in Mesh and FEM Wbs) Label text color - Color Bar (used in Mesh and FEM Wbs) Label text color + Boja teksta oznake Trake boja (koristi se u okruženjima Mreže (Mesh) i FEM) @@ -4493,7 +4491,7 @@ Veća vrednost olakšava odabir stvari, ali može onemogućiti odabir malih stva Color Bar (used in Mesh and FEM Wbs) Label Text Size - Color Bar (used in Mesh and FEM Wbs) Label Text Size + Veličina teksta oznake Trake boja (koristi se u okruženjima Mreže (Mesh) i FEM) @@ -4682,7 +4680,7 @@ Podešeni sistem je onaj koji je postavljen u opštim podešavanjima. Gui::Dialog::DockablePlacement - + Placement Položaj @@ -4857,7 +4855,7 @@ Kolona „Status“ pokazuje da li se dokument može oporaviti. bytes - bytes + bajtova @@ -5268,32 +5266,17 @@ Kolona „Status“ pokazuje da li se dokument može oporaviti. Resetuj - - OK - U redu - - - - Close - Zatvori - - - - Apply - Primeni - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Izaberi 1, 2 ili 3 tačke pre nego što klikneš na ovo dugme. Tačka može biti na temenu, stranici ili ivici. Ako je na stranici ili ivici, korišćena tačka će biti tačka na poziciji miša duž stranice ili ivice. Ako se izabere 1 tačka, ona će se koristiti kao centar rotacije. Ako se izaberu 2 tačke, sredina između njih će biti centar rotacije i nova prilagođena osa će biti napravljena, ako je potrebno. Ako su izabrane 3 tačke, prva tačka postaje centar rotacije i leži na vektoru koji je normalan na ravan definisanu sa 3 tačke. Neke informacije o udaljenosti i uglovima su date u prikazu izveštaja, što može biti korisno pri poravnavanju objekata. Radi vaše udobnosti kada se koristi Shift + click, odgovarajuća udaljenost ili ugao se kopiraju u privremenu memoriju. - + Incorrect quantity Nepravilna količina - + There are input fields with incorrect input, please ensure valid placement values! Postoje polja za unos sa netačnim unosom, molimo vas da obezbedite ispravne vrednosti položaja! @@ -5432,13 +5415,7 @@ Kolona „Status“ pokazuje da li se dokument može oporaviti. Gui::Dialog::Transform - - Cancel - Otkaži - - - - + Transform Pomeri @@ -5572,7 +5549,7 @@ izabranim objektima pre otvaranja ovog dijaloga Show Report view on - Show Report view on + Prikaži Pregledač objava @@ -5715,7 +5692,7 @@ izabranim objektima pre otvaranja ovog dijaloga Reveals this object and its subelements in the python console. - Reveals this object and its subelements in the python console. + Otkriva ovaj objekat i njegove podelemente u Python konzoli. @@ -5829,13 +5806,13 @@ Da li želiš da sačuvaš promene? Gui::FileChooser - - + + Select a file Izaberi datoteku - + Select a directory Izaberi fasciklu @@ -5843,13 +5820,13 @@ Da li želiš da sačuvaš promene? Gui::FileDialog - + Save as Sačuvaj kao - - + + Open Otvori @@ -5857,12 +5834,12 @@ Da li želiš da sačuvaš promene? Gui::FileOptionsDialog - + Extended Prošireno - + All files (*.*) Sve datoteke (*.*) @@ -6039,7 +6016,7 @@ Da li želiš da sačuvaš promene? Gui::LabelEditor - + List Lista @@ -6156,57 +6133,57 @@ Da li želiš da sačuvaš promene? Gui::MainWindow - + Dimension Merne jedinice - + Ready Spreman - + Close All Zatvori sve - - - + + + Toggles this toolbar Uključuje/isključuje ovu paletu alata - - - + + + Toggles this dockable window - Toggles this dockable window + Uključuje/isključuje vidljivost ovog usidrenog prozora - + WARNING: This is a development version. UPOZORENJE: Ovo je razvojna verzija. - + Please do not use it in a production environment. Ovo je razvojna verzija i nemojte je koristiti za profesionalnu upotrebu. - - + + Unsaved document Nesačuvan dokument - + The exported object contains external link. Please save the documentat least once before exporting. Izvezeni objekat sadrži spoljnu vezu. Sačuvaj dokument bar jednom pre nego što ga izvezeš. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Da bi se povezali sa spoljnim objektima, dokument mora biti sačuvan najmanje jednom. @@ -6645,7 +6622,7 @@ Da li želiš izaći bez čuvanja podataka? Saves Python history across %1 sessions - Saves Python history across %1 sessions + Čuva Python istoriju u %1 sesija @@ -6796,12 +6773,12 @@ Da li želiš izaći bez čuvanja podataka? Gui::SelectModule - + Select module Izaberi modul - + Open %1 as Otvori %1 kao @@ -6955,7 +6932,7 @@ Do you want to specify another directory? Recompute after commit - Recompute after commit + Ponovo izračunaj nakon potvrde @@ -7337,7 +7314,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Stablo dokumenta @@ -7345,7 +7322,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Pretraga @@ -7390,12 +7367,12 @@ Do you want to specify another directory? Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. - Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. + Prikaži u stablu dokumenta dodatnu kolonu sa opisima stavki. Opis stavke se može podesiti pritiskom na F2 (ili dugme za uređivanje vašeg OS-a) ili uređivanjem svojstva 'label2'. Show an internal name column for items. - Show an internal name column for items. + Prikaži kolonu sa unutrašnjim imenima stavki. @@ -7403,148 +7380,148 @@ Do you want to specify another directory? Grupa - + Labels & Attributes Oznake & Atributi - + Description Opis - + Internal name Unutrašnje ime - + Show items hidden in tree view Prikaži sakrivene stavke u stablu dokumenta - + Show items that are marked as 'hidden' in the tree view Prikaži stavke koje su u stablu dokumenta označene kao 'sakrivene' - + Toggle visibility in tree view Uključi/isključi vidljivost u stablu dokumenta - + Toggles the visibility of selected items in the tree view Uključi/isključi vidljivost izabranih stavki u stablu dokumenta - + Create group Napravi grupu - + Create a group Napravi grupu - - + + Rename Preimenuj - + Rename object Preimenuj objekat - + Finish editing Završi uređivanje - + Finish editing object Završi uređivanje objekta - + Add dependent objects to selection Dodaj zavisne objekte izboru - + Adds all dependent objects to the selection Dodaje sve zavisne objekte izboru - + Close document Zatvori dokument - + Close the document Zatvori dokument - + Reload document Učitaj dokument ponovo - + Reload a partially loaded document Učitaj ponovo delimično učitan dokument - + Skip recomputes Preskoči ponovna preračunavanja - + Enable or disable recomputations of document Omogući ili onemogući ponovno preračunavanje dokumenta - + Allow partial recomputes Dozvoli delimična preračunavanja - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Enable or disable recomputating editing object when 'skip recomputation' is enabled - + Mark to recompute Označi za ponovno izračunavanje - + Mark this object to be recomputed Označi ovaj objekat za ponovno izračunavanje - + Recompute object Ponovno preračunaj objekat - + Recompute the selected object Ponovno preračunaj izabrani objekat - + (but must be executed) (ali mora da se izvrši) - + %1, Internal name: %2 %1, Unutrašnje ime: %2 @@ -7741,14 +7718,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Neispravan unos - - + + Input in line %1 is not a number Unos u redu %1 nije broj @@ -7756,47 +7733,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Stablo dokumenta - + Tasks Zadaci - + Property view Osobine prikaza - + Selection view Pregledač izbora - + Task List Lista zadataka - + Model Model - + DAG View DAG View - + Report view Pregledač objava - + Python console Python konzola @@ -7836,45 +7813,69 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Nepoznata vrsta datoteke - - + + Cannot open unknown filetype: %1 Ne mogu otvoriti nepoznatu vrstu datoteke: %1 - + Export failed Izvoz nije uspeo - + Cannot save to unknown filetype: %1 Ne mogu sačuvati nepoznatu vrstu datoteke: %1 - + + Recomputation required + Potreban je ponovni proračun + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Zbog migracije neki dokumenti zahtevaju ponovno izračunavanje. Da bi se izbegli problemi sa kompatibilnošću, pre bilo kakve izmene preporučljivo je ponovo obaviti proračun? + + + + Recompute error + Greška pri ponovnom izračunavanju + + + + Failed to recompute some document(s). +Please check report view for more details. + Nije uspeo ponovni proračun nekih dokumenata. +Za više detalja pogledaj Pregledač objava. + + + Workbench failure Otkazivanje radnog okruženja - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ovaj sistem koristi OpenGL %1.%2. FreeCAD zahteva OpenGL 2.0 ili noviji. Nadogradite svoj grafički drajver i/ili karticu po potrebi. - + Invalid OpenGL Version Pogrešna OpenGL verzija @@ -7925,7 +7926,7 @@ Do you want to specify another directory? Izvozim PDF... - + Unsaved document Nesačuvan dokument @@ -7936,50 +7937,50 @@ Do you want to specify another directory? Izvezeni objekat sadrži spoljnu vezu. Sačuvaj dokument bar jednom pre nego što ga izvezeš. - + Delete failed Brisanje nije uspelo - + Dependency error Greška međuzavisnosti - + Copy selected Kopiraj izabrano - + Copy active document Kopiraj aktivni dokument - + Copy all documents Kopiraj sve dokumente - + Paste Nalepi - + Expression error Greška izraza - + Failed to parse some of the expressions. Please check the Report View for more details. Raščlanjivanje nekih izraza nije uspelo. Pogledaj izveštaj za više detalja. - + Failed to paste expressions Nalepljivanje izraza nije uspelo @@ -8200,12 +8201,12 @@ Da li želiš da nastaviš? Notifier: - Notifier: + Obaveštavač: Do you want to skip confirmation of further critical message notifications while loading the file? - Do you want to skip confirmation of further critical message notifications while loading the file? + Da li želiš da izbegneš potvrđivanje obaveštenja o kritičnim porukama prilikom učitavanja datoteke? @@ -8218,7 +8219,7 @@ Da li želiš da nastaviš? Previše otvorenih nenametljivih obaveštenja. Obaveštenja se izostavljaju! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8227,44 +8228,44 @@ Da li želiš da nastaviš? - + Are you sure you want to continue? Da li si siguran da želiš da nastaviš? - + Please check report view for more... Pogledajte izveštaj za više... - + Physical path: Fizička putanja: - - + + Document: Dokument: - - + + Path: Putanja: - + Identical physical path Identična fizička putanja - + Could not save document Nije moguće sačuvati dokument - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8277,102 +8278,102 @@ Would you like to save the file with a different name? Da li želite da sačuvate datoteku pod drugim imenom? - - - + + + Saving aborted Snimanje obustavljeno - + Save dependent files Sačuvaj zavisne datoteke - + The file contains external dependencies. Do you want to save the dependent files, too? Datoteka sadrži spoljne zavisnosti. Da li želiš da sačuvaš i zavisne datoteke? - - + + Saving document failed Snimanje dokumenta nije uspelo - + Save document under new filename... Sačuvaj dokument pod novim imenom... - - + + Save %1 Document Sačuvaj %1 Dokument - + Document Dokument - - + + Failed to save document Nije uspelo snimanje dokumenta - + Documents contains cyclic dependencies. Do you still want to save them? Dokumenti sadrže ciklične zavisnosti. Da li i dalje želiš da ih spaseš? - + Save a copy of the document under new filename... Sačuvaj kopiju dokumenta pod novim imenom datoteke... - + %1 document (*.FCStd) %1 dokument (*.FCStd) - + Document not closable Dokument nije moguće zatvoriti - + The document is not closable for the moment. Trenutno nije moguće zatvoriti dokument. - + Document not saved Dokument nije snimnjen - + The document%1 could not be saved. Do you want to cancel closing it? Dokument%1 nije mogao biti snimljen. Da li želiš da otkažeš zatvaranje? - + Undo Poništi - + Redo Ponovi - + There are grouped transactions in the following documents with other preceding transactions There are grouped transactions in the following documents with other preceding transactions - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8445,12 +8446,12 @@ Izaberi „Prekini“ da bi prekinuo Opcije... - + Out of memory Nema dovoljno memorije - + Not enough memory available to display the data. Nema dovoljno memorije za prikazivanje podataka. @@ -8466,7 +8467,7 @@ Izaberi „Prekini“ da bi prekinuo Ne mogu pronaći datoteku %1 ni u %2 ni u %3 - + Navigation styles Navigacioni stilovi @@ -8482,32 +8483,32 @@ Izaberi „Prekini“ da bi prekinuo Da li želiš da zatvoriš ovaj dijalog? - + Do you want to save your changes to document '%1' before closing? Da li želiš da sačuvaš promene u dokument '%1' pre zatvaranja? - + Do you want to save your changes to document before closing? Da li želiš da snimiš promene u dokumentu pre zatvaranja? - + If you don't save, your changes will be lost. Ako ne sačuvaš, promene će biti izgubljene. - + Apply answer to all Primeni odgovor na sve - + %1 Document(s) not saved %1 Dokument(i) nisu snimljeni - + Some documents could not be saved. Do you want to cancel closing? Neki dokumenti nisu mogli biti snimljeni. Da li želiš da otkažeš zatvaranje? @@ -8644,20 +8645,20 @@ donju crtu i ne sme da počinje brojem. Nije uspelo dodavanje osobine u '%1': %2 - - + + Drag & drop failed Prevlačenje i otpuštanje nije uspelo Setup configurable object - Setup configurable object + Postavke podesivog objekta Select which object to copy or exclude when configuration changes. All external linked objects are excluded by default. - Select which object to copy or exclude when configuration changes. All external linked objects are excluded by default. + Izaberi koji objekat želiš kopirati ili isključiti kada se konfiguracija promeni. Svi spoljno povezani objekti su podrazumevano isključeni. @@ -8713,7 +8714,7 @@ Takođe automatski ponovo uradi kopiju ako se promeni originalni povezani objeka Refresh configurable object - Refresh configurable object + Osveži podesivi objekat @@ -8721,20 +8722,20 @@ Takođe automatski ponovo uradi kopiju ako se promeni originalni povezani objeka creating a new deep copy. Note that any changes made to the current copy will be lost. - Synchronize the original configurable source object by -creating a new deep copy. Note that any changes made to -the current copy will be lost. + Sinhronizuj originalni podesivi izvorni objekat stvaranjem +nove kopije. Vodi računa da će sve promene napravljene na +trenutnoj kopiji biti izgubljene. Toggle array elements - Toggle array elements + Uključi/Isključi umnožene elemente Change whether show each link array element as individual objects - Change whether show each link array element as individual objects + Da li da se svaki umnoženi element prikazuje kao pojedinačni objekat @@ -8897,7 +8898,7 @@ the current copy will be lost. Activate on hover - Activate on hover + Aktiviraj prilikom lebdenja @@ -8942,12 +8943,12 @@ donju crtu i ne sme da počinje brojem. SelectionFilter - + Not allowed: Nije dozvoljeno: - + Selection not allowed by filter Filter ne dozvoljava izbor @@ -9035,13 +9036,13 @@ donju crtu i ne sme da počinje brojem. StdCmdAlignment - + Alignment... Poravnaj... - - + + Align the selected objects Poravnaj odabrane objekte @@ -9325,17 +9326,17 @@ donju crtu i ne sme da počinje brojem. StdCmdEdit - + Toggle &Edit mode Uključi/isključi režim uređivanja - + Toggles the selected object's edit mode Uključuje/isključuje režim uređivanja izabranog objekta - + Activates or Deactivates the selected object's edit mode Aktivira ili deaktivira režim uređivanja izabranog objekta @@ -9367,13 +9368,13 @@ donju crtu i ne sme da počinje brojem. StdCmdExpression - + Expression actions Radnje sa izrazima - - + + Actions that apply to expressions Radnje koje se primenjuju na izraze @@ -9616,7 +9617,7 @@ donju crtu i ne sme da počinje brojem. A Link is an object that references or links to another object in the same document, or in another document. Unlike Clones, Links reference the original Shape directly, making them more memory-efficient, which helps with the creation of complex assemblies. - A Link is an object that references or links to another object in the same document, or in another document. Unlike Clones, Links reference the original Shape directly, making them more memory-efficient, which helps with the creation of complex assemblies. + Spona je vrsta objekta koji pravi vezu ka drugom objektu u istom ili drugom dokumentu. Za razliku od klonova, Spone direktno prave vezu ka originalnom obliku, zbog čega one zauzimaju veoma malo memorije pa su pogodne prilikom pravljenja velikih sklopova. @@ -9834,7 +9835,7 @@ donju crtu i ne sme da počinje brojem. Napravi novi prazan dokument - + Unnamed Bez imena @@ -9912,7 +9913,8 @@ donju crtu i ne sme da počinje brojem. A Part is a general purpose container to keep together a group of objects so that they act as a unit in the 3D view. It is meant to arrange objects that have a Part TopoShape, like Part Primitives, PartDesign Bodies, and other Parts. - A Part is a general purpose container to keep together a group of objects so that they act as a unit in the 3D view. It is meant to arrange objects that have a Part TopoShape, like Part Primitives, PartDesign Bodies, and other Parts. + Deo je kontejner opšte namene koji objedinjuje grupu objekata da bi se u 3D pogledu ponašali kao celina. +Namenjen je da organizuje objekte koji prikazuju nešto u 3D pogledu, kao što su Primitivi, Tela i drugi objekti. @@ -9932,13 +9934,13 @@ donju crtu i ne sme da počinje brojem. StdCmdPlacement - + Placement... Položaj... - - + + Place the selected objects Postavi odabrane objekte @@ -10076,13 +10078,13 @@ donju crtu i ne sme da počinje brojem. StdCmdRefresh - + &Refresh &Osveži - - + + Recomputes the current active document Ponovo izračunava trenutno aktivni dokument @@ -10426,13 +10428,13 @@ donju crtu i ne sme da počinje brojem. StdCmdTransform - + Transform... Pomeri... - - + + Transform the geometry of selected objects Pomeri geometriju izabranih objekata @@ -10440,13 +10442,13 @@ donju crtu i ne sme da počinje brojem. StdCmdTransformManip - + Transform Pomeri - - + + Transform the selected object in the 3d view Pomeri izabrani objekat u 3D pogledu @@ -10484,13 +10486,13 @@ donju crtu i ne sme da počinje brojem. Select all instances - Select all instances + Izaberi sve instance Select all instances of the current selected object - Select all instances of the current selected object + Izaberi sve instance trenutno izabranog objekta @@ -10504,7 +10506,7 @@ donju crtu i ne sme da počinje brojem. TreeView behavior options and actions - TreeView behavior options and actions + Ponašanje i radnje Stabla dokumenta @@ -10764,13 +10766,13 @@ donju crtu i ne sme da počinje brojem. Stereo quad buffer - Stereo quad buffer + Stereoskopsko četvorostruko baferovanje Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Prebaci stereoskopski prikaz na četvorostruko baferovanje @@ -11104,7 +11106,7 @@ donju crtu i ne sme da počinje brojem. Preselect the object in 3D view when hovering the cursor over the tree item - Napravi preizbor objekta u 3D pogledu kada miš pređe preko stavke u Stablu dokumenta + Napravi preizbor objekta u 3D pogledu lebdenjem miša iznad stavke u Stablu dokumenta @@ -11302,7 +11304,7 @@ donju crtu i ne sme da počinje brojem. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11313,7 +11315,7 @@ Da li si siguran da želiš da nastaviš? - + Object dependencies Međuzavisnosti objekata @@ -11425,7 +11427,7 @@ Da li želiš sada da sačuvaš dokument? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11537,7 +11539,7 @@ Da li i dalje želiš da nastaviš? Individual views - Individual views + Pojedinačni pogledi @@ -11830,8 +11832,8 @@ nakon pokretanja FreeCAD-a <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> Currently, your system has the following workbenches:</p></body></html> - <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> -Currently, your system has the following workbenches:</p></body></html> + <html><head/><body><p>Redosled radnih okruženja možete da promenite tehnikom prevlačenja ili desnim klikom na okruženje i izborom <span style=" font-weight:600; font-style:italic;">Sortiraj po abecedi</span>. Dodatna radna okruženja se mogu instalirati pomoću Menadžera dodataka.</p><p> +Trenutno tvoj sistem ima sledeća radna okruženja:</p></body></html> @@ -12193,8 +12195,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Dogodila se greška - Za više informacija pogledaj Pregledač objava @@ -12379,7 +12381,7 @@ Currently, your system has the following workbenches:</p></body>< Operator - Operator + Operater @@ -12535,7 +12537,7 @@ prema veličini ekrana ili ličnom ukusu Tree view and Property view mode: - Tree view and Property view mode: + Režim rada Stabla dokumenta i Urednika svojstava: @@ -12543,10 +12545,10 @@ prema veličini ekrana ili ličnom ukusu 'Combined': combine Tree view and Property view into one panel. 'Independent': split Tree view and Property view into separate panels. - Customize how tree view is shown in the panel (restart required). + Prilagođavanje kako će se Stablo dokumenta prikazivati u Kombinovanom panelu (potrebno je ponovno pokretanje). -'Combined': combine Tree view and Property view into one panel. -'Independent': split Tree view and Property view into separate panels. +'Kombinovano': kombinuje Stablo dokumenta, Panel zadataka i Urednik svojstava u jedan panel +'Nezavisno': kombinovani panel se deli na više panela. @@ -12597,12 +12599,12 @@ prikazati početni ekran Activate overlay handling of dock windows - Activate overlay handling of dock windows + Običan/prekrivajući režim za sve usidrene prozore Activate overlay handling - Activate overlay handling + Omogući prekrivajući režim @@ -12677,12 +12679,12 @@ prikazati početni ekran Combined - Combined + Kombinovano Independent - Independent + Nezavisno @@ -12920,12 +12922,12 @@ sa Python konzole na tablu za prikaz izveštaja Selection back - Selection back + Izbor nazad Restore the previous Tree view selection. Only works if Tree RecordSelection mode is switched on. - Restore the previous Tree view selection. Only works if Tree RecordSelection mode is switched on. + Rekonstruiše prethodni izbor u Stablu dokumenta. Radi samo ako je uključen režim Tree RecordSelection. @@ -12933,12 +12935,12 @@ sa Python konzole na tablu za prikaz izveštaja Selection forward - Selection forward + Izbor napred Restore the next Tree view selection. Only works if Tree RecordSelection mode is switched on. - Restore the next Tree view selection. Only works if Tree RecordSelection mode is switched on. + Rekonstruiše sledeći izbor u Stablu dokumenta. Radi samo ako je uključen režim Tree RecordSelection. @@ -12949,65 +12951,40 @@ sa Python konzole na tablu za prikaz izveštaja Izvori svetlosti - + + Push In + Povećaj + + + + Pull Out + Smanji + + + Light sources Izvori svetlosti - + Light source Izvor svetlosti - + Intensity Intenzitet - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Podesi orijentaciju izvora svetlosti tako što ćeš vući strelicu mišem ili koristi vrednosti q0, q1, q2 i q3 za fino podešavanje. - + Direction Pravac - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13266,7 +13243,7 @@ the region are non-opaque. Hide tab bar in dock overlay - Sakrij traku sa karticama prekrivajućeg sidrišta + Sakrij traku sa jezičcima kartica prekrivajućeg sidrišta @@ -13415,14 +13392,14 @@ the region are non-opaque. StdCmdProperties - + Properties Osobine - + Show the property view, which displays the properties of the selected object. - Show the property view, which displays the properties of the selected object. + Prikaži panel Osobine prikaza, u kome se prikazuju osobine izabranog objekta. @@ -13449,7 +13426,7 @@ the region are non-opaque. Change to a standard view - Change to a standard view + Promeni na neki standardni pogled @@ -13543,7 +13520,7 @@ the region are non-opaque. Theme customization - Theme customization + Prilagođavanje teme @@ -13555,7 +13532,7 @@ the region are non-opaque. This color might be used by your theme to let you customize it. - This color might be used by your theme to let you customize it. + Ovu boju možda koristiti vaša tema. @@ -13580,7 +13557,7 @@ the region are non-opaque. Style sheet how user interface will look like - Style sheet how user interface will look like + Stilski list izgleda korisničkog interfejsa @@ -13600,12 +13577,12 @@ the region are non-opaque. Icon size override, set to 0 for the default value. - Icon size override, set to 0 for the default value. + Podesi veličinu ikone, 0 je podrazumevana vrednost. Additional row spacing - Additional row spacing + Dodatni razmak redova @@ -13620,12 +13597,12 @@ the region are non-opaque. Icon size - Icon size + Veličina ikone Additional spacing for tree view rows. Bigger values will increase row item heights. - Additional spacing for tree view rows. Bigger values will increase row item heights. + Dodatni razmak između redova u Stablu dokumenta. @@ -13640,17 +13617,17 @@ the region are non-opaque. Show visibility icon - Show visibility icon + Ikona statusa vidljivosti Hide header with column names from the tree view. - Hide header with column names from the tree view. + Sakrij u Stablu dokumenta zaglavlje sa imenima kolona. Hide header - Hide header + Sakrij zaglavlje @@ -13665,12 +13642,12 @@ the region are non-opaque. Hide column with object description in tree view. - Hide column with object description in tree view. + Sakrij u Stablu dokumenta kolonu sa opisima objekata. Hide description - Hide description + Sakrij opise @@ -13680,7 +13657,7 @@ the region are non-opaque. Hide tab bar in dock overlay - Sakrij traku sa karticama prekrivajućeg sidrišta + Sakrij traku sa jezičcima kartica prekrivajućeg sidrišta diff --git a/src/Gui/Language/FreeCAD_sr.ts b/src/Gui/Language/FreeCAD_sr.ts index e075b63add..da027a033f 100644 --- a/src/Gui/Language/FreeCAD_sr.ts +++ b/src/Gui/Language/FreeCAD_sr.ts @@ -91,17 +91,17 @@ Уреди - + Import Увези - + Delete Обриши - + Paste expressions Налепи израз @@ -156,8 +156,7 @@ Поравнај - - + Placement Положај @@ -425,44 +424,44 @@ EditMode - + Default Подразумевано - + The object will be edited using the mode defined internally to be the most appropriate for the object type Објекат ће бити уређиван коришћењем интерно дефинисаног режима који је најприкладнији за тај тип објекта - + Transform Помери - + The object will have its placement editable with the Std TransformManip command Објекат ће имати свој положај који се може уређивати помоћу команде Std TransformManip - + Cutting Cutting - + This edit mode is implemented as available but currently does not seem to be used by any object Овај режим уређивања је имплементиран као доступан, али тренутно изгледа да га ниједан објекат не користи - + Color Боја - + The object will have the color of its individual faces editable with the Part FaceAppearances command - The object will have the color of its individual faces editable with the Part FaceAppearances command + Објекат ће имати боју својих појединачних страница које се могу уређивати командом Part FaceAppearances @@ -1998,7 +1997,7 @@ Perhaps a file permission error? % - % + % @@ -2799,13 +2798,13 @@ There are 3 options available to achieve this: 3) 'Centralized', manually turn off cache in all nodes of all view provider, and only cache at the scene graph root node. This offers the fastest rendering speed but slower response to any scene changes. - 'Render Caching' is another way to say 'Rendering Acceleration'. -There are 3 options available to achieve this: -1) 'Auto' (default), let Coin3D decide where to cache. -2) 'Distributed', manually turn on cache for all view provider root node. -3) 'Centralized', manually turn off cache in all nodes of all view provider, and -only cache at the scene graph root node. This offers the fastest rendering speed -but slower response to any scene changes. + „Кеширање рендеровања“ је још један начин да се каже „Убрзање рендеровања“. +Доступне су 3 опције да се то постигне: +1) 'Ауто' (подразумевано), нека Coin3D одлучи где ће се кеширати. +2) 'Расподељен', ручно укључите кеш за све чворове даваоца приказа. +3) „Централизован“, ручно искључите кеш меморију за све чворове даваоце приказа, +кеширај само у коренском чвору графа сцене. Ово нуди највећу брзину рендеровања +али спорији одговор на било какве промене сцене. @@ -3227,7 +3226,7 @@ will be displayed with transparency Number of labels besides the color bar - Number of labels besides the color bar + Број ознака поред траке боја @@ -3243,8 +3242,7 @@ will be displayed with transparency Number of decimals for labels besides the color bar - Number of decimals for labels -besides the color bar + Број децимала ознака поред траке боја @@ -3906,7 +3904,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Навигација @@ -3966,99 +3964,99 @@ You can also use the form: John Doe <john@doe.com> Окрени на најближе - + Font name of the navigation cube Назив фонта навигационе коцке - + Default Подразумевано - + Cube size Величина коцке - + Size of the navigation cube Величина навигационе коцке - + Opacity when inactive Прозирност када је неактивна - + Opacity of the navigation cube when not focused Прозирност навигациона коцке када није у употреби - + Color Боја - + Base color for all elements Основна боја за све елементе - + Rotation center indicator Индикатор центра ротације - + Sphere size Величина сфере - + Color and transparency Боја и провидност - + The size of the rotation center indicator Величина индикатора центра ротације - + The color of the rotation center indicator Боја индикатора центра ротације - + 3D Navigation 3Д Навигација - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Функције тастера миша за изабрани стил 3Д навигације. Изабери стил 3Д навигације, а затим притисни дугме да видиш функције тастера. - + Mouse... Миш... - + Navigation settings set Стил 3Д навигације миша - + Orbit style Начин окретања орбит - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4069,104 +4067,104 @@ Trackball: померање миша хоризонтално ће ротира Слободни обртни сто: део ће бити ротиран око z-осе. - + Turntable Обртни сто - + Trackball Trackball - + Free Turntable Слободно обртни сто - + Rotation mode Режими ротације - + Rotations in 3D will use current cursor position as center for rotation 3Д ротација ће користити тренутну положај курсора миша као центар за ротацију - + Window center Центар прозора - + Drag at cursor - Drag at cursor + Вуци за курсором - + Object center Центар објекта - + Default camera orientation Подразумевана оријентација камере - + Default camera orientation when creating a new document or selecting the home view Подразумевана оријентација камере приликом креирања новог документа или избора почетног погледа - + Camera zoom Зумирање камере - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Подешава зум камере за нове документе. Вредност је пречник сфере која стаје на екран. - + mm мм - + Animations Анимације - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations - Enable spinning animations + Омогући анимацију обртања - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Трајање анимације - + The duration of navigation animations in milliseconds - The duration of navigation animations in milliseconds + Трајање анимација навигације у милисекундама - + Zoom step Корак зумирања @@ -4176,34 +4174,34 @@ The value is the diameter of the sphere to fit on the screen. Назив фонта - + Zoom operations will be performed at position of mouse pointer Операције зумирања ће се изводити на положају показивача миша - + Zoom at cursor Зумирај на курсору - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Колико ће бити зумирано. Корак зумирања од '1' значи коефицијент од 7,5 за сваки корак зумирања. - + Direction of zoom operations will be inverted Смер операције зумирања ће бити обрнут - + Invert zoom Обрни смер зумирања - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4212,7 +4210,7 @@ Mouse tilting is not disabled by this setting. Овим подешавањем није онемогућено нагињање миша. - + Disable touchscreen tilt gesture Онемогући нагињање екрана осетљивог на додир @@ -4314,7 +4312,7 @@ horizontal space in Python console Saves Python history across sessions - Saves Python history across sessions + Чува Python историју у свим сесијама @@ -4324,7 +4322,7 @@ horizontal space in Python console Python profiler interval (milliseconds): - Python profiler interval (milliseconds): + Интервал Python профајлера (у милисекундама): @@ -4344,7 +4342,7 @@ horizontal space in Python console Used for package installation with pip and debugging with debugpy. Autodetected if needed and not specified. - Used for package installation with pip and debugging with debugpy. Autodetected if needed and not specified. + Користи се за инсталацију пакета са pip-ом и отклањање грешака помоћу debugpy-а. Аутоматски се детектује ако је потребно и није наведено. @@ -4401,7 +4399,7 @@ Larger value eases to pick things, but can make small features impossible to sel Preselect the object in 3D view when hovering the cursor over the tree item - Направи преизбор објекта у 3Д погледу када миш пређе преко ставке у Стаблу документа + Направи преизбор објекта у 3Д погледу лебдењем миша изнад ставке у Стаблу документа @@ -4483,7 +4481,7 @@ Larger value eases to pick things, but can make small features impossible to sel Color Bar (used in Mesh and FEM Wbs) Label text color - Color Bar (used in Mesh and FEM Wbs) Label text color + Боја текста ознаке Траке боја (користи се у окружењима Мреже (Mesh) и FEM) @@ -4493,7 +4491,7 @@ Larger value eases to pick things, but can make small features impossible to sel Color Bar (used in Mesh and FEM Wbs) Label Text Size - Color Bar (used in Mesh and FEM Wbs) Label Text Size + Величина текста ознаке Траке боја (користи се у окружењима Мреже (Mesh) и FEM) @@ -4682,7 +4680,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Положај @@ -4857,7 +4855,7 @@ The 'Status' column shows whether the document could be recovered. bytes - bytes + бајтова @@ -5268,32 +5266,17 @@ The 'Status' column shows whether the document could be recovered. Ресетуј - - OK - У реду - - - - Close - Затвори - - - - Apply - Примени - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Изабери 1, 2 или 3 тачке пре него што кликнеш на ово дугме. Тачка може бити на темену, страници или ивици. Ако је на страници или ивици, коришћена тачка ће бити тачка на позицији миша дуж странице или ивице. Ако се изабере 1 тачка, она ће се користити као центар ротације. Ако се изаберу 2 тачке, средина између њих ће бити центар ротације и нова прилагођена оса ће бити направљена, ако је потребно. Ако су изабране 3 тачке, прва тачка постаје центар ротације и лежи на вектору који је нормалан на раван дефинисану са 3 тачке. Неке информације о удаљености и угловима су дате у приказу извештаја, што може бити корисно при поравнавању објеката. Ради ваше удобности када се користи Shift + click, одговарајућа удаљеност или угао се копирају у привремену меморију. - + Incorrect quantity Неправилна количина - + There are input fields with incorrect input, please ensure valid placement values! Постоје поља за унос са нетачним уносом, молимо вас да обезбедите исправне вредности положаја! @@ -5432,13 +5415,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Откажи - - - - + Transform Помери @@ -5572,7 +5549,7 @@ originally selected prior to opening this dialog Show Report view on - Show Report view on + Прикажи Прегледач објава @@ -5715,7 +5692,7 @@ originally selected prior to opening this dialog Reveals this object and its subelements in the python console. - Reveals this object and its subelements in the python console. + Открива овај објекат и његове поделементе у Пyтхон конзоли. @@ -5829,13 +5806,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Изабери датотеку - + Select a directory Изабери фасциклу @@ -5843,13 +5820,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Сачувај као - - + + Open Отвори @@ -5857,12 +5834,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Проширено - + All files (*.*) Све датотеке (*.*) @@ -6039,7 +6016,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Лиcта @@ -6156,57 +6133,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Мерне јединице - + Ready Спреман - + Close All Затвори све - - - + + + Toggles this toolbar Укључује/иcкључује ову палету алатки - - - + + + Toggles this dockable window - Toggles this dockable window + Укључује/искључује видљивост овог усидреног прозора - + WARNING: This is a development version. УПОЗОРЕЊЕ: Ово је развојна верзија. - + Please do not use it in a production environment. Ово је развојна верзија и немојте је користити за професионалну употребу. - - + + Unsaved document Несачуван документ - + The exported object contains external link. Please save the documentat least once before exporting. Извезени објекат садржи спољну везу. Сачувај документ бар једном пре него што га извезеш. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Да би се повезао са спољним објектима, документ мора бити сачуван најмање једном. @@ -6645,7 +6622,7 @@ Do you want to exit without saving your data? Saves Python history across %1 sessions - Saves Python history across %1 sessions + Чува Python историју у %1 сесија @@ -6796,12 +6773,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Изабери модул - + Open %1 as Отвори %1 као @@ -6955,7 +6932,7 @@ Do you want to specify another directory? Recompute after commit - Recompute after commit + Поново израчунај након потврде @@ -7337,7 +7314,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Стабло документа @@ -7345,7 +7322,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Претрага @@ -7390,12 +7367,12 @@ Do you want to specify another directory? Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. - Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. + Прикажи у стаблу документа додатну колону са описима ставки. Опис ставке се може подесити притиском на F2 (или дугме за уређивање вашег ОС-а) или уређивањем својства 'label2'. Show an internal name column for items. - Show an internal name column for items. + Прикажи колону са унутрашњим именима ставки. @@ -7403,148 +7380,148 @@ Do you want to specify another directory? Група - + Labels & Attributes Ознаке & Атрибути - + Description Опис - + Internal name Унутрашње име - + Show items hidden in tree view Прикажи сакривене ставке у стаблу документа - + Show items that are marked as 'hidden' in the tree view Прикажи ставке које су у стаблу документа означене као 'сакривене' - + Toggle visibility in tree view Укључи/искључи видљивост у стаблу документа - + Toggles the visibility of selected items in the tree view Укључи/искључи видљивост изабраних ставки у стаблу документа - + Create group Направи групу - + Create a group Направи групу - - + + Rename Преименуј - + Rename object Преименуј објекат - + Finish editing Заврши уређивање - + Finish editing object Заврши уређивање објекта - + Add dependent objects to selection Додај зависне објекте избору - + Adds all dependent objects to the selection Додаје све зависне објекте избору - + Close document Затвори документ - + Close the document Затвори документ - + Reload document Учитај документ поново - + Reload a partially loaded document Учитај поново делимично учитан документ - + Skip recomputes Прескочи поновна прерачунавања - + Enable or disable recomputations of document Омогући или онемогући поновно прерачунавање документа - + Allow partial recomputes Дозволи делимична прерачунавања - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Enable or disable recomputating editing object when 'skip recomputation' is enabled - + Mark to recompute Означи за поновно израчунавање - + Mark this object to be recomputed Означи овај објекат за поновно израчунавање - + Recompute object Поновно прерачунај објекат - + Recompute the selected object Поновно прерачунај изабрани објекат - + (but must be executed) (али мора да се изврши) - + %1, Internal name: %2 %1, Унутрашње име: %2 @@ -7741,14 +7718,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Неисправан унос - - + + Input in line %1 is not a number Унос у реду %1 није број @@ -7756,47 +7733,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Стабло документа - + Tasks Задаци - + Property view Особине приказа - + Selection view Прегледач избора - + Task List Листа задатака - + Model Модел - + DAG View DAG View - + Report view Прегледач објава - + Python console Python конзола @@ -7836,45 +7813,69 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Непозната врста датотеке - - + + Cannot open unknown filetype: %1 Не могу отворити непознату врсту датотеке: %1 - + Export failed Извоз није успео - + Cannot save to unknown filetype: %1 Не могу сачувати непознату врсту датотеке: %1 - + + Recomputation required + Потребан је поновни прорачун + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Због миграције неки документи захтевају поновно израчунавање. Да би се избегли проблеми са компатибилношћу, пре било какве измене препоручљиво је поново обавити прорачун? + + + + Recompute error + Грешка при поновном израчунавању + + + + Failed to recompute some document(s). +Please check report view for more details. + Није успео поновни прорачун неких докумената. +За више детаља погледај Прегледач објава. + + + Workbench failure Отказивање радног окружења - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Овај систем користи OpenGL %1.%2. FreeCAD захтева OpenGL 2.0 или новији. Надоградите свој графички драјвер и/или картицу по потреби. - + Invalid OpenGL Version Погрешна OpenGL верзија @@ -7925,7 +7926,7 @@ Do you want to specify another directory? Извозим PDF... - + Unsaved document Несачуван документ @@ -7936,50 +7937,50 @@ Do you want to specify another directory? Извезени објекат садржи спољну везу. Сачувај документ бар једном пре него што га извезеш. - + Delete failed Брисање није успело - + Dependency error Грешка међузависности - + Copy selected Копирај изабрано - + Copy active document Копирај активни документ - + Copy all documents Копирај све документе - + Paste Налепи - + Expression error Грешка израза - + Failed to parse some of the expressions. Please check the Report View for more details. Рашчлањивање неких израза није успело. Погледај извештај за више детаља. - + Failed to paste expressions Налепљивање израза није успело @@ -8200,12 +8201,12 @@ Do you want to continue? Notifier: - Notifier: + Обавештавач: Do you want to skip confirmation of further critical message notifications while loading the file? - Do you want to skip confirmation of further critical message notifications while loading the file? + Да ли желиш да избегнеш потврђивање обавештења о критичним порукама приликом учитавања датотеке? @@ -8218,7 +8219,7 @@ Do you want to continue? Превише отворених ненаметљивих обавештења. Обавештења се изостављају! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8227,44 +8228,44 @@ Do you want to continue? - + Are you sure you want to continue? Да ли си сигуран да желиш да наставиш? - + Please check report view for more... Погледајте извештај за више... - + Physical path: Физичка путања: - - + + Document: Документ: - - + + Path: Путања: - + Identical physical path Идентична физичка путања - + Could not save document Није могуће сачувати документ - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8277,102 +8278,102 @@ Would you like to save the file with a different name? Да ли желите да сачувате датотеку под другим именом? - - - + + + Saving aborted Снимање обуcтављено - + Save dependent files Сачувај зависне датотеке - + The file contains external dependencies. Do you want to save the dependent files, too? Датотека садржи спољне зависности. Да ли желиш да сачуваш и зависне датотеке? - - + + Saving document failed Снимање документа није успело - + Save document under new filename... Cачувај документ под новим именом... - - + + Save %1 Document Сачувај %1 Документ - + Document Документ - - + + Failed to save document Није успело снимање документа - + Documents contains cyclic dependencies. Do you still want to save them? Документи садрже цикличне зависности. Да ли и даље желиш да их спасеш? - + Save a copy of the document under new filename... Сачувај копију документа под новим именом датотеке... - + %1 document (*.FCStd) %1 документ (*.FCStd) - + Document not closable Документ није могуће затворити - + The document is not closable for the moment. Тренутно није могуће затворити документ. - + Document not saved Документ није снимњен - + The document%1 could not be saved. Do you want to cancel closing it? Документ%1 није могао бити снимљен. Да ли желиш да откажеш затварање? - + Undo Поништи - + Redo Понови - + There are grouped transactions in the following documents with other preceding transactions There are grouped transactions in the following documents with other preceding transactions - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8445,12 +8446,12 @@ Choose 'Abort' to abort Опције... - + Out of memory Нема довољно меморије - + Not enough memory available to display the data. Нема довољно меморије за приказивање података. @@ -8466,7 +8467,7 @@ Choose 'Abort' to abort Не могу пронаћи датотеку %1 ни у %2 ни у %3 - + Navigation styles Навигациони стилови @@ -8482,32 +8483,32 @@ Choose 'Abort' to abort Да ли желите да затворите овај дијалог? - + Do you want to save your changes to document '%1' before closing? Да ли желиш да сачуваш промене у документу '%1' пре затварања? - + Do you want to save your changes to document before closing? Да ли желиш да снимиш промене у документу пре затварања? - + If you don't save, your changes will be lost. Ако не сачуваш, промене ће бити изгубљене. - + Apply answer to all Примени одговор на све - + %1 Document(s) not saved %1 Документ(и) нису снимљени - + Some documents could not be saved. Do you want to cancel closing? Неки документи нису могли бити снимљени. Да ли желиш да откажеш затварање? @@ -8644,20 +8645,20 @@ underscore, and must not start with a digit. Није успело додавање особине у '%1': %2 - - + + Drag & drop failed Превлачење и отпуштање није успело Setup configurable object - Setup configurable object + Поставке подесивог објекта Select which object to copy or exclude when configuration changes. All external linked objects are excluded by default. - Select which object to copy or exclude when configuration changes. All external linked objects are excluded by default. + Изабери који објекат желиш копирати или искључити када се конфигурација промени. Сви спољно повезани објекти су подразумевано искључени. @@ -8713,7 +8714,7 @@ Also auto redo the copy if the original linked object is changed. Refresh configurable object - Refresh configurable object + Освежи подесиви објекат @@ -8721,20 +8722,20 @@ Also auto redo the copy if the original linked object is changed. creating a new deep copy. Note that any changes made to the current copy will be lost. - Synchronize the original configurable source object by -creating a new deep copy. Note that any changes made to -the current copy will be lost. + Синхронизуј оригинални подесиви изворни објекат стварањем +нове копије. Води рачуна да ће све промене направљене на +тренутној копији бити изгубљене. Toggle array elements - Toggle array elements + Укључи/Искључи умножене елементе Change whether show each link array element as individual objects - Change whether show each link array element as individual objects + Да ли да се сваки умножени елемент приказује као појединачни објекат @@ -8897,7 +8898,7 @@ the current copy will be lost. Activate on hover - Activate on hover + Активирај приликом лебдења @@ -8941,12 +8942,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Није дозвољено: - + Selection not allowed by filter Филтер не дозвољава избор @@ -9034,13 +9035,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Поравнај... - - + + Align the selected objects Поравнај одабране објекте @@ -9324,17 +9325,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Укључи/искључи режим уређивања - + Toggles the selected object's edit mode Укључује/искључује режим уређивања изабраног објекта - + Activates or Deactivates the selected object's edit mode Активира или деактивира режим уређивања изабраног објекта @@ -9366,13 +9367,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Радње са изразима - - + + Actions that apply to expressions Радње које се примењују на изразе @@ -9615,7 +9616,7 @@ underscore, and must not start with a digit. A Link is an object that references or links to another object in the same document, or in another document. Unlike Clones, Links reference the original Shape directly, making them more memory-efficient, which helps with the creation of complex assemblies. - A Link is an object that references or links to another object in the same document, or in another document. Unlike Clones, Links reference the original Shape directly, making them more memory-efficient, which helps with the creation of complex assemblies. + Спона је врста објекта који прави везу ка другом објекту у истом или другом документу. За разлику од клонова, Споне директно праве везу ка оригиналном облику, због чега оне заузимају веома мало меморије па су погодне приликом прављења великих склопова. @@ -9833,7 +9834,7 @@ underscore, and must not start with a digit. Направи нови празан документ - + Unnamed Без имена @@ -9911,7 +9912,8 @@ underscore, and must not start with a digit. A Part is a general purpose container to keep together a group of objects so that they act as a unit in the 3D view. It is meant to arrange objects that have a Part TopoShape, like Part Primitives, PartDesign Bodies, and other Parts. - A Part is a general purpose container to keep together a group of objects so that they act as a unit in the 3D view. It is meant to arrange objects that have a Part TopoShape, like Part Primitives, PartDesign Bodies, and other Parts. + Део је контејнер опште намене који обједињује групу објеката да би се у 3Д погледу понашали као целина. +Намењен је да организује објекте који приказују нешто у 3Д погледу, као што су Примитиви, Тела и други објекти. @@ -9931,13 +9933,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Положај... - - + + Place the selected objects Постави изабране објекте @@ -10075,13 +10077,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Освежи - - + + Recomputes the current active document Поново израчунава тренутно активни документ @@ -10425,13 +10427,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Помери... - - + + Transform the geometry of selected objects Помери геометрију изабраних објеката @@ -10439,13 +10441,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Помери - - + + Transform the selected object in the 3d view Помери изабрани објекат у 3Д погледу @@ -10483,13 +10485,13 @@ underscore, and must not start with a digit. Select all instances - Select all instances + Изабери све инстанце Select all instances of the current selected object - Select all instances of the current selected object + Изабери све инстанце тренутно изабраног објекта @@ -10503,7 +10505,7 @@ underscore, and must not start with a digit. TreeView behavior options and actions - TreeView behavior options and actions + Понашање и радње Стабла документа @@ -10763,13 +10765,13 @@ underscore, and must not start with a digit. Stereo quad buffer - Stereo quad buffer + Стереоскопско четвороструко баферовање Switch stereo viewing to quad buffer - Switch stereo viewing to quad buffer + Пребаци стереоскопски приказ на четвороструко баферовање @@ -11103,7 +11105,7 @@ underscore, and must not start with a digit. Preselect the object in 3D view when hovering the cursor over the tree item - Направи преизбор објекта у 3Д погледу када миш пређе преко ставке у Стаблу документа + Направи преизбор објекта у 3Д погледу лебдењем миша изнад ставке у Стаблу документа @@ -11301,7 +11303,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11312,7 +11314,7 @@ Are you sure you want to continue? - + Object dependencies Међузависности објеката @@ -11424,7 +11426,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11493,7 +11495,7 @@ Do you still want to proceed? If enabled, show an eye icon before the tree view items, showing the items visibility status. When clicked the visibility is toggled - If enabled, show an eye icon before the tree view items, showing the items visibility status. When clicked the visibility is toggled + Ако је омогућено, испред сваке ставке у Стаблу документа ће се налазити икона ока која демонстрира статус видљивости. Када се кликне на њу, видљивост се мења @@ -11536,7 +11538,7 @@ Do you still want to proceed? Individual views - Individual views + Појединачни погледи @@ -11829,8 +11831,8 @@ after FreeCAD launches <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> Currently, your system has the following workbenches:</p></body></html> - <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> -Currently, your system has the following workbenches:</p></body></html> + <html><head/><body><p>Редослед радних окружења се може променити техником превлачења или десним кликом на окружење и избором <span style=" font-weight:600; font-style:italic;">Сортирај по абецеди</span>. Додатна радна окружења се могу инсталирати помоћу Менаџера додатака.</p><p> +Тренутно твој систем има следец́а радна окружења:</p></body></html> @@ -12192,8 +12194,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Догодила се грешка - За више информација погледај Прегледач објава @@ -12534,7 +12536,7 @@ this according to your screen size or personal taste Tree view and Property view mode: - Tree view and Property view mode: + Режим рада Стабла документа и Уредника својстава: @@ -12542,10 +12544,10 @@ this according to your screen size or personal taste 'Combined': combine Tree view and Property view into one panel. 'Independent': split Tree view and Property view into separate panels. - Customize how tree view is shown in the panel (restart required). + Прилагођавање како ће се Стабло документа приказивати у Комбинованом панелу (потребно је поновно покретање). -'Combined': combine Tree view and Property view into one panel. -'Independent': split Tree view and Property view into separate panels. +'Комбиновано': комбинује Стабло документа, Панел задатака и Уредник својстава у један панел +'Независно': комбиновани панел се дели на више панела. @@ -12596,12 +12598,12 @@ display the splash screen Activate overlay handling of dock windows - Activate overlay handling of dock windows + Обичан/прекривајући режим за све усидрене прозоре Activate overlay handling - Activate overlay handling + Омогући прекривајући режим @@ -12676,12 +12678,12 @@ display the splash screen Combined - Combined + Комбиновано Independent - Independent + Независно @@ -12919,12 +12921,12 @@ from Python console to Report view panel Selection back - Selection back + Избор назад Restore the previous Tree view selection. Only works if Tree RecordSelection mode is switched on. - Restore the previous Tree view selection. Only works if Tree RecordSelection mode is switched on. + Реконструише претходни избор у Стаблу документа. Ради само ако је укључен режим Tree RecordSelection. @@ -12932,12 +12934,12 @@ from Python console to Report view panel Selection forward - Selection forward + Избор напред Restore the next Tree view selection. Only works if Tree RecordSelection mode is switched on. - Restore the next Tree view selection. Only works if Tree RecordSelection mode is switched on. + Реконструише следећи избор у Стаблу документа. Ради само ако је укључен режим Tree RecordSelection. @@ -12948,65 +12950,40 @@ from Python console to Report view panel Извори светлости - + + Push In + Повећај + + + + Pull Out + Смањи + + + Light sources Извори светлости - + Light source Извори светлост - + Intensity Интензитет - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Подеси оријентацију извора светлости тако што ћеш вући стрелицу мишем или користи вредности q0, q1, q2 и q3 за фино подешавање. - + Direction Правац - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>з</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13414,14 +13391,14 @@ the region are non-opaque. StdCmdProperties - + Properties Особине - + Show the property view, which displays the properties of the selected object. - Show the property view, which displays the properties of the selected object. + Прикажи панел Особине приказа, у коме се приказују особине изабраног објекта. @@ -13448,7 +13425,7 @@ the region are non-opaque. Change to a standard view - Change to a standard view + Промени на неки стандардни поглед @@ -13537,12 +13514,12 @@ the region are non-opaque. UI - UI + UI Theme customization - Theme customization + Прилагођавање теме @@ -13554,7 +13531,7 @@ the region are non-opaque. This color might be used by your theme to let you customize it. - This color might be used by your theme to let you customize it. + Ову боју може користити ваша тема. @@ -13579,7 +13556,7 @@ the region are non-opaque. Style sheet how user interface will look like - Style sheet how user interface will look like + Стилски лист изгледа корисничког интерфејса @@ -13599,12 +13576,12 @@ the region are non-opaque. Icon size override, set to 0 for the default value. - Icon size override, set to 0 for the default value. + Подеси величину иконе, 0 је подразумевана вредност. Additional row spacing - Additional row spacing + Додатни размак редова @@ -13619,12 +13596,12 @@ the region are non-opaque. Icon size - Icon size + Величина иконе Additional spacing for tree view rows. Bigger values will increase row item heights. - Additional spacing for tree view rows. Bigger values will increase row item heights. + Додатни размак између редова у Стаблу документа. @@ -13639,17 +13616,17 @@ the region are non-opaque. Show visibility icon - Show visibility icon + Икона статуса видљивости Hide header with column names from the tree view. - Hide header with column names from the tree view. + Сакриј у Стаблу документа заглавље са именима колона. Hide header - Hide header + Сакриј заглавље @@ -13664,12 +13641,12 @@ the region are non-opaque. Hide column with object description in tree view. - Hide column with object description in tree view. + Сакриј у Стаблу документа колону са описима објеката. Hide description - Hide description + Сакриј описе diff --git a/src/Gui/Language/FreeCAD_sv-SE.ts b/src/Gui/Language/FreeCAD_sv-SE.ts index 0c2de05446..50c90ea694 100644 --- a/src/Gui/Language/FreeCAD_sv-SE.ts +++ b/src/Gui/Language/FreeCAD_sv-SE.ts @@ -91,17 +91,17 @@ Redigera - + Import Importera - + Delete Radera - + Paste expressions Klistra in uttryck @@ -156,8 +156,7 @@ Justera - - + Placement Placering @@ -425,42 +424,42 @@ EditMode - + Default Standard - + The object will be edited using the mode defined internally to be the most appropriate for the object type The object will be edited using the mode defined internally to be the most appropriate for the object type - + Transform Omvandla - + The object will have its placement editable with the Std TransformManip command The object will have its placement editable with the Std TransformManip command - + Cutting Skär - + This edit mode is implemented as available but currently does not seem to be used by any object This edit mode is implemented as available but currently does not seem to be used by any object - + Color Färg - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3908,7 +3907,7 @@ Du kan också använda formuläret: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navigering @@ -3968,99 +3967,99 @@ Du kan också använda formuläret: John Doe <john@doe.com> Rotera till närmaste - + Font name of the navigation cube Font name of the navigation cube - + Default Standard - + Cube size Kubstorlek - + Size of the navigation cube Storlek på navigationskuben - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Färg - + Base color for all elements Base color for all elements - + Rotation center indicator Rotation center indicator - + Sphere size Sphere size - + Color and transparency Color and transparency - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation 3D Navigering - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Lista musknappskonfigurationer för varje vald navigeringsinställning. Välj en uppsättning och tryck sedan på knappen för att visa nämnda konfigurationer. - + Mouse... Mus... - + Navigation settings set Navigeringsinställningar inställda - + Orbit style Orbit stil - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4071,104 +4070,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable Skivtallrik - + Trackball Trackball - + Free Turntable Free Turntable - + Rotation mode Rotationsläge - + Rotations in 3D will use current cursor position as center for rotation Rotationer i 3D kommer att använda aktuell markörposition som centrum för rotation - + Window center Fönster mitt - + Drag at cursor Drag vid muspekaren - + Object center Objekt centrum - + Default camera orientation Standard kamerainriktning - + Default camera orientation when creating a new document or selecting the home view Standard kamerainriktning när du skapar ett nytt dokument eller väljer hemvyn - + Camera zoom Camera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Ställer in kamerans zoom för nya dokument. Värdet är sfärens diameter som passar på skärmen. - + mm mm - + Animations Animationer - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animation duration - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoomsteg @@ -4178,41 +4177,41 @@ Värdet är sfärens diameter som passar på skärmen. Typsnittsnamn - + Zoom operations will be performed at position of mouse pointer Zoomoperationer kommer att utföras vid muspekarens position - + Zoom at cursor Zooma vid markören - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Hur mycket kommer att zoomas. Zoomsteg '1' betyder en faktor på 7,5 för varje zoomsteg. - + Direction of zoom operations will be inverted Zoomoperationernas riktning kommer att inverteras - + Invert zoom Invertera zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. Förhindrar lutning av vy vid två-fingers-zoomning. Påverkar endast gestnavigeringsstil, vylutning med musen avaktiveras inte av denna inställning. - + Disable touchscreen tilt gesture Avaktivera lutning med gester på pekskärm @@ -4682,7 +4681,7 @@ Inställningssystemet är det som anges i de allmänna inställningarna. Gui::Dialog::DockablePlacement - + Placement Placering @@ -5266,32 +5265,17 @@ The 'Status' column shows whether the document could be recovered. Återställ - - OK - OK - - - - Close - Stäng - - - - Apply - Verkställ - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Vänligen välj en, två eller tre punkter och tryck sedan på denna knapp. En punkt kan antingen vara en hörnpunkt eller ligga på en kant eller yta. Om en kant eller yta väljs, kommer punkten ligga vid musens position på kanten eller ytan. Om en punkt är vald kommer den vara rotationscentrum. Om två punkter är valda kommer mittpunkten mellan dom att vara rotationscentrum, och en ny axel kommer skapas vid behov. Om tre punkter är valda kommer den första punkten att vara rotationscentrum och ligga på normalvektorn mot det plan som definieras av dom tre valda punkterna. Viss distans- och vinkelinformation är tillgänglig i rapport-vyn, vilket kan vara användbart när objekt ska justeras. För enkelhetens skull så kopieras lämplig distans och vinkel vid skift + klick. - + Incorrect quantity Felaktigt antal - + There are input fields with incorrect input, please ensure valid placement values! Det finns inmatningsfält med felaktiga värden, vänligen ange giltiga värden! @@ -5430,13 +5414,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Avbryt - - - - + Transform Omvandla @@ -5827,13 +5805,13 @@ Vill du spara ändringarna? Gui::FileChooser - - + + Select a file Välj en fil - + Select a directory Välj en katalog @@ -5841,13 +5819,13 @@ Vill du spara ändringarna? Gui::FileDialog - + Save as Spara som - - + + Open Öppna @@ -5855,12 +5833,12 @@ Vill du spara ändringarna? Gui::FileOptionsDialog - + Extended Utökad - + All files (*.*) Alla filer (*.*) @@ -6037,7 +6015,7 @@ Vill du spara ändringarna? Gui::LabelEditor - + List Lista @@ -6154,57 +6132,57 @@ Vill du spara ändringarna? Gui::MainWindow - + Dimension Dimension - + Ready Klar - + Close All Stäng alla - - - + + + Toggles this toolbar Växlar denna verktygsrad - - - + + + Toggles this dockable window Växlar detta dockningsbara fönster - + WARNING: This is a development version. VARNING: Detta är en utvecklingsversion. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document Osparat dokument - + The exported object contains external link. Please save the documentat least once before exporting. Det exporterade objektet innehåller extern länk. Spara dokumentet minst en gång innan du exporterar. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? För att länka till externa objekt måste dokumentet sparas minst en gång. @@ -6794,12 +6772,12 @@ Vill du avsluta utan att spara din data? Gui::SelectModule - + Select module Välj modul - + Open %1 as Öppna %1 som @@ -7335,7 +7313,7 @@ Vill du ange en annan katalog? Gui::TreeDockWidget - + Tree view Trädvy @@ -7343,7 +7321,7 @@ Vill du ange en annan katalog? Gui::TreePanel - + Search Sök @@ -7401,148 +7379,148 @@ Vill du ange en annan katalog? Grupp - + Labels & Attributes Etiketter & attribut - + Description Beskrivning - + Internal name Internt namn - + Show items hidden in tree view Visa objekt dolda i trädvyn - + Show items that are marked as 'hidden' in the tree view Visa objekt som är markerade som 'dolda' i trädvyn - + Toggle visibility in tree view Växla synlighet i trädvyn - + Toggles the visibility of selected items in the tree view Växlar synligheten för markerade objekt i trädvyn - + Create group Skapa grupp - + Create a group Skapa en grupp - - + + Rename Döp om - + Rename object Döp om objekt - + Finish editing Slutför redigering - + Finish editing object Slutför redigering av objekt - + Add dependent objects to selection Add dependent objects to selection - + Adds all dependent objects to the selection Adds all dependent objects to the selection - + Close document Stäng dokument - + Close the document Stäng dokumentet - + Reload document Ladda om dokument - + Reload a partially loaded document Ladda om ett delvis laddat dokument - + Skip recomputes Utför inte omberäkningar - + Enable or disable recomputations of document Aktivera eller inaktivera omberäkningar av dokument - + Allow partial recomputes Tillåt partiell omberäkning - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Aktivera eller inaktivera omberäkning av redigeringsobjekt när 'hoppa över omberäkning' är aktiverat - + Mark to recompute Markera för att omberäkna - + Mark this object to be recomputed Markera detta objekt för att bli omberäknat - + Recompute object Omräkna objekt - + Recompute the selected object Beräkna om det markerade objektet - + (but must be executed) (men måste verkställas) - + %1, Internal name: %2 %1, Internt namn: %2 @@ -7739,14 +7717,14 @@ Vill du ange en annan katalog? PropertyListDialog - - + + Invalid input Ogiltig inmatning - - + + Input in line %1 is not a number Inmatning på rad %1 är inte ett nummer @@ -7754,47 +7732,47 @@ Vill du ange en annan katalog? QDockWidget - + Tree view Trädvy - + Tasks Uppgifter - + Property view Egenskapsvy - + Selection view Markeringsvy - + Task List Task List - + Model Modell - + DAG View DAG-vy - + Report view Rapportvy - + Python console Python konsoll @@ -7834,45 +7812,71 @@ Vill du ange en annan katalog? Python - - - + + + Unknown filetype Okänd filtyp - - + + Cannot open unknown filetype: %1 Kan inte öppna okänd filtyp: %1 - + Export failed Exportering misslyckades - + Cannot save to unknown filetype: %1 Kan inte spara till okänd filtyp: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Fel på arbetsbänk - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7923,7 +7927,7 @@ Vill du ange en annan katalog? Exporterar PDF ... - + Unsaved document Osparat dokument @@ -7934,50 +7938,50 @@ Vill du ange en annan katalog? Det exporterade objektet innehåller extern länk. Spara dokumentet minst en gång innan du exporterar. - + Delete failed Borttagning misslyckades - + Dependency error Beroendefel - + Copy selected Kopiera markerade - + Copy active document Kopiera aktivt dokument - + Copy all documents Kopiera alla dokument - + Paste Klistra in - + Expression error Fel på uttryck - + Failed to parse some of the expressions. Please check the Report View for more details. Det gick inte att tolka några av uttrycken. Vänligen kontrollera rapportvyn för mer information. - + Failed to paste expressions Misslyckas att klistra in uttryck @@ -8216,7 +8220,7 @@ vill du fortsätta? För många öppnade icke-störande meddelanden. Meddelanden utelämnas! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8225,44 +8229,44 @@ vill du fortsätta? - + Are you sure you want to continue? Är du säker på att du vill fortsätta? - + Please check report view for more... Please check report view for more... - + Physical path: Physical path: - - + + Document: Dokument: - - + + Path: Sökväg: - + Identical physical path Identisk fysisk sökväg - + Could not save document Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8275,102 +8279,102 @@ Would you like to save the file with a different name? Would you like to save the file with a different name? - - - + + + Saving aborted Sparning avbruten - + Save dependent files Spara beroende filer - + The file contains external dependencies. Do you want to save the dependent files, too? Filen innehåller externa beroenden. Vill du spara de beroende filerna också? - - + + Saving document failed Sparning av dokument misslyckades - + Save document under new filename... Spara dokumentet med ett nytt filnamn... - - + + Save %1 Document Spara %1 dokument - + Document Dokument - - + + Failed to save document Det gick inte att spara dokumentet - + Documents contains cyclic dependencies. Do you still want to save them? Dokument innehåller cykliska beroenden. Vill du fortfarande spara dem? - + Save a copy of the document under new filename... Spara en kopia av dokumentet med nytt filnamn... - + %1 document (*.FCStd) %1 dokument (*.FCStd) - + Document not closable Dokumentet kan ej stängas - + The document is not closable for the moment. Dokumentet kan inte stängas för tillfället. - + Document not saved Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? The document%1 could not be saved. Do you want to cancel closing it? - + Undo Ångra - + Redo Gör om - + There are grouped transactions in the following documents with other preceding transactions Det finns grupperade transaktioner i följande dokument med andra föregående transaktioner - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8443,12 +8447,12 @@ Välj "Avbryt" för att avbryta Alternativ... - + Out of memory Slut på minne - + Not enough memory available to display the data. Det finns inte tillräckligt med minne för att visa datan. @@ -8464,7 +8468,7 @@ Välj "Avbryt" för att avbryta Kan inte finna fil %1, varken i %2 eller i %3 - + Navigation styles Navigationsstilar @@ -8480,32 +8484,32 @@ Välj "Avbryt" för att avbryta Vill du stänga denna dialogruta? - + Do you want to save your changes to document '%1' before closing? Vill du spara dina ändringar i dokument "%1" innan du stänger? - + Do you want to save your changes to document before closing? Vill du spara dina ändringar i dokument innan du stänger? - + If you don't save, your changes will be lost. Om du inte sparar går dina ändringar förlorade. - + Apply answer to all Tillämpa svar på alla - + %1 Document(s) not saved %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? Some documents could not be saved. Do you want to cancel closing? @@ -8642,8 +8646,8 @@ understrykningstecken och får inte börja med en siffra. Det gick inte att lägga till egenskapen till '%1': %2 - - + + Drag & drop failed Dra och släpp misslyckades @@ -8940,12 +8944,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Inte tillåtet: - + Selection not allowed by filter Markering inte tillåten av filter @@ -9033,13 +9037,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Justering... - - + + Align the selected objects Justera de markerade objekten @@ -9323,17 +9327,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Växla R&edigera läge - + Toggles the selected object's edit mode Växlar det markerade objektets redigeringsläge - + Activates or Deactivates the selected object's edit mode Går in i eller lämnar det markerade objektets redigeringsläge @@ -9365,13 +9369,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Åtgärder för uttryck - - + + Actions that apply to expressions Actions that apply to expressions @@ -9832,7 +9836,7 @@ underscore, and must not start with a digit. Skapa ett nytt tomt dokument - + Unnamed Namnlös @@ -9930,13 +9934,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Placering... - - + + Place the selected objects Placera de markerade objekten @@ -10074,13 +10078,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Uppdatera - - + + Recomputes the current active document Beräknar om det aktiva dokumentet @@ -10424,13 +10428,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Omvandla... - - + + Transform the geometry of selected objects Omvandla geometrin för markerade objekt @@ -10438,13 +10442,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Omvandla - - + + Transform the selected object in the 3d view Omvandla det markerade objektet i 3d-vyn @@ -11300,7 +11304,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11309,7 +11313,7 @@ Are you sure you want to continue? - + Object dependencies Objektberoenden @@ -11421,7 +11425,7 @@ Vill du spara dokumentet nu? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12189,8 +12193,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12949,65 +12953,40 @@ från Python-konsolen till Rapportvy panelen Ljuskällor - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Ljuskällor - + Light source Ljuskälla - + Intensity Intensitet - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Riktning - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - Y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13415,12 +13394,12 @@ the region are non-opaque. StdCmdProperties - + Properties Egenskaper - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_tr.ts b/src/Gui/Language/FreeCAD_tr.ts index ce0f631464..2a93c9eb7c 100644 --- a/src/Gui/Language/FreeCAD_tr.ts +++ b/src/Gui/Language/FreeCAD_tr.ts @@ -91,17 +91,17 @@ Düzenle - + Import İçe aktar - + Delete Sil - + Paste expressions Formülleri yapıştır @@ -156,8 +156,7 @@ Hizala - - + Placement Yerleşim @@ -425,42 +424,42 @@ EditMode - + Default Varsayılan - + The object will be edited using the mode defined internally to be the most appropriate for the object type The object will be edited using the mode defined internally to be the most appropriate for the object type - + Transform Dönüştür - + The object will have its placement editable with the Std TransformManip command The object will have its placement editable with the Std TransformManip command - + Cutting Kesme - + This edit mode is implemented as available but currently does not seem to be used by any object This edit mode is implemented as available but currently does not seem to be used by any object - + Color Renk - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3907,7 +3906,7 @@ Ayrıca formu da kullanabilirsiniz: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Gezinme @@ -3967,99 +3966,99 @@ Ayrıca formu da kullanabilirsiniz: John Doe <john@doe.com> En yakına döndür - + Font name of the navigation cube Font name of the navigation cube - + Default Varsayılan - + Cube size Küp boyutu - + Size of the navigation cube Gezinme küpü boyutu - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Renk - + Base color for all elements Base color for all elements - + Rotation center indicator Rotation center indicator - + Sphere size Sphere size - + Color and transparency Color and transparency - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation 3D Gezinme - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Seçilen her gezinti ayarı için fare düğmesi yapılandırmalarını listele. Bahsedilen yapılandırmaları görmek için bir ayar seçin ve sonra düğmeye basın. - + Mouse... Fare... - + Navigation settings set Gezinti ayarları ayarı - + Orbit style Yörünge stili - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4070,104 +4069,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable Döner tabla - + Trackball Trackball - + Free Turntable Free Turntable - + Rotation mode Döndürme modu - + Rotations in 3D will use current cursor position as center for rotation 3B' daki dönüşler, dönüş merkezi olarak geçerli imleç konumunu kullanacak - + Window center Pencere merkezi - + Drag at cursor İmleç ile sürükle - + Object center Nesne merkezi - + Default camera orientation Varsayılan kamera yönü - + Default camera orientation when creating a new document or selecting the home view Yeni bir belge oluştururken veya ev görünümünü seçerkenki varsayılan kamera yönlendirmesi - + Camera zoom Kamera yakınlaştırma - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Yeni belgeler için kamera yakınlaştırılmasını ayarlar. Değeri, ekrana sığdırılacak kürenin çapıdır. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animation duration - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoom step @@ -4177,34 +4176,34 @@ Değeri, ekrana sığdırılacak kürenin çapıdır. Yazı tipi ismi - + Zoom operations will be performed at position of mouse pointer Yakınlaştırma işlemleri, fare işaretçisi konumunda yapılacak - + Zoom at cursor İmlece yaklaş - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Yakınlaştırma miktarı. 1 yakınlaştırma adımı, adım başına 7.5 katsayı anlamına gelir. - + Direction of zoom operations will be inverted Yakınlaştırma işlemlerinin yönü ters çevrilecek - + Invert zoom Zoomu tersine çevir - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4213,7 +4212,7 @@ Yalnızca hareketle gezinme stilini etkiler. Bu ayarla fareyi eğme devre dışı bırakılmaz. - + Disable touchscreen tilt gesture DokunmatikEkran eğim hareketini devre dışı bırak @@ -4683,7 +4682,7 @@ Tercih edilen sistem, genel tercihlerdeki tek ayardır. Gui::Dialog::DockablePlacement - + Placement Yerleşim @@ -5269,32 +5268,17 @@ The 'Status' column shows whether the document could be recovered. Sıfırla - - OK - Tamam - - - - Close - Kapat - - - - Apply - Uygula - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Bu tuşa basmadan önce lütfen 1, 2 veya 3 nokta seçin. Bir nokta, yüzey veya kenarda bir nokta olabilir. Bir yüzey veya kenarda kullanılan nokta, yüzey veya kenar boyunca fare konumunda bulunan nokta olacaktır. 1 nokta seçilirse, dönüş merkezi olarak kullanılacaktır. 2 nokta seçilirse, aralarındaki orta nokta, dönme merkezi olacak ve gerekirse yeni bir özel eksen oluşturulacaktır. 3 nokta seçilirse, ilk nokta dönme merkezi olur ve 3 nokta tarafından tanımlanan düzlemde normal olan vektör üzerinde bulunur. Nesneleri hizalarken faydalı olabilecek, rapor görünümünde bazı mesafe ve açı bilgileri sağlanır. Shift + tıklama kullanıldığında kolaylık için uygun mesafe veya açı panoya kopyalanır. - + Incorrect quantity Hatalı miktar - + There are input fields with incorrect input, please ensure valid placement values! Yanlış girişi olan girdi alanları var, lütfen geçerli yerleşim değerlerini sağlayın! @@ -5433,13 +5417,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - İptal - - - - + Transform Dönüştür @@ -5829,13 +5807,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Bir dosya seçin - + Select a directory Dizin Seç @@ -5843,13 +5821,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Farklı Kaydet - - + + Open @@ -5857,12 +5835,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Genişletilmiş - + All files (*.*) Tüm dosyalar (*. *) @@ -6039,7 +6017,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Liste @@ -6156,57 +6134,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Boyut - + Ready Hazır - + Close All Tümünü Kapat - - - + + + Toggles this toolbar Bu araç çubuğunu değiştirir - - - + + + Toggles this dockable window Bu yapışabilir pencere arasında geçiş yapar - + WARNING: This is a development version. WARNING: This is a development version. - + Please do not use it in a production environment. Lütfen, gerçek üretim işleminde kullanmayınız. - - + + Unsaved document Kaydedilmemiş belge - + The exported object contains external link. Please save the documentat least once before exporting. Dışa aktarılan nesne dış bağlantı içeriyor. Lüften dışa aktarmadan önce belgeyi en az bir defa kaydedin. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Harici nesneleri bağlamak için belge, en az bir defa kaydedilmelidir. Belgeyi şimdi kaydetmek istiyor musunuz? @@ -6795,12 +6773,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Modül seçin - + Open %1 as %1 Olarak açın @@ -7336,7 +7314,7 @@ Başka bir dizin belirlemek ister misiniz? Gui::TreeDockWidget - + Tree view Unsur Ağacı @@ -7344,7 +7322,7 @@ Başka bir dizin belirlemek ister misiniz? Gui::TreePanel - + Search Ara @@ -7402,148 +7380,148 @@ Başka bir dizin belirlemek ister misiniz? Grup - + Labels & Attributes Etiketler & öznitelikleri - + Description Açıklama - + Internal name Internal name - + Show items hidden in tree view Ağaç görünümünde gizlenen öğeleri göster - + Show items that are marked as 'hidden' in the tree view Ağaç görünümünde 'gizli' olarak işaretlenen öğeleri göster - + Toggle visibility in tree view Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view Toggles the visibility of selected items in the tree view - + Create group Grup oluştur - + Create a group Bir Grup oluşturma - - + + Rename Yeniden Adlandır - + Rename object Nesneyi yeniden adlandır - + Finish editing Düzenlemeyi tamamla - + Finish editing object Nesneyi düzenlemeyi tamamla - + Add dependent objects to selection Seçilecek bağıntılı nesneler ekle - + Adds all dependent objects to the selection Seçilecek tüm bağıntılı nesneleri ekler - + Close document Belgeyi kapat - + Close the document Belgeyi kapat - + Reload document Belgeyi tekrar yükle - + Reload a partially loaded document Kısmi yüklenen belgeyi tekrar yükle - + Skip recomputes Yeniden hesaplamayı atla - + Enable or disable recomputations of document Dokümanın yeniden hesaplanmasını etkinleştirir veya devre dışı bırakır - + Allow partial recomputes Kısmi yeniden hesaplamalara izin ver - + Enable or disable recomputating editing object when 'skip recomputation' is enabled 'Tekrar hesaplamayı atla' etkin ise tekrar hesaplama düzenleme nesnesini etkinleştir veya geçersizleştir - + Mark to recompute Yeniden hesaplamak için işaretle - + Mark this object to be recomputed Bu nesneyi yeniden hesaplanacak şekilde işaretleyin - + Recompute object Nesneyi yeniden hesapla - + Recompute the selected object Seçili Nesneyi yeniden hesapla - + (but must be executed) (ama çalıştırılmalı) - + %1, Internal name: %2 %1, Dahili adı: %2 @@ -7740,14 +7718,14 @@ Başka bir dizin belirlemek ister misiniz? PropertyListDialog - - + + Invalid input Geçersiz giriş - - + + Input in line %1 is not a number Giriş hattı %1 içinde bir sayı değil @@ -7755,47 +7733,47 @@ Başka bir dizin belirlemek ister misiniz? QDockWidget - + Tree view Unsur Ağacı - + Tasks Görevler - + Property view Özellik görünümü - + Selection view Seçim görünümü - + Task List Task List - + Model Model - + DAG View DAG görünümü - + Report view Rapor Görünümü - + Python console Python konsolu @@ -7835,45 +7813,71 @@ Başka bir dizin belirlemek ister misiniz? Python - - - + + + Unknown filetype Bilinmeyen dosya türü - - + + Cannot open unknown filetype: %1 Bilinmeyen dosya türünü açamıyor: %1 - + Export failed Dışa aktarım başarısız oldu - + Cannot save to unknown filetype: %1 Bilinmeyen dosya türü kaydedilemiyor: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Tezgah hatası - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7924,7 +7928,7 @@ Başka bir dizin belirlemek ister misiniz? PDF dışa aktarılıyor... - + Unsaved document Kaydedilmemiş belge @@ -7935,50 +7939,50 @@ Başka bir dizin belirlemek ister misiniz? Dışa aktarılan nesne dış bağlantı içeriyor. Lüften dışa aktarmadan önce belgeyi en az bir defa kaydedin. - + Delete failed Silme başarısız - + Dependency error Bağımlılık hatası - + Copy selected Seçileni kopyala - + Copy active document Etkin belgeyi kopyala - + Copy all documents Tüm belgeleri kopyala - + Paste Yapıştır - + Expression error İfade hatası - + Failed to parse some of the expressions. Please check the Report View for more details. Bazı ifadelerin ayrıştırılması başarısız. Daha fazla ayrıntı için lütfen Rapor Görünümünü kontrol edin. - + Failed to paste expressions İfadeleri yapıştırma başarısız @@ -8216,7 +8220,7 @@ Do you want to continue? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8225,44 +8229,44 @@ Do you want to continue? - + Are you sure you want to continue? Devam etmek istediğinizden emin misiniz? - + Please check report view for more... Please check report view for more... - + Physical path: Fiziksel yol: - - + + Document: Belge: - - + + Path: Yol: - + Identical physical path Özdeş fiziksel yol - + Could not save document Belge kaydedilemedi - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8275,102 +8279,102 @@ Would you like to save the file with a different name? Dosyayı farklı bir adla kaydetmek ister misiniz? - - - + + + Saving aborted Kaydetme iptal edildi - + Save dependent files Bağımlı dosyaları kaydet - + The file contains external dependencies. Do you want to save the dependent files, too? Dosya dış bağımlılıklar içeriyor. Bağımlı dosyaları da kaydetmek istiyor musunuz? - - + + Saving document failed Belge kaydetme başarısız oldu - + Save document under new filename... Belgeyi yeni bir dosya adı altında kaydedin... - - + + Save %1 Document %1 Belgeyi Kaydet - + Document Döküman - - + + Failed to save document Belgeyi kaydetme başarısız - + Documents contains cyclic dependencies. Do you still want to save them? Belgeler döngüsel bağımlılıklar içeriyor. Yine de bunları kaydetmek istiyor musunuz? - + Save a copy of the document under new filename... Dokümanın bir kopyasını yeni dosya adı altında kaydedin... - + %1 document (*.FCStd) %1 belgesi (*. FCStd) - + Document not closable Belge kapatılamıyor - + The document is not closable for the moment. Belge şu an için kapatılamıyor. - + Document not saved Belge kaydedilmedi - + The document%1 could not be saved. Do you want to cancel closing it? %1 belgesi kaydedilemedi. Kapatmayı iptal etmek istiyor musunuz? - + Undo Geri al - + Redo Yinele - + There are grouped transactions in the following documents with other preceding transactions Aşağıdaki belgelerde, diğer önceki işlemlerle gruplanmış işlemler var - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8443,12 +8447,12 @@ Vazgeçmek için 'Vazgeç' i seçin Seçenekler... - + Out of memory Yetersiz bellek - + Not enough memory available to display the data. Verileri görüntülemek için yetersiz bellek. @@ -8464,7 +8468,7 @@ Vazgeçmek için 'Vazgeç' i seçin %1 Dosyası %2 veya %3 içinde bulunamıyor - + Navigation styles Gezinme şekilleri @@ -8480,32 +8484,32 @@ Vazgeçmek için 'Vazgeç' i seçin Bu pencereyi kapatmak ister misiniz? - + Do you want to save your changes to document '%1' before closing? Kapatmadan önce değişiklikleri kaydetmek istiyor musunuz? - + Do you want to save your changes to document before closing? Kapatmadan önce değişikliklerinizi belgeye kaydetmek istiyor musunuz? - + If you don't save, your changes will be lost. Kaydetmezseniz, yaptığınız değişiklikler kaybolacak. - + Apply answer to all Cevabı tümüne uygula - + %1 Document(s) not saved %1 belge kaydedilmedi - + Some documents could not be saved. Do you want to cancel closing? Bazı belgeler kaydedilemedi. Kapatmaktan vazgeçmek ister misiniz? @@ -8642,8 +8646,8 @@ bir rakam ile başlamamalıdır. '%1' e özellik ekleme başarısız: %2 - - + + Drag & drop failed Sürükle ve bırak başarısız @@ -8940,12 +8944,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: İzin verilmiyor: - + Selection not allowed by filter Seçime filtre tarafından izin verilmiyor @@ -9033,13 +9037,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Hizalama... - - + + Align the selected objects Seçili nesneleri hizala @@ -9323,17 +9327,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode &Düzenleme moduna geç - + Toggles the selected object's edit mode Seçilen nesnenin düzenleme moduna geçiş yapar - + Activates or Deactivates the selected object's edit mode Seçilen nesnenin düzenleme modunu etkinleştirir veya devre dışı bırakır @@ -9365,13 +9369,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions İfade eylemleri - - + + Actions that apply to expressions Actions that apply to expressions @@ -9832,7 +9836,7 @@ underscore, and must not start with a digit. Yeni, boş bir belge oluştur - + Unnamed İsimsiz @@ -9930,13 +9934,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Yerleşim... - - + + Place the selected objects Seçili nesneleri yerleştirin @@ -10074,13 +10078,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh & Yenile - - + + Recomputes the current active document Geçerli etkin belgeyi yeniden hesaplar @@ -10424,13 +10428,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Dönüştür... - - + + Transform the geometry of selected objects Seçili nesnelerin geometrisini dönüştür @@ -10438,13 +10442,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Dönüştür - - + + Transform the selected object in the 3d view Seçili nesneyi 3d görünümde dönüştürme @@ -11300,7 +11304,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11311,7 +11315,7 @@ Devam etmek istediğinize emin misiniz? - + Object dependencies Nesne bağımlılıkları @@ -11422,7 +11426,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12190,8 +12194,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12946,65 +12950,40 @@ Rapor görünümü panosuna yönlendirilecek Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity Yoğunluk - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Yön - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13412,12 +13391,12 @@ the region are non-opaque. StdCmdProperties - + Properties Özellikleri - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_uk.ts b/src/Gui/Language/FreeCAD_uk.ts index 3285d1908e..ff58a8b945 100644 --- a/src/Gui/Language/FreeCAD_uk.ts +++ b/src/Gui/Language/FreeCAD_uk.ts @@ -91,17 +91,17 @@ Правка - + Import Імпортувати - + Delete Видалити - + Paste expressions Вставити вирази @@ -156,8 +156,7 @@ Вирівняти - - + Placement Розташувати @@ -425,42 +424,42 @@ EditMode - + Default За замовчуванням - + The object will be edited using the mode defined internally to be the most appropriate for the object type Об'єкт буде відредаговано з використанням внутрішньо визначеним режимом який найбільш відповідає типу об'єкта - + Transform Перетворити - + The object will have its placement editable with the Std TransformManip command Розміщення об'єкта можна буде редагувати за допомогою команди Std TransformManip - + Cutting Переріз - + This edit mode is implemented as available but currently does not seem to be used by any object Цей режим редагування реалізовано як доступний, але наразі він не використовується жодним об'єктом - + Color Колір - + The object will have the color of its individual faces editable with the Part FaceAppearances command Об'єкт матиме колір окремих граней, які можна редагувати за допомогою команди Part FaceAppearances @@ -1997,7 +1996,7 @@ Perhaps a file permission error? % - % + % @@ -3903,7 +3902,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Навігація @@ -3963,99 +3962,99 @@ You can also use the form: John Doe <john@doe.com> Повертати до найближчого - + Font name of the navigation cube Шрифт навігаційного куба - + Default За замовчуванням - + Cube size Розмір куба - + Size of the navigation cube Визначає розмір навігаційного куба - + Opacity when inactive Непрозорість у неактивному стані - + Opacity of the navigation cube when not focused Непрозорість навігаційного куба, коли він не сфокусований - + Color Колір - + Base color for all elements Базовий колір для всіх елементів - + Rotation center indicator Індикатор центру обертання - + Sphere size Розмір сфери - + Color and transparency Колір та прозорість - + The size of the rotation center indicator Розмір індикатора центру обертання - + The color of the rotation center indicator Колір індикатора центру обертання - + 3D Navigation 3D Навігація - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Перелік налаштувань кнопок миші для кожного обраного параметра навігації. Виберіть набір, а потім натисніть кнопку для перегляду конфігурацій. - + Mouse... Мишка... - + Navigation settings set Набір налаштувань навігації - + Orbit style Стиль орбіти - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4066,104 +4065,104 @@ Free Turntable: the part will be rotated around the z-axis. Вільне обертання: деталь буде обертатися навколо осі z. - + Turntable Поворотна - + Trackball Трекбол - + Free Turntable Вільне обертання - + Rotation mode Режим обертання - + Rotations in 3D will use current cursor position as center for rotation Обертання в 3D буде використовувати поточне положення курсору як центр обертання - + Window center Центр вікна - + Drag at cursor Перетягування під курсором - + Object center Центр обʼєкта - + Default camera orientation Типова орієнтація камери - + Default camera orientation when creating a new document or selecting the home view Визначає типову орієнтацію камери під час створення нового документа або вибору стандартного виду - + Camera zoom Масштабування камери - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Встановлює масштабування камери для нових документів. Значення це діаметр сфери, яка поміститься на екрані. - + mm мм - + Animations Анімації - + Enable spinning animations that are used in some navigation styles after dragging Увімкнути анімацію обертання, яка використовується в деяких стилях навігації після перетягування - + Enable spinning animations Увімкнути анімацію обертання - + Duration of navigation animations that have a fixed duration Тривалість навігаційних анімацій з фіксованою тривалістю - + Animation duration Тривалість анімації - + The duration of navigation animations in milliseconds Тривалість анімації навігації в мілісекундах - + Zoom step Крок масштабування @@ -4173,34 +4172,34 @@ The value is the diameter of the sphere to fit on the screen. Назва шрифту - + Zoom operations will be performed at position of mouse pointer Операції масштабування буде виконано на позиції вказівника миші - + Zoom at cursor Масштабування над курсором - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. Визначає коефіцієнт збільшення. Крок масштабування '1' дорівнює коефіцієнту збільшення 7,5. - + Direction of zoom operations will be inverted Напрямок масштабування операцій буде інвертований - + Invert zoom Інвертувати масштабування - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4209,7 +4208,7 @@ Mouse tilting is not disabled by this setting. Нахил миші не вимикається цим параметром. - + Disable touchscreen tilt gesture Вимкнути реакцію на нахил екрану @@ -4679,7 +4678,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement Розташувати @@ -5265,32 +5264,17 @@ The 'Status' column shows whether the document could be recovered. Скинути - - OK - Підтвердити - - - - Close - Закрити - - - - Apply - Застосувати - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Будь ласка, виберіть 1, 2 або 3 точки перед натисканням на цю кнопку. Точка може бути на вершині, грані або на ребрі. Якщо вибрати на грані або на ребрі, то обраною буде точка найближча до курсора, що належить грані або ребру. Якщо вибрано 1 точку, вона буде використовуватися як центр обертання. При виборі двох точок, центром обертання буде середина між ними, а також при потребі буде додано нову вісь обертання. При виборі 3 точок, перша точка стає центром обертання і лежить на векторі, що буде нормаллю до площини утвореної трьома вибраними точками. У додатвовій інформації також надаються дані про відстань та кут. Це може бути корисним для вирівнювання обʼєктів. Для вашої зручності при кліку з натисненим Shift відповідна відстань або кут буде скопійовано в буфер обміну. - + Incorrect quantity Неправильна кількість - + There are input fields with incorrect input, please ensure valid placement values! Поля заповнені некоректними величинами, переконайтесь, що вводите правильні значення! @@ -5429,13 +5413,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - Скасувати - - - - + Transform Перетворити @@ -5826,13 +5804,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Виберіть файл - + Select a directory Виберіть теку @@ -5840,13 +5818,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Зберегти як - - + + Open Відкрити @@ -5854,12 +5832,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Розширений - + All files (*.*) Усі файли (*.*) @@ -6036,7 +6014,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Список @@ -6153,57 +6131,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Розмірність - + Ready Готово - + Close All Закрити все - - - + + + Toggles this toolbar Переключення цієї панелі - - - + + + Toggles this dockable window Переключення цього закріплюваного вікна - + WARNING: This is a development version. УВАГА: Це версія для розробки. - + Please do not use it in a production environment. Будь ласка, не використовуйте його у виробничих умовах. - - + + Unsaved document Незбережений документ - + The exported object contains external link. Please save the documentat least once before exporting. Експортований обʼєкт містить зовнішні посилання. Збережіть документ хоча б раз перед експортом. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Щоб привʼязати зовнішні обʼєкти, документ повинен бути збережений хоча б один раз. @@ -6790,12 +6768,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Виберіть модуль - + Open %1 as Відкрити %1 як @@ -7331,7 +7309,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Ієрархія документа @@ -7339,7 +7317,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Пошук @@ -7397,148 +7375,148 @@ Do you want to specify another directory? Група - + Labels & Attributes Мітки та Атрибути - + Description Опис - + Internal name Внутрішня назва - + Show items hidden in tree view Відображати елементи приховані в дереві перегляду - + Show items that are marked as 'hidden' in the tree view Показати елементи, позначені як «приховані» у поданні дерева - + Toggle visibility in tree view Перемикання видимості в деревоподібному поданні - + Toggles the visibility of selected items in the tree view Перемикає видимість вибраних елементів у деревоподібному поданні - + Create group Створити групу - + Create a group Створити групу - - + + Rename Перейменувати - + Rename object Перейменувати обʼєкт - + Finish editing Завершити редагування - + Finish editing object Завершити редагування обʼєкту - + Add dependent objects to selection Додати залежні обʼєкти до виділення - + Adds all dependent objects to the selection Додає всі залежні обʼєкти до виділеного - + Close document Закрити документ - + Close the document Закрити цей документ - + Reload document Перезавантажити документ - + Reload a partially loaded document Перезавантажити частково завантажений документ - + Skip recomputes Пропустити перерахунки - + Enable or disable recomputations of document Ввімкнути або вимкнути перерахунки документа - + Allow partial recomputes Дозволити часткові переобчислення - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Ввімкнути або вимкнути переобчислення обʼєктів, коли 'пропустити переобчислення' активовано - + Mark to recompute Помітити для переобчислення - + Mark this object to be recomputed Позначити цей обʼєкт для переобчислення - + Recompute object Переобчислити обʼєкт - + Recompute the selected object Переобчислити виділений обʼєкт - + (but must be executed) (але має бути виконано) - + %1, Internal name: %2 %1, внутрішнє імʼя: %2 @@ -7735,14 +7713,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input Некоректний ввід - - + + Input in line %1 is not a number Введене у рядку %1 значення не є числом @@ -7750,47 +7728,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Ієрархія документа - + Tasks Завдання - + Property view Вид Властивості - + Selection view Вид Виділення - + Task List Список Завдань - + Model Модель - + DAG View Вид DAG - + Report view Вид Звіту - + Python console Консоль Python @@ -7830,45 +7808,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype Невідомий тип файлу - - + + Cannot open unknown filetype: %1 Не вдається відкрити невідомий тип файлу: %1 - + Export failed Експорт не вдався - + Cannot save to unknown filetype: %1 Не вдається зберегти в невідомий тип файлу: %1 - + + Recomputation required + Потрібне переобчислення + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Деякі документи з метою міграції потребують переобчислення. Наполегливо рекомендується виконати переобчислення перед будь-якими змінами, щоб уникнути проблеми сумісності. + +Бажаєте переобчислити зараз? + + + + Recompute error + Помилка переобчислення + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Помилка робочого середовища - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. Ця система працює на OpenGL %1.%2. FreeCAD вимагає OpenGL 2.0 або вище. Будь ласка, оновіть драйвер графіки та/або графічну карту за необхідністю. - + Invalid OpenGL Version Неправильна версія OpenGL @@ -7919,7 +7923,7 @@ Do you want to specify another directory? Експорт в PDF ... - + Unsaved document Незбережений документ @@ -7930,50 +7934,50 @@ Do you want to specify another directory? Експортований обʼєкт містить зовнішні посилання. Збережіть документ хоча б раз перед експортом. - + Delete failed Не вдалося видалити - + Dependency error Помилка залежності - + Copy selected Копіювати вибране - + Copy active document Копіювати активний документ - + Copy all documents Копіювати всі документи - + Paste Вставити - + Expression error Помилка виразу - + Failed to parse some of the expressions. Please check the Report View for more details. Не вдалося обробити деякі з виразів. Будь ласка перевірте Звіт для отримання більш докладної інформації. - + Failed to paste expressions Не вдалося вставити вирази @@ -8212,7 +8216,7 @@ Do you want to continue? Занадто багато відкритих ненав'язливих сповіщень. Повідомлення ігноруються! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8221,44 +8225,44 @@ Do you want to continue? - + Are you sure you want to continue? Ви впевнені, що бажаєте продовжити? - + Please check report view for more... Будь ласка, перегляньте Вид Звіту... - + Physical path: Фізичний шлях: - - + + Document: Документ: - - + + Path: Шлях: - + Identical physical path Ідентичний фізичний шлях - + Could not save document Не вдалося зберегти документ - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8271,102 +8275,102 @@ Would you like to save the file with a different name? Хочете зберегти файл з іншим імʼям? - - - + + + Saving aborted Збереження перервано - + Save dependent files Зберегти залежні файли - + The file contains external dependencies. Do you want to save the dependent files, too? Файл містить зовнішні залежності. Бажаєте також зберегти залежні файли? - - + + Saving document failed Не вдалося зберегти документ - + Save document under new filename... Зберегти документ під новим імʼям... - - + + Save %1 Document Зберегти %1 документ - + Document Документ - - + + Failed to save document Не вдалося зберегти документ - + Documents contains cyclic dependencies. Do you still want to save them? Документи містять циклічні залежності. Ви все ще хочете їх зберегти? - + Save a copy of the document under new filename... Зберегти копію документа під новим іменем файла... - + %1 document (*.FCStd) Документ %1 (*.FCStd) - + Document not closable Документ не закривається - + The document is not closable for the moment. Документ не може бути закритим в даний час. - + Document not saved Документ не збережено - + The document%1 could not be saved. Do you want to cancel closing it? Документ%1 не вдалося зберегти. Бажаєте скасувати закриття? - + Undo Скасувати - + Redo Повторити - + There are grouped transactions in the following documents with other preceding transactions В наступних документах відбувається групування операцій з іншими попередніми операціями - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8439,12 +8443,12 @@ Choose 'Abort' to abort Параметри... - + Out of memory Не вистачає памʼяті - + Not enough memory available to display the data. Недостатньо памʼяті для показу даних. @@ -8460,7 +8464,7 @@ Choose 'Abort' to abort Не вдається знайти файл %1 ні в %2 , ні в %3 - + Navigation styles Стилі навігації @@ -8476,32 +8480,32 @@ Choose 'Abort' to abort Ви бажаєте закрити це діалогове вікно? - + Do you want to save your changes to document '%1' before closing? Бажаєте зберегти внесені зміни в документ '%1' перед його закриттям? - + Do you want to save your changes to document before closing? Бажаєте зберегти зміни, які були внесені до документа перед його закриттям? - + If you don't save, your changes will be lost. Якщо ви не збережете, зміни будуть втрачено. - + Apply answer to all Застосувати відповідь до наступних питань - + %1 Document(s) not saved %1 Документ(и/ів) не збережено - + Some documents could not be saved. Do you want to cancel closing? Деякі документи не вдалося зберегти. Бажаєте скасувати закриття? @@ -8637,8 +8641,8 @@ underscore, and must not start with a digit. Не вдалося додати властивість до '%1': %2 - - + + Drag & drop failed Помилка перетягування @@ -8937,12 +8941,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: Заборонено: - + Selection not allowed by filter Виділення заборонено фільтром @@ -9030,13 +9034,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Вирівнювання... - - + + Align the selected objects Вирівняти виділені обʼєкти @@ -9320,17 +9324,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Перемкнути режим &Редагування - + Toggles the selected object's edit mode Змінити режим редагування виділеного обʼєкта - + Activates or Deactivates the selected object's edit mode Активує або деактивує для виділених обʼєктів режим редагування @@ -9362,13 +9366,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Дії з виразом - - + + Actions that apply to expressions Дії, які застосовуються до виразів @@ -9829,7 +9833,7 @@ underscore, and must not start with a digit. Створює новий порожній документ - + Unnamed Без назви @@ -9927,13 +9931,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Розташування... - - + + Place the selected objects Задає розташування виділених обʼєктів @@ -10071,13 +10075,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh Оновити - - + + Recomputes the current active document Переобчислює активний документ @@ -10421,13 +10425,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Перетворення... - - + + Transform the geometry of selected objects Перетворення геометрії вибраних обʼєктів @@ -10435,13 +10439,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Перетворити - - + + Transform the selected object in the 3d view Перетворює виділений обʼєкт у 3D виді @@ -11297,7 +11301,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11308,7 +11312,7 @@ Are you sure you want to continue? - + Object dependencies Залежності обʼєктів @@ -11420,7 +11424,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12188,8 +12192,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information Сталася помилка -- див. вид звіту для отримання інформації @@ -12946,65 +12950,40 @@ from Python console to Report view panel Джерела Світла - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Джерела світла - + Light source Джерело світла - + Intensity Інтенсивність - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Відрегулюйте орієнтацію джерела спрямованого світла, перетягуючи ручку за допомогою миші, або використовуйте поля обертання для точного налаштування. - + Direction Напрямок - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13411,12 +13390,12 @@ the region are non-opaque. StdCmdProperties - + Properties Властивості - + Show the property view, which displays the properties of the selected object. Показати подання властивостей, яке відображає властивості вибраного об'єкта. diff --git a/src/Gui/Language/FreeCAD_val-ES.ts b/src/Gui/Language/FreeCAD_val-ES.ts index 8f8d18808f..f590bc672e 100644 --- a/src/Gui/Language/FreeCAD_val-ES.ts +++ b/src/Gui/Language/FreeCAD_val-ES.ts @@ -91,17 +91,17 @@ Edita - + Import Importa - + Delete Elimina - + Paste expressions Paste expressions @@ -156,8 +156,7 @@ Align - - + Placement Posició @@ -425,42 +424,42 @@ EditMode - + Default Per defecte - + The object will be edited using the mode defined internally to be the most appropriate for the object type The object will be edited using the mode defined internally to be the most appropriate for the object type - + Transform Transforma - + The object will have its placement editable with the Std TransformManip command The object will have its placement editable with the Std TransformManip command - + Cutting Tall - + This edit mode is implemented as available but currently does not seem to be used by any object This edit mode is implemented as available but currently does not seem to be used by any object - + Color Color - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3902,7 +3901,7 @@ També podeu utilitzar la forma: Joan Peris <joan@peris.com> Gui::Dialog::DlgSettingsNavigation - + Navigation Navegació @@ -3962,99 +3961,99 @@ També podeu utilitzar la forma: Joan Peris <joan@peris.com> Rotate to nearest - + Font name of the navigation cube Font name of the navigation cube - + Default Per defecte - + Cube size Cube size - + Size of the navigation cube Size of the navigation cube - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color Color - + Base color for all elements Base color for all elements - + Rotation center indicator Rotation center indicator - + Sphere size Sphere size - + Color and transparency Color and transparency - + The size of the rotation center indicator The size of the rotation center indicator - + The color of the rotation center indicator The color of the rotation center indicator - + 3D Navigation Navegació 3D - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. Mostra les configuracions del botó del ratolí per a cada paràmetre de navegació escollit. Seleccioneu un paràmetre i, a continuació, premeu el botó per a veure aquestes configuracions. - + Mouse... Ratolí... - + Navigation settings set Un conjunt de configuracions de navegació - + Orbit style Estil d'òrbita - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4065,104 +4064,104 @@ Turntable: the part will be rotated around the z-axis (with constrained axes). Free Turntable: the part will be rotated around the z-axis. - + Turntable En rotació - + Trackball Ratolí de bola - + Free Turntable Free Turntable - + Rotation mode Rotation mode - + Rotations in 3D will use current cursor position as center for rotation Les rotacions en 3D utilitzaran la posició actual del cursor com a centre de rotació - + Window center Window center - + Drag at cursor Drag at cursor - + Object center Object center - + Default camera orientation Default camera orientation - + Default camera orientation when creating a new document or selecting the home view Default camera orientation when creating a new document or selecting the home view - + Camera zoom Camera zoom - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. Configura el zoom de la càmera per als nous documents. El valor és el diàmetre de l’esfera per a ajustar-se a la pantalla. - + mm mm - + Animations Animations - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration Animation duration - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoom step @@ -4172,41 +4171,41 @@ El valor és el diàmetre de l’esfera per a ajustar-se a la pantalla.Nom de la font - + Zoom operations will be performed at position of mouse pointer Les operacions del zoom es realitzaran en la posició del punter del ratolí - + Zoom at cursor Zoom en el cursor - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. - + Direction of zoom operations will be inverted La direcció de les operacions de zoom s’invertirà - + Invert zoom Invertix el zoom - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. Evita la inclinació de la vista quan s'està fent zoom amb els dits. Sols afecta l'estil de Navegació amb gestos. Aquesta opció no desactiva la inclinació del ratolí. - + Disable touchscreen tilt gesture Desactiva el gest d'inclinació de la pantalla tàctil @@ -4675,7 +4674,7 @@ El sistema de preferències és el fixat en les preferències generals. Gui::Dialog::DockablePlacement - + Placement Posició @@ -5260,32 +5259,17 @@ La columna 'Estat? mostra si el document es pot recuperar. Reinicialitza - - OK - D'acord - - - - Close - Tanca - - - - Apply - Aplica - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. Seleccioneu 1, 2 o 3 punts abans de fer clic en aquest botó. Un punt pot estar en un vèrtex, cara o aresta. Si esteu en una cara o aresta, el punt utilitzat serà el punt en la cara o aresta en la posició del ratolí. Si 1 punt és seleccionat serà utilitzat com a centre de rotació. Si se seleccionen 2 punts, el punt mig entre ells serà el centre de rotació i un nou eix personalitzat es crearà, si és necessari. Si se seleccionen 3 punts, el primer punt es converteix en el centre de rotació i es troba en el vector que és normal al pla definit per 3 punts. Alguns detalls de distància i angle es proporcionen en la visualització d'informe, que pot ser útil per a alinear objectes. Per a la vostra comoditat, quan feu Majúscules + clic s'utilitza la distància adequada o l'angle es copia al porta-retalls. - + Incorrect quantity La quantitat és incorrecta. - + There are input fields with incorrect input, please ensure valid placement values! Hi ha camps d'entrada amb entrada incorrecta, assegureu-vos que els valors d'emplaçament són vàlids. @@ -5424,13 +5408,7 @@ La columna 'Estat? mostra si el document es pot recuperar. Gui::Dialog::Transform - - Cancel - Cancel·la - - - - + Transform Transforma @@ -5820,13 +5798,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file Seleccioneu un fitxer - + Select a directory Seleccioneu un directori @@ -5834,13 +5812,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as Anomena i guarda - - + + Open Obri @@ -5848,12 +5826,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended Expandit - + All files (*.*) Tots els fitxers (*.*) @@ -6030,7 +6008,7 @@ Do you want to save your changes? Gui::LabelEditor - + List Llista @@ -6147,57 +6125,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension Dimensió - + Ready Preparat - + Close All Tanca-ho tot - - - + + + Toggles this toolbar Commuta la barra d'eines - - - + + + Toggles this dockable window Commuta la finestra flotant - + WARNING: This is a development version. WARNING: This is a development version. - + Please do not use it in a production environment. Please do not use it in a production environment. - - + + Unsaved document El document no s'ha guardat. - + The exported object contains external link. Please save the documentat least once before exporting. L’objecte exportat conté un enllaç extern. Guardeu el documenta almenys una vegada abans d’exportar-lo. - + To link to external objects, the document must be saved at least once. Do you want to save the document now? Per a enllaçar amb objectes externs, el document s’ha de guardar almenys una vegada. @@ -6783,12 +6761,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module Seleccioneu el mòdul - + Open %1 as Obri %1 com a @@ -7320,7 +7298,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view Vista d'arbre @@ -7328,7 +7306,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search Cerca @@ -7386,148 +7364,148 @@ Do you want to specify another directory? Grup - + Labels & Attributes Etiquetes i atributs - + Description Descripció - + Internal name Internal name - + Show items hidden in tree view Show items hidden in tree view - + Show items that are marked as 'hidden' in the tree view Show items that are marked as 'hidden' in the tree view - + Toggle visibility in tree view Toggle visibility in tree view - + Toggles the visibility of selected items in the tree view Toggles the visibility of selected items in the tree view - + Create group Crea un grup - + Create a group Crea un grup - - + + Rename Reanomena - + Rename object Reanomena l'objecte - + Finish editing Finalitza l'edició - + Finish editing object Finalitza l'edició de l'objecte - + Add dependent objects to selection Add dependent objects to selection - + Adds all dependent objects to the selection Adds all dependent objects to the selection - + Close document Tanca el document - + Close the document Tanca el document - + Reload document Torneu a la carregar el document - + Reload a partially loaded document Torna a carregar un document que s'ha carregat parcialment - + Skip recomputes Omet el recàlcul - + Enable or disable recomputations of document Activa o desactiva els recàlculs del document - + Allow partial recomputes Permet recàlculs parcials - + Enable or disable recomputating editing object when 'skip recomputation' is enabled Habilita o inhabilita el recàlcul de l'edició d'objectes quan estiga activat «Omet el recàlcul» - + Mark to recompute Marca per a recalcular - + Mark this object to be recomputed Marca aquest objecte per a recalcular-lo - + Recompute object Recalcula l'objecte - + Recompute the selected object Recalcula l'objecte seleccionat - + (but must be executed) (but must be executed) - + %1, Internal name: %2 %1, nom intern: %2 @@ -7724,14 +7702,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input L'entrada no és vàlida - - + + Input in line %1 is not a number L'entrada en la línia %1 no és un nombre. @@ -7739,47 +7717,47 @@ Do you want to specify another directory? QDockWidget - + Tree view Vista d'arbre - + Tasks Tasques - + Property view Visualització de les propietats - + Selection view Visualització de la selecció - + Task List Task List - + Model Model - + DAG View Vista DAG - + Report view Visualització de l'informe - + Python console Consola de Python @@ -7819,45 +7797,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype El tipus de fitxer és desconegut. - - + + Cannot open unknown filetype: %1 No es pot obrir el tipus de fitxer desconegut: %1 - + Export failed Exportació fallida - + Cannot save to unknown filetype: %1 No es pot guardar el tipus de fitxer desconegut: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure Fallada del banc de treball - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. - + Invalid OpenGL Version Invalid OpenGL Version @@ -7908,7 +7912,7 @@ Do you want to specify another directory? S'està exportant a PDF... - + Unsaved document El document no s'ha guardat. @@ -7919,50 +7923,50 @@ Do you want to specify another directory? L’objecte exportat conté un enllaç extern. Guardeu el documenta almenys una vegada abans d’exportar-lo. - + Delete failed No s'ha pogut eliminar - + Dependency error Error de dependència - + Copy selected Copia la selecció - + Copy active document Copia el document actiu - + Copy all documents Copia tots el documents - + Paste Apega - + Expression error S'ha produït un error d'expressió - + Failed to parse some of the expressions. Please check the Report View for more details. No s'han pogut analitzar algunes de les expressions. Per a obtindre més detalls, consulteu la vista de l'informe. - + Failed to paste expressions No s'han pogut apegar les expressions @@ -8200,7 +8204,7 @@ Do you want to continue? Too many opened non-intrusive notifications. Notifications are being omitted! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8209,44 +8213,44 @@ Do you want to continue? - + Are you sure you want to continue? Are you sure you want to continue? - + Please check report view for more... Please check report view for more... - + Physical path: Physical path: - - + + Document: Document: - - + + Path: Camí: - + Identical physical path Identical physical path - + Could not save document Could not save document - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8259,102 +8263,102 @@ Would you like to save the file with a different name? Would you like to save the file with a different name? - - - + + + Saving aborted S'avorta el procés de guardar. - + Save dependent files Guarda els fitxers dependents - + The file contains external dependencies. Do you want to save the dependent files, too? El fitxer conté dependències externes. Voleu guardar també els fitxers dependents? - - + + Saving document failed No s'ha pogut guardar el document. - + Save document under new filename... Guarda el document amb un altre nom... - - + + Save %1 Document Guarda el document %1 - + Document Document - - + + Failed to save document No s'ha pogut guardar el document - + Documents contains cyclic dependencies. Do you still want to save them? Els documents contenen dependències cícliques. Encara voleu guardar-los? - + Save a copy of the document under new filename... Guarda una còpia del document amb un altre nom... - + %1 document (*.FCStd) Document %1 (*.FCStd) - + Document not closable No es pot tancar el document. - + The document is not closable for the moment. De moment el document no es pot tancar. - + Document not saved Document not saved - + The document%1 could not be saved. Do you want to cancel closing it? The document%1 could not be saved. Do you want to cancel closing it? - + Undo Desfés - + Redo Refés - + There are grouped transactions in the following documents with other preceding transactions Hi ha transaccions agrupades en els documents següents amb altres transaccions anteriors - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8427,12 +8431,12 @@ Trieu «Interromp» per a interrompre Opcions... - + Out of memory No hi ha prou memòria. - + Not enough memory available to display the data. No hi ha prou memòria disponible per a mostrar les dades. @@ -8448,7 +8452,7 @@ Trieu «Interromp» per a interrompre No s'ha trobat el fitxer %1 ni en %2 ni en %3 - + Navigation styles Estils de navegació @@ -8464,32 +8468,32 @@ Trieu «Interromp» per a interrompre Do you want to close this dialog? - + Do you want to save your changes to document '%1' before closing? Voleu guardar els vostres canvis en el document '%1' abans de tancar? - + Do you want to save your changes to document before closing? Voleu guardar els vostres canvis en el document abans de tancar? - + If you don't save, your changes will be lost. Si no guardeu els canvis, es perdran. - + Apply answer to all Envia la resposta a tots - + %1 Document(s) not saved %1 Document(s) not saved - + Some documents could not be saved. Do you want to cancel closing? Some documents could not be saved. Do you want to cancel closing? @@ -8626,8 +8630,8 @@ guions baixos i no ha de començar amb un dígit. No s'ha pogut afegir la propietat a «%1»: %2 - - + + Drag & drop failed S'ha produït un error en arrossegar i deixar anar @@ -8924,12 +8928,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: No es permet: - + Selection not allowed by filter La selecció no és permesa pel filtre. @@ -9017,13 +9021,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... Alineació... - - + + Align the selected objects Alinea els objectes seleccionats @@ -9307,17 +9311,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode Commuta el mode d'&edició - + Toggles the selected object's edit mode Commuta el mode d'edició de l'objecte seleccionat - + Activates or Deactivates the selected object's edit mode Activa o desactiva el mode d'edició de l'objecte seleccionat @@ -9349,13 +9353,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions Accions d’expressió - - + + Actions that apply to expressions Actions that apply to expressions @@ -9816,7 +9820,7 @@ underscore, and must not start with a digit. Crea un document buit nou - + Unnamed Sense nom @@ -9914,13 +9918,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... Posició... - - + + Place the selected objects Col·loca els objectes seleccionats @@ -10058,13 +10062,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh &Actualitza - - + + Recomputes the current active document Recalcula el document actiu actualment @@ -10408,13 +10412,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... Transforma... - - + + Transform the geometry of selected objects Transforma la geometria dels objectes seleccionats @@ -10422,13 +10426,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform Transforma - - + + Transform the selected object in the 3d view Transforma l'objecte seleccionat en la vista 3D @@ -11284,7 +11288,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11295,7 +11299,7 @@ Segur que voleu continuar? - + Object dependencies Dependències de l'objecte @@ -11407,7 +11411,7 @@ Voleu guardar el document ara? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -12175,8 +12179,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information An error occurred -- see Report View for information @@ -12933,65 +12937,40 @@ de la consola Python al tauler de Vista d'informes Light Sources - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources Light sources - + Light source Light source - + Intensity Intensitat - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction Direcció - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13399,12 +13378,12 @@ the region are non-opaque. StdCmdProperties - + Properties Propietats - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. diff --git a/src/Gui/Language/FreeCAD_zh-CN.ts b/src/Gui/Language/FreeCAD_zh-CN.ts index 4f8b2e25ac..cdeba22dba 100644 --- a/src/Gui/Language/FreeCAD_zh-CN.ts +++ b/src/Gui/Language/FreeCAD_zh-CN.ts @@ -91,17 +91,17 @@ 编辑 - + Import 导入 - + Delete 删除 - + Paste expressions 粘贴表达式 @@ -156,8 +156,7 @@ 对齐 - - + Placement 定位 @@ -425,42 +424,42 @@ EditMode - + Default 默认 - + The object will be edited using the mode defined internally to be the most appropriate for the object type 对象将使用内部定义的模式(以最适合对象的类型)进行编辑 - + Transform 变换 - + The object will have its placement editable with the Std TransformManip command 该对象将可以通过 Std TransformManip 命令进行放置编辑 - + Cutting 锯切 - + This edit mode is implemented as available but currently does not seem to be used by any object 此编辑模式是可用的,但当前似乎没有用于任何对象 - + Color 颜色 - + The object will have the color of its individual faces editable with the Part FaceAppearances command The object will have the color of its individual faces editable with the Part FaceAppearances command @@ -3892,7 +3891,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation 导航栏 @@ -3952,99 +3951,99 @@ You can also use the form: John Doe <john@doe.com> 旋转到最近 - + Font name of the navigation cube 导航立方体字体名称 - + Default 默认 - + Cube size 立方体大小 - + Size of the navigation cube 导航立方体大小 - + Opacity when inactive Opacity when inactive - + Opacity of the navigation cube when not focused Opacity of the navigation cube when not focused - + Color 颜色 - + Base color for all elements 所有元素的基本颜色 - + Rotation center indicator 旋转中心指示器 - + Sphere size 球体大小 - + Color and transparency 颜色和透明度 - + The size of the rotation center indicator 旋转中心指示器大小 - + The color of the rotation center indicator 旋转中心指示器的颜色 - + 3D Navigation 三维导航 - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. 列出每个所选导航设置的鼠标按钮配置。 选择一组然后按下按钮查看所述配置。 - + Mouse... 鼠标... - + Navigation settings set 导航栏设置 - + Orbit style 环绕模式 - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4055,104 +4054,104 @@ Free Turntable: the part will be rotated around the z-axis. 自由转盘:部件将绕z轴旋转。 - + Turntable 转盘 - + Trackball 轨迹球 - + Free Turntable 自由转盘 - + Rotation mode 旋转模式 - + Rotations in 3D will use current cursor position as center for rotation 以当前光标位置为3D旋转中心 - + Window center 窗口中心 - + Drag at cursor 在光标处拖动 - + Object center 对象中心 - + Default camera orientation 默认相机方向 - + Default camera orientation when creating a new document or selecting the home view 创建新文档或选择主视图时的默认相机方向 - + Camera zoom 镜头缩放 - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. 设置新文档相机缩放。 该值是要适合屏幕的球体的直径。 - + mm mm - + Animations 动画 - + Enable spinning animations that are used in some navigation styles after dragging Enable spinning animations that are used in some navigation styles after dragging - + Enable spinning animations Enable spinning animations - + Duration of navigation animations that have a fixed duration 具有固定持续时间的导航动画持续时间 - + Animation duration 动画时长 - + The duration of navigation animations in milliseconds 以毫秒为单位的导航动画持续时间 - + Zoom step 缩放步骤 @@ -4162,33 +4161,33 @@ The value is the diameter of the sphere to fit on the screen. 字体名称 - + Zoom operations will be performed at position of mouse pointer 缩放操作将在鼠标指针位置进行 - + Zoom at cursor 以光标为中心缩放 - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. 将缩放多少。缩放步长为“1”意味着每个缩放步长为 7.5 倍。 - + Direction of zoom operations will be inverted 缩放操作的方向将反转 - + Invert zoom 反向缩放 - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4197,7 +4196,7 @@ Mouse tilting is not disabled by this setting. 此设置不会禁用鼠标倾斜。 - + Disable touchscreen tilt gesture 禁用触摸屏倾斜手势 @@ -4665,7 +4664,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement 定位 @@ -5250,32 +5249,17 @@ The 'Status' column shows whether the document could be recovered. 重设 - - OK - 确定 - - - - Close - 关闭 - - - - Apply - 应用 - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. 单击此按钮之前,请选择1,2或3个点。点可以位于顶点,面或边上。如果在面或边缘上,所使用的点将是沿着面或边缘的鼠标位置处的点。如果选择1点,则将其用作旋转中心。如果选择了2个点,则它们之间的中点将成为旋转中心,必要时将新建自定义轴。如果选择3个点,则第一个点成为旋转中心,并且位于与3个点定义的平面垂直的矢量上。报告视图中提供了一些距离和角度信息,这在对齐对象时非常有用。为方便,使用Shift+单击时,相应的距离或角度将复制到剪贴板。 - + Incorrect quantity 错误的数量 - + There are input fields with incorrect input, please ensure valid placement values! 输入区域有错误的内容,请确认该区域合理的输入内容! @@ -5414,13 +5398,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - 取消 - - - - + Transform 变换 @@ -5810,13 +5788,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file 选择一个文件 - + Select a directory 选择一个目录 @@ -5824,13 +5802,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as 另存为 - - + + Open 打开 @@ -5838,12 +5816,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended 扩展 - + All files (*.*) 所有文件(*.*) @@ -6020,7 +5998,7 @@ Do you want to save your changes? Gui::LabelEditor - + List 列表 @@ -6137,57 +6115,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension 尺寸标注 - + Ready 就绪 - + Close All 全部关闭 - - - + + + Toggles this toolbar 切换此工具栏 - - - + + + Toggles this dockable window 切换此可停靠的窗口 - + WARNING: This is a development version. 警告:这是一个开发版本。 - + Please do not use it in a production environment. 请不要在生产环境中使用它。 - - + + Unsaved document 未保存的文件 - + The exported object contains external link. Please save the documentat least once before exporting. 导出的对象包含外部链接。请在导出前至少保存一次文档。 - + To link to external objects, the document must be saved at least once. Do you want to save the document now? 要連結到外部物件,文件必須至少儲存一次。 @@ -6774,12 +6752,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module 选择模块 - + Open %1 as 打开 %1 作为 @@ -7313,7 +7291,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view 结构树浏览器 @@ -7321,7 +7299,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search 搜索 @@ -7379,148 +7357,148 @@ Do you want to specify another directory? - + Labels & Attributes 标签 & 属性 - + Description 描述 - + Internal name Internal name - + Show items hidden in tree view 在树状视图中显示隐藏项目 - + Show items that are marked as 'hidden' in the tree view 在树状视图中显示标记为“隐藏”的项目 - + Toggle visibility in tree view 在树状视图中切换可见性 - + Toggles the visibility of selected items in the tree view 在树状视图中切换选中项目的可见性 - + Create group 创建组 - + Create a group 创建组 - - + + Rename 重命名 - + Rename object 重命名对象 - + Finish editing 完成编辑 - + Finish editing object 完成编辑对象 - + Add dependent objects to selection 将依赖对象添加到所选对象 - + Adds all dependent objects to the selection 将所有依赖对象添加到所选对象 - + Close document 关闭文档 - + Close the document 关闭此文档 - + Reload document 重载文档 - + Reload a partially loaded document 重新加载部分加载的文档 - + Skip recomputes 略过重新计算 - + Enable or disable recomputations of document 启用或禁用文档的重新计算 - + Allow partial recomputes 允许部分重新计算 - + Enable or disable recomputating editing object when 'skip recomputation' is enabled “跳过重新计算”启用时,则启用或禁止重新计算编辑对象 - + Mark to recompute 标记以重新运算 - + Mark this object to be recomputed 对此物体执行重新计算 - + Recompute object 重新计算对象 - + Recompute the selected object 重新计算所选的对象 - + (but must be executed) (但是必须执行) - + %1, Internal name: %2 %1、内部名: %2 @@ -7717,14 +7695,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input 无效输入 - - + + Input in line %1 is not a number 于%1的输入并非数字 @@ -7732,47 +7710,47 @@ Do you want to specify another directory? QDockWidget - + Tree view 结构树浏览器 - + Tasks 任务 - + Property view 属性浏览器 - + Selection view 选择浏览器 - + Task List 任务列表 - + Model 模型 - + DAG View DAG视图 - + Report view 报告浏览器 - + Python console Python控制台 @@ -7812,45 +7790,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype 未知文件类型 - - + + Cannot open unknown filetype: %1 无法打开未知文件类型: %1 - + Export failed 导出失败 - + Cannot save to unknown filetype: %1 无法保存为未知的文件类型: %1 - + + Recomputation required + Recomputation required + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + + + + Recompute error + Recompute error + + + + Failed to recompute some document(s). +Please check report view for more details. + Failed to recompute some document(s). +Please check report view for more details. + + + Workbench failure 工作台故障 - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. 此系统正在运行 OpenGL %1。%2。FreeCAD 需要 OpenGL 2.0 或以上。请根据需要升级您的图形驱动程序和/或卡。 - + Invalid OpenGL Version 无效的 OpenGL 版本 @@ -7901,7 +7905,7 @@ Do you want to specify another directory? 导出 PDF... - + Unsaved document 未保存的文件 @@ -7912,50 +7916,50 @@ Do you want to specify another directory? 导出的对象包含外部链接。请在导出前至少保存一次文档。 - + Delete failed 删除失败 - + Dependency error 依赖关系错误 - + Copy selected 复制所选项 - + Copy active document 复制活动文档 - + Copy all documents 复制所有文档 - + Paste 粘贴 - + Expression error 表达式错误 - + Failed to parse some of the expressions. Please check the Report View for more details. 解析某些表达式失败。 请检查报表视图了解更多详情。 - + Failed to paste expressions 粘贴表达式失败 @@ -8193,7 +8197,7 @@ Do you want to continue? 已打开的非侵入性通知太多。正在省略通知! - + Identical physical path detected. It may cause unwanted overwrite of existing document! @@ -8202,44 +8206,44 @@ Do you want to continue? - + Are you sure you want to continue? 您确定要继续吗? - + Please check report view for more... 请检查报表视图... - + Physical path: 物理路径: - - + + Document: 文档: - - + + Path: 路径: - + Identical physical path 相同的物理路径 - + Could not save document 无法保存文档 - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8252,102 +8256,102 @@ Would you like to save the file with a different name? 要以其他名称保存文件吗? - - - + + + Saving aborted 保存中止 - + Save dependent files 保存依赖文件 - + The file contains external dependencies. Do you want to save the dependent files, too? 该文件包含外部依赖关系。您想要保存依赖的文件吗? - - + + Saving document failed 保存文档失败 - + Save document under new filename... 使用新的文件名保存文档... - - + + Save %1 Document 保存%1文件 - + Document 文档 - - + + Failed to save document 保存文档失败 - + Documents contains cyclic dependencies. Do you still want to save them? 文档包含循环依赖。您仍然想要保存它们吗? - + Save a copy of the document under new filename... 以新的文件名称保存目前文档的副本... - + %1 document (*.FCStd) %1 文档(*.FCStd) - + Document not closable 文档不可关闭 - + The document is not closable for the moment. 文档当前无法关闭. - + Document not saved 文档未保存. - + The document%1 could not be saved. Do you want to cancel closing it? 无法保存文档%1 。您想要取消关闭它吗? - + Undo 撤销 - + Redo 重做 - + There are grouped transactions in the following documents with other preceding transactions 以下文件中的交易与以前的其他交易分组: - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8420,12 +8424,12 @@ Choose 'Abort' to abort 选项... - + Out of memory 内存不足 - + Not enough memory available to display the data. 没有足够的可用内存来显示数据. @@ -8441,7 +8445,7 @@ Choose 'Abort' to abort 在 %2 或 %3 中找不到文件 %1 - + Navigation styles 导航模式 @@ -8457,32 +8461,32 @@ Choose 'Abort' to abort 您要关闭此对话框吗? - + Do you want to save your changes to document '%1' before closing? 在关闭前要储存「%1」文档嘛? - + Do you want to save your changes to document before closing? 您想要在关闭前将更改保存到文档吗? - + If you don't save, your changes will be lost. 如果您现在退出的话,您的更改将会丢失。 - + Apply answer to all 将选择应用于所有 - + %1 Document(s) not saved %1 文档未保存 - + Some documents could not be saved. Do you want to cancel closing? 一些文档无法保存。您想要取消关闭吗? @@ -8618,8 +8622,8 @@ underscore, and must not start with a digit. 加入屬性至 '%1':%2 失敗 - - + + Drag & drop failed 拖放失败 @@ -8913,12 +8917,12 @@ underscore, and must not start with a digit. SelectionFilter - + Not allowed: 不允许: - + Selection not allowed by filter 选择不被筛选器许可 @@ -9006,13 +9010,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... 对齐... - - + + Align the selected objects 对齐选定的对象 @@ -9296,17 +9300,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode 切换编辑(&E)模式 - + Toggles the selected object's edit mode 切换所选对象的编辑模式 - + Activates or Deactivates the selected object's edit mode 激活或停用所选对象的编辑模式 @@ -9338,13 +9342,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions 表达式动作 - - + + Actions that apply to expressions 适用于表达式的行动 @@ -9805,7 +9809,7 @@ underscore, and must not start with a digit. 创建一个新空白文档 - + Unnamed 未命名 @@ -9903,13 +9907,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... 定位... - - + + Place the selected objects 放置所选对象 @@ -10047,13 +10051,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh 刷新(&R) - - + + Recomputes the current active document 重新计算当前文档 @@ -10397,13 +10401,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... 变换... - - + + Transform the geometry of selected objects 变换选中对象的图形 @@ -10411,13 +10415,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform 变换 - - + + Transform the selected object in the 3d view 变换三维视图中选定的对象 @@ -11273,7 +11277,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11284,7 +11288,7 @@ Are you sure you want to continue? - + Object dependencies 对象依赖关系 @@ -11396,7 +11400,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11659,7 +11663,7 @@ Do you still want to proceed? Debug warnings - Debug warnings + 调试警告 @@ -11735,7 +11739,7 @@ Do you still want to proceed? Message List - Message List + 消息列表 @@ -11912,7 +11916,7 @@ Currently, your system has the following workbenches:</p></body>< Image size - Image size + 图像大小 @@ -12026,7 +12030,7 @@ Currently, your system has the following workbenches:</p></body>< Icon & Text - Icon & Text + 图标与文本 @@ -12163,8 +12167,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information 发生错误 -- 请查看报告视图以获取信息 @@ -12912,65 +12916,40 @@ from Python console to Report view panel 光源 - + + Push In + Push In + + + + Pull Out + Pull Out + + + Light sources 光源 - + Light source 光源: - + Intensity 强度 - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - + Direction 方向 - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13378,12 +13357,12 @@ the region are non-opaque. StdCmdProperties - + Properties 属性 - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. @@ -13598,17 +13577,17 @@ the region are non-opaque. If enabled, show an eye icon before the tree view items, showing their visibility status. When clicked the visibility is toggled. - If enabled, show an eye icon before the tree view items, showing their visibility status. When clicked the visibility is toggled. + 启用时,会在树形视图项目前显示一个眼睛图标,显示其可见性状态。点击后可切换可见性。 Show visibility icon - Show visibility icon + 显示可见性图标 Hide header with column names from the tree view. - Hide header with column names from the tree view. + 隐藏树形视图中带有列名的标题。 @@ -13618,7 +13597,7 @@ the region are non-opaque. Hide scroll bar from the tree view, scrolling will still be possible using mouse wheel. - Hide scroll bar from the tree view, scrolling will still be possible using mouse wheel. + 隐藏树形视图中的滚动条,但仍可使用鼠标滚轮滚动。 @@ -13633,7 +13612,7 @@ the region are non-opaque. Hide description - Hide description + 隐藏描述 @@ -13725,7 +13704,7 @@ the region are non-opaque. Start the units converter - Start the units converter + 启动单位转换器 diff --git a/src/Gui/Language/FreeCAD_zh-TW.ts b/src/Gui/Language/FreeCAD_zh-TW.ts index 4008d7f8a8..2ea065b953 100644 --- a/src/Gui/Language/FreeCAD_zh-TW.ts +++ b/src/Gui/Language/FreeCAD_zh-TW.ts @@ -91,17 +91,17 @@ 編輯 - + Import 匯入 - + Delete 刪除 - + Paste expressions 貼上表示式 @@ -148,7 +148,7 @@ Add a variable set - Add a variable set + 添加一個變數集合 @@ -156,8 +156,7 @@ 對齊 - - + Placement 佈置 @@ -280,7 +279,7 @@ TreeView - 樹狀圖 + 樹狀視圖 @@ -361,7 +360,7 @@ Variable Sets - Variable Sets + 變數集合 @@ -371,22 +370,22 @@ Variable Set: - Variable Set: + 變數集合: Info: - Info: + 資訊: New Property: - New Property: + 新的屬性: Show variable sets - Show variable sets + 顯示變數集合 @@ -425,44 +424,44 @@ EditMode - + Default 預設 - + The object will be edited using the mode defined internally to be the most appropriate for the object type 此物件將被使用內部定義模式來編輯,這會是最適合的物件類型。 - + Transform 轉換 - + The object will have its placement editable with the Std TransformManip command 此物件的位置將可透過 Std TransformManip 指令進行編輯 - + Cutting 切割 - + This edit mode is implemented as available but currently does not seem to be used by any object 此編輯模式已實作為可用,但目前似乎沒有被任何物件使用 - + Color 色彩 - + The object will have the color of its individual faces editable with the Part FaceAppearances command - The object will have the color of its individual faces editable with the Part FaceAppearances command + 該物件的每個面顏色可以使用 Part FaceAppearances 命令進行編輯 @@ -588,7 +587,7 @@ Scroll mouse wheel - Scroll mouse wheel + 滾動滑鼠滾輪 @@ -1996,7 +1995,7 @@ Perhaps a file permission error? % - % + % @@ -3436,7 +3435,7 @@ A partially loaded document cannot be edited. Double click the document icon in the tree view to fully reload it. 啟用外部連結文件的部分載入。 然後只有引用的物件及其相依項將在自動打開主文件時載入, -部分載入的文檔無法編輯。在樹視圖中雙擊文檔圖示以完全重新載入它。 +部分載入的文檔無法編輯。在樹狀視圖中雙擊文檔圖示以完全重新載入它。 @@ -3890,7 +3889,7 @@ You can also use the form: John Doe <john@doe.com> Gui::Dialog::DlgSettingsNavigation - + Navigation 導覽 @@ -3950,99 +3949,99 @@ You can also use the form: John Doe <john@doe.com> 旋轉到最近的 - + Font name of the navigation cube 導覽立方體的字型名稱 - + Default 預設 - + Cube size 立方體大小 - + Size of the navigation cube 導覽立方體大小 - + Opacity when inactive 非啟用時爲不透明 - + Opacity of the navigation cube when not focused 導覽方塊不在焦點時顯示爲不透明 - + Color 色彩 - + Base color for all elements 所有元件之基底顏色 - + Rotation center indicator 旋轉中心指示器 - + Sphere size 球體大小 - + Color and transparency 顏色與透明度 - + The size of the rotation center indicator 旋轉中心指示器的大小 - + The color of the rotation center indicator 旋轉中心指示器的顏色 - + 3D Navigation 3D 導航 - + List the mouse button configs for each chosen navigation setting. Select a set and then press the button to view said configurations. 列出每個選定導覽設定的滑鼠按鈕配置。 選擇一個設定,然後按按鈕查看相應的配置。 - + Mouse... 滑鼠... - + Navigation settings set 已設置之導覽設定 - + Orbit style 環繞模式 - + Rotation orbit style. Trackball: moving the mouse horizontally will rotate the part around the y-axis Turntable: the part will be rotated around the z-axis (with constrained axes). @@ -4053,104 +4052,104 @@ Free Turntable: the part will be rotated around the z-axis. 自由旋轉台:零件將被繞z軸旋轉。 - + Turntable 旋轉台 - + Trackball 軌跡球 - + Free Turntable 自由旋轉台 - + Rotation mode 旋轉模式 - + Rotations in 3D will use current cursor position as center for rotation 3D中的旋轉將以目前遊標位置作為旋轉的中心點 - + Window center 視窗中心 - + Drag at cursor 在遊標位置拖曳 - + Object center 物件中心 - + Default camera orientation 預設相機方向 - + Default camera orientation when creating a new document or selecting the home view 在創建新文件或選擇主頁視圖時的預設相機方向 - + Camera zoom 相機縮放 - + Sets camera zoom for new documents. The value is the diameter of the sphere to fit on the screen. 設定相機對新文件的縮放。 其值是適合放在螢幕上球的直徑 - + mm mm - + Animations 動畫 - + Enable spinning animations that are used in some navigation styles after dragging 拖曳時於某些導航樣式中啟用旋轉動畫 - + Enable spinning animations 啟用旋轉動畫 - + Duration of navigation animations that have a fixed duration Duration of navigation animations that have a fixed duration - + Animation duration 動畫長度 - + The duration of navigation animations in milliseconds The duration of navigation animations in milliseconds - + Zoom step Zoom step @@ -4160,34 +4159,34 @@ The value is the diameter of the sphere to fit on the screen. 字型名稱 - + Zoom operations will be performed at position of mouse pointer 縮放操作將在滑鼠滑標位置執行 - + Zoom at cursor 遊標處放大 - + How much will be zoomed. Zoom step of '1' means a factor of 7.5 for every zoom step. 將縮放多少。 縮放步驟 '1' 表示每個縮放步驟的因數為7.5。 - + Direction of zoom operations will be inverted 縮放操作的方向將被反轉 - + Invert zoom 反相縮放 - + Prevents view tilting when pinch-zooming. Affects only gesture navigation style. Mouse tilting is not disabled by this setting. @@ -4196,7 +4195,7 @@ Mouse tilting is not disabled by this setting. 此設置不會停用滑鼠傾斜。 - + Disable touchscreen tilt gesture 停用觸控屏傾斜手勢 @@ -4383,7 +4382,7 @@ Larger value eases to pick things, but can make small features impossible to sel Preselect the object in 3D view when hovering the cursor over the tree item - Preselect the object in 3D view when hovering the cursor over the tree item + 將滑鼠遊標停在樹狀圖項目上時,在3D視圖中預選取該物件 @@ -4556,7 +4555,7 @@ Larger value eases to pick things, but can make small features impossible to sel Units converter - Units converter + 單位轉換器 @@ -4664,7 +4663,7 @@ The preference system is the one set in the general preferences. Gui::Dialog::DockablePlacement - + Placement 佈置 @@ -5191,7 +5190,7 @@ The 'Status' column shows whether the document could be recovered. Rotation axis and angle - Rotation axis and angle + 旋轉軸與角度 @@ -5249,32 +5248,17 @@ The 'Status' column shows whether the document could be recovered. 重設 - - OK - 確定 - - - - Close - 關閉 - - - - Apply - 應用 - - - + Please select 1, 2, or 3 points before clicking this button. A point may be on a vertex, face, or edge. If on a face or edge the point used will be the point at the mouse position along face or edge. If 1 point is selected it will be used as the center of rotation. If 2 points are selected the midpoint between them will be the center of rotation and a new custom axis will be created, if needed. If 3 points are selected the first point becomes the center of rotation and lies on the vector that is normal to the plane defined by the 3 points. Some distance and angle information is provided in the report view, which can be useful when aligning objects. For your convenience when Shift + click is used the appropriate distance or angle is copied to the clipboard. 在單擊此按鈕之前,請選擇1、2或3個點。點可以位於頂點、面或邊上。如果位於面或邊上,則使用的點將是沿著面或邊的鼠標位置的點。如果選擇了1個點,則它將用作旋轉的中心。如果選擇了2個點,則它們之間的中點將成為旋轉的中心,如果需要,將創建一個新的自定義軸。如果選擇了3個點,則第一個點將成為旋轉的中心,並位於由3個點定義的平面的法線向量上。在報告檢視中提供了一些距離和角度訊息,這在對齊物件時可能很有用。為了您的方便,當使用Shift +點擊時,適當的距離或角度將被複製到剪貼板上。 - + Incorrect quantity 錯誤的數量 - + There are input fields with incorrect input, please ensure valid placement values! 於輸入區域有錯誤的內容,請確認該區域合理之輸入內容 @@ -5413,13 +5397,7 @@ The 'Status' column shows whether the document could be recovered. Gui::Dialog::Transform - - Cancel - 取消 - - - - + Transform 轉換 @@ -5808,13 +5786,13 @@ Do you want to save your changes? Gui::FileChooser - - + + Select a file 選擇一個檔案 - + Select a directory 選擇一個目錄 @@ -5822,13 +5800,13 @@ Do you want to save your changes? Gui::FileDialog - + Save as 另存新檔 - - + + Open 開啟 @@ -5836,12 +5814,12 @@ Do you want to save your changes? Gui::FileOptionsDialog - + Extended 延伸的 - + All files (*.*) 所有檔案(*.*) @@ -5889,12 +5867,12 @@ Do you want to save your changes? Drag screen with one finger OR press left mouse button. In Sketcher and other edit modes, hold Alt in addition. - Drag screen with one finger OR press left mouse button. In Sketcher and other edit modes, hold Alt in addition. + 用一根手指拖動螢幕或按下左鍵。 在草圖和其他編輯模式中,另外按住Alt鍵。 Pinch (place two fingers on the screen and drag them apart from or towards each other) OR scroll middle mouse button OR PgUp/PgDown on keyboard. - Pinch (place two fingers on the screen and drag them apart from or towards each other) OR scroll middle mouse button OR PgUp/PgDown on keyboard. + 捏合(將兩根手指放在螢幕上並將它們分開或靠近)或滾動中鍵滑鼠,或使用鍵盤上的 PgUp/PgDown 鍵。 @@ -6018,7 +5996,7 @@ Do you want to save your changes? Gui::LabelEditor - + List 清單 @@ -6135,57 +6113,57 @@ Do you want to save your changes? Gui::MainWindow - + Dimension 標註 - + Ready 就緒 - + Close All 全部關閉 - - - + + + Toggles this toolbar 切換此工具列 - - - + + + Toggles this dockable window 切換此可停靠的視窗 - + WARNING: This is a development version. 警告:這是開發版。 - + Please do not use it in a production environment. 請不要在生產環境中使用它。 - - + + Unsaved document 未儲存文件 - + The exported object contains external link. Please save the documentat least once before exporting. 匯出的物件包含外部連結。請在匯出前至少儲存一次文件。 - + To link to external objects, the document must be saved at least once. Do you want to save the document now? 要連結到外部物件,文件必須至少儲存一次。 @@ -6772,12 +6750,12 @@ Do you want to exit without saving your data? Gui::SelectModule - + Select module 選擇模組 - + Open %1 as 開啟%1為 @@ -6844,7 +6822,7 @@ Do you want to specify another directory? Automatic Python modules documentation - Automatic Python modules documentation + 自動生成 Python 模組文件 @@ -7309,7 +7287,7 @@ Do you want to specify another directory? Gui::TreeDockWidget - + Tree view 樹狀檢視 @@ -7317,7 +7295,7 @@ Do you want to specify another directory? Gui::TreePanel - + Search 搜尋 @@ -7352,22 +7330,22 @@ Do you want to specify another directory? Show description - Show description + 顯示描述 Show internal name - Show internal name + 顯示內部名稱 Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. - Show a description column for items. An item's description can be set by pressing F2 (or your OS's edit button) or by editing the 'label2' property. + 顯示項目的描述欄位。可以通過按下 F2 鍵(或您操作系統的編輯按鈕)或編輯 'label2' 屬性來設置項目的描述。 Show an internal name column for items. - Show an internal name column for items. + 顯示項目的內部名稱欄位。 @@ -7375,148 +7353,148 @@ Do you want to specify another directory? 群組 - + Labels & Attributes 標籤和屬性 - + Description 說明 - + Internal name - Internal name + 內部名稱 - + Show items hidden in tree view 在樹狀檢視圖中顯示隱藏項目 - + Show items that are marked as 'hidden' in the tree view 在樹狀檢視圖中顯示被標為 '隱藏' 的項目 - + Toggle visibility in tree view 在樹狀圖中切換可見性 - + Toggles the visibility of selected items in the tree view 切換樹狀圖中被選項目的可見性 - + Create group 建立群組 - + Create a group 建立一個群組 - - + + Rename 重新命名 - + Rename object 重新命名物件 - + Finish editing 完成編輯 - + Finish editing object 完成編輯物件 - + Add dependent objects to selection 將相依物件增加到選擇 - + Adds all dependent objects to the selection 將所有相依物件增加到選擇 - + Close document 關閉文件 - + Close the document 關閉此文件 - + Reload document 重新載入文件 - + Reload a partially loaded document 重新載入一部份載入之文件 - + Skip recomputes 略過重新計算 - + Enable or disable recomputations of document 啟用或停用文件重新運算之功能 - + Allow partial recomputes 允許部份重新計算 - + Enable or disable recomputating editing object when 'skip recomputation' is enabled 啟用'跳過重新計算'時啟用或停用重新計算編輯物件 - + Mark to recompute 標記為重新計算 - + Mark this object to be recomputed 標記此物件來作重新計算 - + Recompute object 重新計算物件 - + Recompute the selected object 重新計算所選的物件 - + (but must be executed) (但是必須被執行) - + %1, Internal name: %2 %1,內部名稱:%2 @@ -7713,14 +7691,14 @@ Do you want to specify another directory? PropertyListDialog - - + + Invalid input 無效的輸入 - - + + Input in line %1 is not a number 於%1之輸入並非數字 @@ -7728,47 +7706,47 @@ Do you want to specify another directory? QDockWidget - + Tree view 樹狀檢視 - + Tasks 任務 - + Property view 屬性檢視 - + Selection view 選擇視圖 - + Task List 任務列表 - + Model 模型 - + DAG View DAG視圖 - + Report view 報告檢視 - + Python console Python 主控台 @@ -7808,45 +7786,71 @@ Do you want to specify another directory? Python - - - + + + Unknown filetype 未知檔案類型 - - + + Cannot open unknown filetype: %1 無法開啟未知文件類型:%1 - + Export failed 匯出失敗 - + Cannot save to unknown filetype: %1 無法儲存為未知的檔案類型:%1 - + + Recomputation required + 需要重新計算 + + + + Some document(s) require recomputation for migration purposes. It is highly recommended to perform a recomputation before any modification to avoid compatibility problems. + +Do you want to recompute now? + 某些文件需要為遷移目的進行重新計算。強烈建議在進行任何修改之前執行重新計算,以避免相容性問題。 + +您現在要進行重新計算嗎? + + + + Recompute error + 重新計算錯誤 + + + + Failed to recompute some document(s). +Please check report view for more details. + 無法重新計算某些文件。 +請檢查報告視圖以獲取更多細節。 + + + Workbench failure 工作台故障 - + %1 %1 - + This system is running OpenGL %1.%2. FreeCAD requires OpenGL 2.0 or above. Please upgrade your graphics driver and/or card as required. 此系統正在運行 OpenGL %1.%2。FreeCAD 需要 OpenGL 2.0 或更高的版本。請依要求升級您的繪圖驅動程式與/或繪圖卡。 - + Invalid OpenGL Version 無效的 OpenGL 版本 @@ -7897,7 +7901,7 @@ Do you want to specify another directory? 匯出 PDF... - + Unsaved document 未儲存文件 @@ -7908,50 +7912,50 @@ Do you want to specify another directory? 匯出的物件包含外部連結。請在匯出前至少儲存一次文件。 - + Delete failed 刪除失敗 - + Dependency error 相依性錯誤 - + Copy selected 複製選擇的部分 - + Copy active document 複製作業中文件 - + Copy all documents 複製所有文件 - + Paste 貼上 - + Expression error 表示式錯誤 - + Failed to parse some of the expressions. Please check the Report View for more details. 無法解析某些表示式。 請檢視報告檢視以獲得更多細節。 - + Failed to paste expressions 無法貼上表示式 @@ -8189,51 +8193,51 @@ Do you want to continue? 太多已開啟之非侵入通知。通知已被忽略! - + Identical physical path detected. It may cause unwanted overwrite of existing document! 偵測到相同的實體路徑。這可能會導致現有文件被不必要地覆寫! - + Are you sure you want to continue? 您確定要繼續嗎? - + Please check report view for more... 請檢視報告檢視以獲得更多... - + Physical path: 實體路徑: - - + + Document: 文件: - - + + Path: 路徑: - + Identical physical path 相同實體路徑 - + Could not save document 無法儲存文件 - + There was an issue trying to save the file. This may be because some of the parent folders do not exist, or you do not have sufficient permissions, or for other reasons. Error details: "%1" @@ -8244,102 +8248,102 @@ Would you like to save the file with a different name? "%1" - - - + + + Saving aborted 終止存檔 - + Save dependent files 儲存相依檔案 - + The file contains external dependencies. Do you want to save the dependent files, too? 該檔案包含外部相依性。您是否也要一併儲存相依的檔案? - - + + Saving document failed 儲存文件失敗 - + Save document under new filename... 以新檔名儲存文件 - - + + Save %1 Document 儲存文件 %1 - + Document 文件 - - + + Failed to save document 儲存文件失敗。 - + Documents contains cyclic dependencies. Do you still want to save them? 文件包含循環相依性。您是否仍然要儲存它們? - + Save a copy of the document under new filename... 以新的檔案名稱儲存文件的副本 - + %1 document (*.FCStd) %1文件(*.FCStd) - + Document not closable 文件無法關閉 - + The document is not closable for the moment. 目前文件無法關閉 - + Document not saved 文件未儲存 - + The document%1 could not be saved. Do you want to cancel closing it? 文件%1無法被儲存。請問您是否要關閉它? - + Undo 復原 - + Redo 重做 - + There are grouped transactions in the following documents with other preceding transactions 以下文件中存在與其他前置交易進行群組交易。 - + Choose 'Yes' to roll back all preceding transactions. Choose 'No' to roll back in the active document only. Choose 'Abort' to abort @@ -8412,12 +8416,12 @@ Choose 'Abort' to abort 選項 ... - + Out of memory 記憶體不足 - + Not enough memory available to display the data. 沒有足夠的記憶體可用來顯示資料。 @@ -8433,7 +8437,7 @@ Choose 'Abort' to abort 在%2與%3中找不到檔案 %1 - + Navigation styles 導航模式 @@ -8449,32 +8453,32 @@ Choose 'Abort' to abort 您確定要關閉此對話窗嗎? - + Do you want to save your changes to document '%1' before closing? 於關閉前要儲存「%1」檔嘛? - + Do you want to save your changes to document before closing? 您是否在關閉前要儲存改變至此文件? - + If you don't save, your changes will be lost. 若不儲存將會失去所有修改 - + Apply answer to all 套用答案到全部 - + %1 Document(s) not saved %1 文件未儲存 - + Some documents could not be saved. Do you want to cancel closing? 某些文件無法被儲存。請問您是否要關閉它? @@ -8610,8 +8614,8 @@ underscore, and must not start with a digit. 加入屬性至 '%1':%2 失敗 - - + + Drag & drop failed 拖放操作失敗 @@ -8891,26 +8895,24 @@ the current copy will be lost. The property name must only contain alpha numericals, underscore, and must not start with a digit. - The property name must only contain alpha numericals, -underscore, and must not start with a digit. + 屬性名稱只能包含字母、數字、底線,且不能以數字開頭。 The group name must only contain alpha numericals, underscore, and must not start with a digit. - The group name must only contain alpha numericals, -underscore, and must not start with a digit. + 群組名稱只能包含字母、數字、底線,且不能以數字開頭。 SelectionFilter - + Not allowed: 不允許: - + Selection not allowed by filter 不允許使用過濾器選擇 @@ -8998,13 +9000,13 @@ underscore, and must not start with a digit. StdCmdAlignment - + Alignment... 對齊... - - + + Align the selected objects 對齊選定物件 @@ -9288,17 +9290,17 @@ underscore, and must not start with a digit. StdCmdEdit - + Toggle &Edit mode 切換&編輯模式 - + Toggles the selected object's edit mode 切換所選的物件的編輯模式 - + Activates or Deactivates the selected object's edit mode 啟用或停用所選物件的編輯模式 @@ -9330,13 +9332,13 @@ underscore, and must not start with a digit. StdCmdExpression - + Expression actions 表示式動作 - - + + Actions that apply to expressions 套用在表示式的動作 @@ -9797,7 +9799,7 @@ underscore, and must not start with a digit. 建立一個新的空白檔案 - + Unnamed 未命名 @@ -9895,13 +9897,13 @@ underscore, and must not start with a digit. StdCmdPlacement - + Placement... 放置... - - + + Place the selected objects 放置所選物件 @@ -10039,13 +10041,13 @@ underscore, and must not start with a digit. StdCmdRefresh - + &Refresh 重新運算(&R) - - + + Recomputes the current active document 重新計算目前作業中文件 @@ -10389,13 +10391,13 @@ underscore, and must not start with a digit. StdCmdTransform - + Transform... 變換... - - + + Transform the geometry of selected objects 所選物件的幾何變換 @@ -10403,13 +10405,13 @@ underscore, and must not start with a digit. StdCmdTransformManip - + Transform 轉換 - - + + Transform the selected object in the 3d view 轉換3D視圖中所選物件 @@ -11067,7 +11069,7 @@ underscore, and must not start with a digit. Preselect the object in 3D view when hovering the cursor over the tree item - Preselect the object in 3D view when hovering the cursor over the tree item + 將滑鼠遊標停在樹狀圖項目上時,在3D視圖中預選取該物件 @@ -11088,7 +11090,7 @@ underscore, and must not start with a digit. Go to selection - 進行選擇 + 前往選擇項目 @@ -11265,7 +11267,7 @@ underscore, and must not start with a digit. Std_Delete - + The following referencing objects might break. Are you sure you want to continue? @@ -11276,7 +11278,7 @@ Are you sure you want to continue? - + Object dependencies 物件相依 @@ -11388,7 +11390,7 @@ Do you want to save the document now? Std_Refresh - + The document contains dependency cycles. Please check the Report View for more details. @@ -11437,7 +11439,7 @@ Do you still want to proceed? Hide extra tree view column - Internal Names. - Hide extra tree view column - Internal Names. + 隱藏樹狀視圖中的額外欄位 - 內部名稱。 @@ -11792,8 +11794,7 @@ after FreeCAD launches <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> Currently, your system has the following workbenches:</p></body></html> - <html><head/><body><p>You can reorder workbenches by drag and drop or sort them by right-clicking on any workbench and select <span style=" font-weight:600; font-style:italic;">Sort alphabetically</span>. Additional workbenches can be installed through the addon manager.</p><p> -Currently, your system has the following workbenches:</p></body></html> + <html><head/><body><p>您可以通過拖曳來重新排序工作區,或右鍵單擊任何工作區並選擇 <span style=" font-weight:600; font-style:italic;">按字母順序排序</span>。您還可以通過附加模組管理器安裝額外的工作區。</p><p> 當前系統具有以下工作區:</p></body></html> @@ -11859,17 +11860,17 @@ Currently, your system has the following workbenches:</p></body>< XY-Plane - XY-Plane + XY-平面 XZ-Plane - XZ-Plane + XZ-平面 YZ-Plane - YZ-Plane + YZ-平面 @@ -11957,7 +11958,7 @@ Currently, your system has the following workbenches:</p></body>< This is the current startup module, and must be enabled. - This is the current startup module, and must be enabled. + 這是目前的啟動模組,必須啟用。 @@ -11977,7 +11978,7 @@ Currently, your system has the following workbenches:</p></body>< This is the current startup module, and must be autoloaded. - This is the current startup module, and must be autoloaded. + 這是目前的啟動模組,必須被自動載入。 @@ -12155,8 +12156,8 @@ Currently, your system has the following workbenches:</p></body>< Gui::ExpLineEdit - - + + An error occurred -- see Report View for information 有錯誤發生 - 請看報告檢視以獲得資訊 @@ -12477,7 +12478,7 @@ dot/period will always be printed. Looking for more themes? You can obtain them using <a href="freecad:Std_AddonMgr">Addon Manager</a>. - Looking for more themes? You can obtain them using <a href="freecad:Std_AddonMgr">Addon Manager</a>. + 尋找更多主題?您可以使用 <a href="freecad:Std_AddonMgr">附加元件管理員</a> 以獲取它們 @@ -12493,7 +12494,7 @@ this according to your screen size or personal taste Tree view and Property view mode: - Tree view and Property view mode: + 樹狀視圖和屬性視圖模式: @@ -12501,10 +12502,10 @@ this according to your screen size or personal taste 'Combined': combine Tree view and Property view into one panel. 'Independent': split Tree view and Property view into separate panels. - Customize how tree view is shown in the panel (restart required). + 自訂面板中樹狀視圖的顯示方式(需要重新啟動)。 -'Combined': combine Tree view and Property view into one panel. -'Independent': split Tree view and Property view into separate panels. +「合併」:將樹狀視圖和屬性視圖合併到一個面板中。 +「獨立」:將樹狀視圖和屬性視圖分為兩個獨立的面板。 @@ -12633,12 +12634,12 @@ display the splash screen Combined - Combined + 組合 Independent - Independent + 獨立 @@ -12909,65 +12910,40 @@ from Python console to Report view panel 光源 - + + Push In + 推入 + + + + Pull Out + 拉出 + + + Light sources 光源 - + Light source 光源 - + Intensity 強度 - + Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. - Adjust the orientation of the directional light source by dragging the handle with the mouse or use the spin boxes for fine tuning. + 通過使用滑鼠拖動手柄來調整方向光源的方向,或使用旋轉框進行微調。 - + Direction 方向 - - - q1 - q1 - - - - <html><head/><body><p>z</p></body></html> - <html><head/><body><p>z</p></body></html> - - - - q2 - q2 - - - - q3 - q3 - - - - y - y - - - - q0 - q0 - - - - x - x - StdCmdToggleTransparency @@ -13369,18 +13345,18 @@ the region are non-opaque. Lock toolbars so they are no longer moveable - Lock toolbars so they are no longer moveable + 鎖定工具欄,使其不再可移動 StdCmdProperties - + Properties 性質 - + Show the property view, which displays the properties of the selected object. Show the property view, which displays the properties of the selected object. @@ -13433,13 +13409,13 @@ the region are non-opaque. &Reload stylesheet - &Reload stylesheet + &重新載入樣式表 Reloads the current stylesheet - Reloads the current stylesheet + 重新載入目前樣式表 @@ -13447,12 +13423,12 @@ the region are non-opaque. Align to selection - Align to selection + 對齊到選擇範圍 Align the view with the selection - Align the view with the selection + 對齊視圖與選取項目 @@ -13485,7 +13461,7 @@ the region are non-opaque. Add another - Add another + 添加其它 @@ -13503,7 +13479,7 @@ the region are non-opaque. Theme customization - Theme customization + 自訂主題 @@ -13550,22 +13526,22 @@ the region are non-opaque. Hide extra tree view column - Internal Names. - Hide extra tree view column - Internal Names. + 隱藏樹狀視圖中的額外欄位 - 內部名稱。 Hide Internal Names - Hide Internal Names + 隱藏內部名稱 Icon size override, set to 0 for the default value. - Icon size override, set to 0 for the default value. + 圖示大小覆寫,設置為 0 以使用預設值。 Additional row spacing - Additional row spacing + 額外列間距 @@ -13580,22 +13556,22 @@ the region are non-opaque. Icon size - Icon size + 圖示大小 Additional spacing for tree view rows. Bigger values will increase row item heights. - Additional spacing for tree view rows. Bigger values will increase row item heights. + 樹狀視圖列的額外間距。較大的數值將增加列項目的高度。 This section lets you customize your current theme. The offered settings are optional for theme developers so they may or may not have an effect in your current theme. - This section lets you customize your current theme. The offered settings are optional for theme developers so they may or may not have an effect in your current theme. + 此部分讓您自訂當前主題。提供的設置對主題開發者來說是可選的,因此可能對您當前的主題有影響,也可能沒有。 If enabled, show an eye icon before the tree view items, showing their visibility status. When clicked the visibility is toggled. - If enabled, show an eye icon before the tree view items, showing their visibility status. When clicked the visibility is toggled. + 若啟用,會在樹狀視圖項目前顯示一個眼睛圖標,用於顯示其可見性狀態。點擊圖標可切換可見性。 @@ -13605,7 +13581,7 @@ the region are non-opaque. Hide header with column names from the tree view. - Hide header with column names from the tree view. + 隱藏樹狀視圖中的行名稱標題。 @@ -13615,7 +13591,7 @@ the region are non-opaque. Hide scroll bar from the tree view, scrolling will still be possible using mouse wheel. - Hide scroll bar from the tree view, scrolling will still be possible using mouse wheel. + 隱藏樹狀視圖中的捲軸,仍可使用滑鼠滾輪進行捲動。 @@ -13625,12 +13601,12 @@ the region are non-opaque. Hide column with object description in tree view. - Hide column with object description in tree view. + 將樹狀檢視中的物件描述欄隱藏。 Hide description - Hide description + 隱藏描述 @@ -13670,7 +13646,7 @@ the region are non-opaque. Automatically hide overlayed dock panels when in non 3D view (like TechDraw or Spreadsheet). - Automatically hide overlayed dock panels when in non 3D view (like TechDraw or Spreadsheet). + 在非 3D 視圖(如 TechDraw 或 Spreadsheet)中自動隱藏覆蓋的停靠面板。 @@ -13703,12 +13679,12 @@ the region are non-opaque. Create a variable set - Create a variable set + 建立一個變數集合 A Variable Set is an object that maintains a set of properties to be used as variables. - A Variable Set is an object that maintains a set of properties to be used as variables. + 一個變數集合是一個物件,用於維護作為變數使用的一組屬性。 @@ -13716,13 +13692,13 @@ the region are non-opaque. &Units converter... - &Units converter... + &單位轉換器... Start the units converter - Start the units converter + 啟動單位轉換器 diff --git a/src/Gui/MainWindow.cpp b/src/Gui/MainWindow.cpp index 798ec1e463..7f7e28c4fd 100644 --- a/src/Gui/MainWindow.cpp +++ b/src/Gui/MainWindow.cpp @@ -1917,13 +1917,18 @@ void MainWindow::startSplasher() GetGroup("BaseApp")->GetGroup("Preferences")->GetGroup("General"); // first search for an external image file if (hGrp->GetBool("ShowSplasher", true)) { - d->splashscreen = new SplashScreen(this->splashImage()); + const auto isWayland = qGuiApp->platformName() == QLatin1String("wayland"); + const auto flags = isWayland ? Qt::WindowFlags() : Qt::WindowStaysOnTopHint | Qt::X11BypassWindowManagerHint; + d->splashscreen = new SplashScreen(this->splashImage(), flags); if (!hGrp->GetBool("ShowSplasherMessages", false)) { d->splashscreen->setShowMessages(false); } d->splashscreen->show(); + if (!isWayland) { + QApplication::processEvents(); + } } else { d->splashscreen = nullptr; @@ -1933,11 +1938,24 @@ void MainWindow::startSplasher() void MainWindow::stopSplasher() { - if (d->splashscreen) { - d->splashscreen->finish(this); - delete d->splashscreen; - d->splashscreen = nullptr; + const auto isWayland = qGuiApp->platformName() == QLatin1String("wayland"); + if (isWayland) { + if (d->splashscreen) { + d->splashscreen->finish(this); + d->splashscreen->deleteLater(); + d->splashscreen = nullptr; + } + return; } + + QApplication::processEvents(); + QTimer::singleShot(3000, this, [this]() { + if (d->splashscreen) { + d->splashscreen->finish(this); + d->splashscreen->deleteLater(); + d->splashscreen = nullptr; + } + }); } QPixmap MainWindow::aboutImage() const diff --git a/src/Gui/PreferencePages/DlgSettingsCacheDirectory.ui b/src/Gui/PreferencePages/DlgSettingsCacheDirectory.ui index 132dccb3c1..a7b4eb602f 100644 --- a/src/Gui/PreferencePages/DlgSettingsCacheDirectory.ui +++ b/src/Gui/PreferencePages/DlgSettingsCacheDirectory.ui @@ -48,7 +48,7 @@ - + :/icons/document-open.svg:/icons/document-open.svg @@ -198,7 +198,7 @@ - + diff --git a/src/Gui/PreferencePages/DlgSettingsLightSources.ui b/src/Gui/PreferencePages/DlgSettingsLightSources.ui index e84de2c26e..bdaca32b56 100644 --- a/src/Gui/PreferencePages/DlgSettingsLightSources.ui +++ b/src/Gui/PreferencePages/DlgSettingsLightSources.ui @@ -178,19 +178,6 @@ 2 - - - - Qt::Horizontal - - - - 0 - 0 - - - - @@ -248,6 +235,19 @@ + + + + Qt::Horizontal + + + + 0 + 0 + + + + diff --git a/src/Gui/PreferencePages/DlgSettingsNavigation.ui b/src/Gui/PreferencePages/DlgSettingsNavigation.ui index 7ca82de64d..afcd9db072 100644 --- a/src/Gui/PreferencePages/DlgSettingsNavigation.ui +++ b/src/Gui/PreferencePages/DlgSettingsNavigation.ui @@ -145,6 +145,7 @@ 240 + 16777215 diff --git a/src/Gui/StartupProcess.cpp b/src/Gui/StartupProcess.cpp index 7b7e131410..b91b0d7e1e 100644 --- a/src/Gui/StartupProcess.cpp +++ b/src/Gui/StartupProcess.cpp @@ -178,13 +178,8 @@ void StartupProcess::setThemePaths() QIcon::setThemeSearchPaths(searchPaths); } - // KDE file dialog needs icons from the desktop theme - QIcon::setFallbackThemeName(QIcon::themeName()); - std::string name = hTheme->GetASCII("Name"); - if (name.empty()) { - QIcon::setThemeName(QLatin1String("FreeCAD-default")); - } else { + if (!name.empty()) { QIcon::setThemeName(QString::fromLatin1(name.c_str())); } } @@ -217,6 +212,7 @@ void StartupPostProcess::setLoadFromPythonModule(bool value) void StartupPostProcess::execute() { + showSplashScreen(); setWindowTitle(); setProcessMessages(); setAutoSaving(); @@ -425,7 +421,7 @@ bool StartupPostProcess::hiddenMainWindow() const return hidden; } -void StartupPostProcess::showMainWindow() +void StartupPostProcess::showSplashScreen() { bool hidden = hiddenMainWindow(); @@ -433,7 +429,10 @@ void StartupPostProcess::showMainWindow() if (!hidden && !loadFromPythonModule) { mainWindow->startSplasher(); } +} +void StartupPostProcess::showMainWindow() +{ // running the GUI init script try { Base::Console().Log("Run Gui init script\n"); diff --git a/src/Gui/StartupProcess.h b/src/Gui/StartupProcess.h index 75a2c3a824..eb9b007c71 100644 --- a/src/Gui/StartupProcess.h +++ b/src/Gui/StartupProcess.h @@ -74,6 +74,7 @@ private: void setImportImageFormats(); bool hiddenMainWindow() const; void showMainWindow(); + void showSplashScreen(); void activateWorkbench(); void checkParameters(); diff --git a/src/Gui/Tree.cpp b/src/Gui/Tree.cpp index 57f389984b..01d39314ff 100644 --- a/src/Gui/Tree.cpp +++ b/src/Gui/Tree.cpp @@ -1677,10 +1677,6 @@ void TreeWidget::keyPressEvent(QKeyEvent* event) void TreeWidget::mousePressEvent(QMouseEvent* event) { - QTreeWidget::mousePressEvent(event); - - // Handle the visibility icon after the normal event processing to not interfere with - // the selection logic. if (isVisibilityIconEnabled()) { QTreeWidgetItem* item = itemAt(event->pos()); if (item && item->type() == TreeWidget::ObjectType && event->button() == Qt::LeftButton) { @@ -1728,12 +1724,11 @@ void TreeWidget::mousePressEvent(QMouseEvent* event) visible = obj->Visibility.getValue(); obj->Visibility.setValue(!visible); } - - event->setAccepted(true); - return; } } } + + QTreeWidget::mousePressEvent(event); } void TreeWidget::mouseDoubleClickEvent(QMouseEvent* event) diff --git a/src/Gui/View3DInventorViewer.cpp b/src/Gui/View3DInventorViewer.cpp index 28a2692382..00df0859f9 100644 --- a/src/Gui/View3DInventorViewer.cpp +++ b/src/Gui/View3DInventorViewer.cpp @@ -127,9 +127,9 @@ #include "Utilities.h" -FC_LOG_LEVEL_INIT("3DViewer",true,true) +FC_LOG_LEVEL_INIT("3DViewer", true, true) -//#define FC_LOGGING_CB +// #define FC_LOGGING_CB using namespace Gui; @@ -656,11 +656,10 @@ static QCursor createCursor(QBitmap &bitmap, QBitmap &mask, int hotX, int hotY, Q_UNUSED(dpr) #endif #ifdef HAS_QTBUG_95434 - QPixmap pixmap; if (qGuiApp->platformName() == QLatin1String("wayland")) { QImage img = bitmap.toImage(); img.convertTo(QImage::Format_ARGB32); - pixmap = QPixmap::fromImage(img); + QPixmap pixmap = QPixmap::fromImage(img); pixmap.setMask(mask); return QCursor(pixmap, hotX, hotY); } @@ -3358,7 +3357,7 @@ void View3DInventorViewer::alignToSelection() return; } - const auto selection = Selection().getSelection(); + const auto selection = Selection().getSelection(nullptr, ResolveMode::NoResolve); // Empty selection if (selection.empty()) { @@ -3373,13 +3372,19 @@ void View3DInventorViewer::alignToSelection() // Get the geo feature App::GeoFeature* geoFeature = nullptr; App::ElementNamePair elementName; - App::GeoFeature::resolveElement(selection[0].pObject, selection[0].SubName, elementName, false, App::GeoFeature::ElementNameType::Normal, nullptr, nullptr, &geoFeature); + App::GeoFeature::resolveElement(selection[0].pObject, selection[0].SubName, elementName, true, App::GeoFeature::ElementNameType::Normal, nullptr, nullptr, &geoFeature); if (!geoFeature) { return; } + const auto globalPlacement = App::GeoFeature::getGlobalPlacement(selection[0].pResolvedObject, selection[0].pObject, elementName.oldName); + const auto rotation = globalPlacement.getRotation() * geoFeature->Placement.getValue().getRotation().inverse(); + const auto splitSubName = Base::Tools::splitSubName(elementName.oldName); + const auto geoFeatureSubName = !splitSubName.empty() ? splitSubName.back() : ""; + Base::Vector3d direction; - if (geoFeature->getCameraAlignmentDirection(direction, selection[0].SubName)) { + if (geoFeature->getCameraAlignmentDirection(direction, geoFeatureSubName.c_str())) { + rotation.multVec(direction, direction); const auto orientation = SbRotation(SbVec3f(0, 0, 1), Base::convertTo(direction)); setCameraOrientation(orientation); } diff --git a/src/Gui/Widgets.cpp b/src/Gui/Widgets.cpp index 8b7e122c48..e3b618a0c6 100644 --- a/src/Gui/Widgets.cpp +++ b/src/Gui/Widgets.cpp @@ -1356,9 +1356,10 @@ void PropertyListEditor::highlightCurrentLine() if (!isReadOnly()) { QTextEdit::ExtraSelection selection; - QColor lineColor = QColor(Qt::yellow).lighter(160); + QPalette palette = style()->standardPalette(); + selection.format.setBackground(palette.highlight().color()); + selection.format.setForeground(palette.highlightedText().color()); - selection.format.setBackground(lineColor); selection.format.setProperty(QTextFormat::FullWidthSelection, true); selection.cursor = textCursor(); selection.cursor.clearSelection(); diff --git a/src/Main/MainCmd.cpp b/src/Main/MainCmd.cpp index 0a5aeac0d4..ae23df7e20 100644 --- a/src/Main/MainCmd.cpp +++ b/src/Main/MainCmd.cpp @@ -51,17 +51,8 @@ using App::Application; using Base::Console; const char sBanner[] = - "(c) Juergen Riegel, Werner Mayer, Yorik van Havre and others 2001-2024\n" - "FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n" - "FreeCAD wouldn't be possible without FreeCAD community.\n" - " ##### #### ### #### \n" - " # # # # # # \n" - " # ## #### #### # # # # # \n" - " #### # # # # # # # ##### # # \n" - " # # #### #### # # # # # \n" - " # # # # # # # # # ## ## ##\n" - " # # #### #### ### # # #### ## ## ##\n\n"; - + "(C) 2001-2024 FreeCAD contributors\n" + "FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n\n"; int main(int argc, char** argv) { diff --git a/src/Main/MainGui.cpp b/src/Main/MainGui.cpp index 36087cffd6..d56d1a842c 100644 --- a/src/Main/MainGui.cpp +++ b/src/Main/MainGui.cpp @@ -61,16 +61,8 @@ void PrintInitHelp(); const char sBanner[] = - "\xc2\xa9 Juergen Riegel, Werner Mayer, Yorik van Havre and others 2001-2024\n" - "FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n" - "FreeCAD wouldn't be possible without FreeCAD community.\n" - " ##### #### ### #### \n" - " # # # # # # \n" - " # ## #### #### # # # # # \n" - " #### # # # # # # # ##### # # \n" - " # # #### #### # # # # # \n" - " # # # # # # # # # ## ## ##\n" - " # # #### #### ### # # #### ## ## ##\n\n"; + "(C) 2001-2024 FreeCAD contributors\n" + "FreeCAD is free and open-source software licensed under the terms of LGPL2+ license.\n\n"; #if defined(_MSC_VER) void InitMiniDumpWriter(const std::string&); @@ -106,7 +98,9 @@ private: int main(int argc, char** argv) { #if defined(FC_OS_LINUX) || defined(FC_OS_BSD) - setlocale(LC_ALL, ""); // use native environment settings + setlocale(LC_ALL, ""); // use native environment settings + setlocale(LC_NUMERIC, "C"); // except for numbers to not break XML import + // See https://github.com/FreeCAD/FreeCAD/issues/16724 // Make sure to setup the Qt locale system before setting LANG and LC_ALL to C. // which is needed to use the system locale settings. diff --git a/src/Mod/AddonManager/Addon.py b/src/Mod/AddonManager/Addon.py index fb33665760..a6cac82e26 100644 --- a/src/Mod/AddonManager/Addon.py +++ b/src/Mod/AddonManager/Addon.py @@ -30,6 +30,7 @@ from urllib.parse import urlparse from typing import Dict, Set, List, Optional from threading import Lock from enum import IntEnum, auto +import xml.etree.ElementTree import addonmanager_freecad_interface as fci from addonmanager_macro import Macro @@ -372,7 +373,14 @@ class Addon: """Read a given metadata file and set it as this object's metadata""" if os.path.exists(file): - metadata = MetadataReader.from_file(file) + try: + metadata = MetadataReader.from_file(file) + except xml.etree.ElementTree.ParseError: + fci.Console.PrintWarning( + "An invalid or corrupted package.xml file was found in the cache for" + ) + fci.Console.PrintWarning(f" {self.name}... ignoring the bad data.\n") + return self.set_metadata(metadata) self._clean_url() else: @@ -384,7 +392,14 @@ class Addon: mod_dir = os.path.join(self.mod_directory, self.name) installed_metadata_path = os.path.join(mod_dir, "package.xml") if os.path.isfile(installed_metadata_path): - self.installed_metadata = MetadataReader.from_file(installed_metadata_path) + try: + self.installed_metadata = MetadataReader.from_file(installed_metadata_path) + except xml.etree.ElementTree.ParseError: + fci.Console.PrintWarning( + "An invalid or corrupted package.xml file was found in installation of" + ) + fci.Console.PrintWarning(f" {self.name}... ignoring the bad data.\n") + return def set_metadata(self, metadata: Metadata) -> None: """Set the given metadata object as this object's metadata, updating the diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager.ts b/src/Mod/AddonManager/Resources/translations/AddonManager.ts index 759db128dd..50d1e28aa1 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager.ts @@ -2094,32 +2094,32 @@ installed addons will be checked for available updates - + Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} - + Downloaded icon for {} @@ -2154,23 +2154,23 @@ installed addons will be checked for available updates - + {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} @@ -2205,135 +2205,135 @@ installed addons will be checked for available updates - + Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored - + Workbenches list was updated. - + Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... - + Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} - + git status failed for {} - + Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' - + Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} - + Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! - + Retrieving macro description... - + Retrieving info from git - + Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_be.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_be.ts index 3c48f4ef5c..894712a975 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_be.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_be.ts @@ -2106,32 +2106,32 @@ installed addons will be checked for available updates Не атрымалася ўсталяваць дадатак {} - + Downloaded package.xml for {} Спампаваць package.xml для {} - + Failed to decode {} file for Addon '{}' Не атрымалася дэкадаваць файл {} для дадатку '{}' - + Any dependency information in this file will be ignored Любая інфармацыя пра залежнасці ў файле будзе прапушчаная - + Downloaded metadata.txt for {} Спампаваць metadata.txt для {} - + Downloaded requirements.txt for {} Спампаваць requirements.txt для {} - + Downloaded icon for {} Спампаваць гузік для {} @@ -2166,23 +2166,23 @@ installed addons will be checked for available updates Не атрымалася знайсці паказаны файл макраса {} (чакаецца ў {}) - + {}: Unrecognized internal workbench '{}' {}: Непрызнаны ўнутраны варштат '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Папярэджанне распрацоўкі дадатку: URL-адрас сховішча, які ўсталяваны ў файле package.xml для дадатку {} ({}) не адпавядае спасылку, з якога ён быў выняты ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Папярэджанне распрацоўкі дадатку: галіна сховішча, якая ўсталявана ў файле package.xml для дадатку {} ({}) не адпавядае галіне, з якой яна была вынята ({}) - - + + Got an error when trying to import {} Адбылася памылка пры спробе імпартаваць {} @@ -2217,138 +2217,138 @@ installed addons will be checked for available updates Памылка пры спробе выдаліць файл макраса {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Не атрымалася падлучыцца да GitHub. Калі ласка, праверце вашае падключэнне і налады проксі. - + WARNING: Duplicate addon {} ignored УВАГА: Паўторны дадатак {} прапушчаны - + Workbenches list was updated. Спіс варштатаў быў абноўлены. - + Git is disabled, skipping git macros Git адключаны, прапушчаны макрасы git - + Attempting to change non-git Macro setup to use git Спроба змяніць наладу макраса, які адрозніваецца ад git, на ўжыванне git - + An error occurred updating macros from GitHub, trying clean checkout... Адбылася памылка пры абнаўленні макрасаў з GitHub, спроба зрабіць clean checkout... - + Attempting to do a clean checkout... Спроба выканаць clean checkout... - + Clean checkout succeeded Паспяховы clean checkout - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Не атрымалася абнавіць макрасы з GitHub -- паспрабуйце ачысціць кэш Кіравання дадаткамі. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Памылка злучэння з Wiki, FreeCAD ў бягучы час не можа атрымаць спіс макрасаў Wiki - + Unable to fetch git updates for workbench {} Немагчыма атрымаць абнаўленні git для варштату {} - + git status failed for {} Памылка git status для {} - + Failed to read metadata from {name} Не атрымалася прачытаць метададзеныя з {name} - + Failed to fetch code for macro '{name}' Не атрымалася выняць код для макраса '{name}' - + Caching macro code... Кэшаванне коду макраса... - + Addon Manager: a worker process failed to complete while fetching {name} Кіраванне дадаткамі: працоўнаму працэсу не атрымалася выняць {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Для {num_macros} макрасаў скончыўся час чакання {num_failed} падчас апрацоўкі - + Addon Manager: a worker process failed to halt ({name}) Кіраванне дадаткамі: не атрымалася спыніць працоўны працэс ({name}) - + Getting metadata from macro {} Атрыманне метададзеных з макраса {} - + Timeout while fetching metadata for macro {} Выйшаў час чакання пры выманні метададзеных з макрасу {} - + Failed to kill process for macro {}! Не атрымалася завяршыць працэс для макраса {}! - + Retrieving macro description... Атрыманне апісання макрасу... - + Retrieving info from git Атрыманне інфармацыі з git - + Retrieving info from wiki Атрыманне інфармацыі з вікі - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Не атрымалася атрымаць статыстыку па дадатку з {} -- дакладнай будзе толькі ўпарадкаванне па алфавіце - + Failed to get Addon score from '{}' -- sorting by score will fail Не атрымалася атрымаць ацэнкі дадаткаў з '{}' -- упарадкаванне па ацэнках завяршылася памылкай diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ca.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ca.ts index dea27fd011..c18421313c 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ca.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ca.ts @@ -2100,32 +2100,32 @@ es comprovarà si hi ha actualitzacions disponibles als complements instal·lats La instal·lació del complement {} ha fallat - + Downloaded package.xml for {} S'ha descarregat package.xml per {} - + Failed to decode {} file for Addon '{}' La descodificació del fitxer {} pel complement '{}' ha fallat - + Any dependency information in this file will be ignored Qualsevol informació de dependències en aquest fitxer serà ignorada - + Downloaded metadata.txt for {} S'ha descarregat metadata.txt per {} - + Downloaded requirements.txt for {} S'ha descarregat requirements.txt per {} - + Downloaded icon for {} S'ha descarregat la icona per {} @@ -2160,23 +2160,23 @@ es comprovarà si hi ha actualitzacions disponibles als complements instal·lats No s'ha pogut localitzar el fitxer especificat per la macro {} (s'esperava {}) - + {}: Unrecognized internal workbench '{}' {}: Banc de treball intern no reconegut '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Advertiment per a desenvolupadors de complements: L'URL del repositori establert al fitxer package.xml pel complement {} ({}) no coincideix amb l'URL del qual s'ha obtingut ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Advertiment per a desenvolupadors de complements: La branca del repositori establerta al fitxer package.xml pel complement {} ({}) no coincideix amb la branca de la qual s'ha obtingut ({}) - - + + Got an error when trying to import {} S'ha produït un error en importar {} @@ -2211,138 +2211,138 @@ es comprovarà si hi ha actualitzacions disponibles als complements instal·lats S'ha produït un error durant l'eliminació del fitxer de la macro {}: - + Failed to connect to GitHub. Check your connection and proxy settings. No s'ha pogut connectar amb GitHub: Comprova la teva connexió i la configuració del servidor intermediari. - + WARNING: Duplicate addon {} ignored ADVERTÈNCIA: El complement {} duplicat s'ignora - + Workbenches list was updated. La llista dels bancs de treball s'ha actualitzat. - + Git is disabled, skipping git macros Git està deshabilitat, saltant les macros de git - + Attempting to change non-git Macro setup to use git S'està intentant canviar la configuració de la macro sense git per a utilitzar git - + An error occurred updating macros from GitHub, trying clean checkout... S'ha produït un error en actualitzar les macros de GitHub, s'està intentant netejar el checkout... - + Attempting to do a clean checkout... S'està intentant fer un checkout net... - + Clean checkout succeeded Checkout net exitós - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Error en actualitzar les macros de GitHub -- intenti netejar la memòria cau del Gestor de complements. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error en connectar a la Wiki, FreeCAD no pot recuperar la llista de macros de la wiki en aquest moment - + Unable to fetch git updates for workbench {} No es poden obtenir les actualitzacions de git pel banc de treball {} - + git status failed for {} Ha fallat git status per {} - + Failed to read metadata from {name} La lectura de metadades de {name} ha fallat - + Failed to fetch code for macro '{name}' No s'ha pogut obtenir el codi per la macro '{name}' - + Caching macro code... Desant el codi de la macro a la memòria cau... - + Addon Manager: a worker process failed to complete while fetching {name} Gestor de complements: no s'ha pogut completar un procés de treball mentre s'obté {name} - + Out of {num_macros} macros, {num_failed} timed out while processing De {num_macros} macros, {num_failed} s'han bloquejat durant el processament - + Addon Manager: a worker process failed to halt ({name}) Gestor de complements: no s'ha pogut aturar un procés de treball ({name}) - + Getting metadata from macro {} Obtenint metadades de la macro {} - + Timeout while fetching metadata for macro {} S'ha esgotat el temps durant l'obtenció de metadades per a la macro {} - + Failed to kill process for macro {}! No s'ha pogut matar el procés per a la macro {}! - + Retrieving macro description... S'està recuperant la descripció de la macro... - + Retrieving info from git S'està recuperant informació de git - + Retrieving info from wiki S'està recuperant informació de la wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate No s'han pogut obtenir les estadístiques del complement de {} -- només l'ordenació alfabètica serà precisa - + Failed to get Addon score from '{}' -- sorting by score will fail No s'ha pogut obtenir la puntuació del complement de '{}' l'ordenació per puntuació fallarà diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_cs.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_cs.ts index d2ec642ba4..edf8c53c8e 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_cs.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_cs.ts @@ -2099,32 +2099,32 @@ nainstalované doplňky zkontrolovány, zda jsou k dispozici aktualizaceInstalace doplňku {} selhala - + Downloaded package.xml for {} Stažený package.xml pro {} - + Failed to decode {} file for Addon '{}' Nepodařilo se dekódovat {} soubor pro Addon '{}' - + Any dependency information in this file will be ignored Informace o závislosti v tomto souboru budou ignorovány - + Downloaded metadata.txt for {} Stažená metadata.txt pro {} - + Downloaded requirements.txt for {} Stažené požadavkys.txt pro {} - + Downloaded icon for {} Stažená ikona pro {} @@ -2159,23 +2159,23 @@ nainstalované doplňky zkontrolovány, zda jsou k dispozici aktualizaceNelze najít makrospecifikovaný soubor {} (očekáváno v {}) - + {}: Unrecognized internal workbench '{}' {}: Nerozpoznaný interní pracovní stůl '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Varování pro vývojáře doplňku: URL adresa repozitáře nastavená v souboru addon {} ({}) neodpovídá URL adrese, ze které byla načtena ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Varování pro vývojáře doplňku: větev repozitáře nastavená v souboru package.xml pro addon {} ({}) neodpovídá větvi, ze které byla načtena ({}) - - + + Got an error when trying to import {} Došlo k chybě při pokusu o import {} @@ -2210,137 +2210,137 @@ nainstalované doplňky zkontrolovány, zda jsou k dispozici aktualizaceChyba při pokusu o odstranění makrosouboru {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Nepodařilo se připojit k GitHubu. Zkontrolujte nastavení připojení a proxy serveru. - + WARNING: Duplicate addon {} ignored VAROVÁNÍ: Duplikovat doplněk {} ignorován - + Workbenches list was updated. Seznam pracovních prostředí byl aktualizován. - + Git is disabled, skipping git macros Git je zakázán, přeskakuji git makra - + Attempting to change non-git Macro setup to use git Pokouším se změnit nastavení negit makra pro použití gitu - + An error occurred updating macros from GitHub, trying clean checkout... Došlo k chybě při aktualizaci maker z GitHubu, pokusu o vyčištění pokladny... - + Attempting to do a clean checkout... Pokus o vyčištění pokladny... - + Clean checkout succeeded Vymazání platby bylo úspěšné - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Aktualizace maker z GitHubu se nezdařila – zkuste vymazat mezipaměť Správce doplňků. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Chyba při připojování k Wiki, FreeCAD momentálně nemůže načíst Wiki makro seznam - + Unable to fetch git updates for workbench {} Nelze načíst git aktualizace pro pracovní prostředí {} - + git status failed for {} git status selhal pro {} - + Failed to read metadata from {name} Nepodařilo se přečíst metadata z {name} - + Failed to fetch code for macro '{name}' Nepodařilo se načíst kód pro makro '{name}' - + Caching macro code... Ukládání makro kódu... - + Addon Manager: a worker process failed to complete while fetching {name} Správce doplňků: při načítání {name} se nepodařilo dokončit proces pracovníka - + Out of {num_macros} macros, {num_failed} timed out while processing Z {num_macros} maker vypršel časový limit {num_failed} při zpracování - + Addon Manager: a worker process failed to halt ({name}) Správce doplňků: proces pracovníka se nepodařilo zastavit ({name}) - + Getting metadata from macro {} Získávání metadat z makra {} - + Timeout while fetching metadata for macro {} Časový limit při načítání metadat pro makro {} - + Failed to kill process for macro {}! Nepodařilo se ukončit proces pro makro {}! - + Retrieving macro description... Načítání popisu makro... - + Retrieving info from git Načítání informací z gitu - + Retrieving info from wiki Načítání informací z wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Nepodařilo se získat statistiky doplňků z {} -- přesné bude pouze abecední řazení - + Failed to get Addon score from '{}' -- sorting by score will fail Nepodařilo se získat hodnocení doplňku z '{}' -- řazení podle skóre selže diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_da.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_da.ts index c3a0a96e45..35c69e95bc 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_da.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_da.ts @@ -2100,32 +2100,32 @@ installerede tilføjelser for opdateringer ifm. start af Tilføjelseshåndtering Installation af tilføjelsen {} mislykkedes - + Downloaded package.xml for {} Downloadet package.xml til {} - + Failed to decode {} file for Addon '{}' Mislykkedes at afkode {}-filen til tilføjelsen '{}' - + Any dependency information in this file will be ignored Enhver afhængighedsinformation i denne fil ignoreres - + Downloaded metadata.txt for {} Downloadet metadata.txt til {} - + Downloaded requirements.txt for {} Downloadet requirements.txt til {} - + Downloaded icon for {} Downloadet ikon til {} @@ -2160,23 +2160,23 @@ installerede tilføjelser for opdateringer ifm. start af Tilføjelseshåndtering Kunne ikke finde makrospecificeret fil {} (forventet på {}) - + {}: Unrecognized internal workbench '{}' {}: Ukendt internt arbejdsbord '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Tiløjelsesudvikleradvarsel: Repo-URL angivet i package.xml fil til tilføjelsen {} ({}) matcher ikke URL'en, den blev hentet fra ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Tiløjelsesudvikleradvarsel: Repo-grenen angivet i package.xml fil til tilføjelsen {} ({}) matcher ikke grenen, den blev hentet fra ({}) - - + + Got an error when trying to import {} Fik en fejl under forsøget på at importere {} @@ -2211,138 +2211,138 @@ installerede tilføjelser for opdateringer ifm. start af Tilføjelseshåndtering Fejl under forsøget på at fjerne makrofilen {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Kunne ikke oprette forbindelse til GitHub. Tjek forbindelsen og proxyindstillingerne. - + WARNING: Duplicate addon {} ignored ADVARSEL: Dublettilføjelsen {} ignoreret - + Workbenches list was updated. Arbejdsbordlisten er opdateret. - + Git is disabled, skipping git macros Git er deaktiveret, overspringer git-makroer - + Attempting to change non-git Macro setup to use git Forsøger at ændre ikke-git Makroopsætning for at bruge git - + An error occurred updating macros from GitHub, trying clean checkout... En fejl opstod under opdatering af makroer fra GitHub, forsøger ren tjekud... - + Attempting to do a clean checkout... Forsøger at foretage en ren tjekud... - + Clean checkout succeeded Ren tjekud lykkedes - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Mislykkedes at opdatere makroer fra GitHub – prøv at rydde Tilføjelseshåndtering-cachen. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Fejl ved tilslutning til Wiki. FreeCAD kan ikke p.t. hente Wiki-makrolisten - + Unable to fetch git updates for workbench {} Kan ikke hente git-opdateringer til arbejdsbordet {} - + git status failed for {} git-status mislykkedes for {} - + Failed to read metadata from {name} Kunne ikke læse metadata fra {name} - + Failed to fetch code for macro '{name}' Kunne ikke hente kode til makroen '{name}' - + Caching macro code... Cacher makrokode... - + Addon Manager: a worker process failed to complete while fetching {name} Tilføjelseshåndtering: En worker-proces kunne ikke færdiggøres under hentningen af {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Ud af {num_macros} makroer, fik {num_failed} timeout under behandling - + Addon Manager: a worker process failed to halt ({name}) Tilføjelseshåndtering: En worker-proces kunne ikke standse ({name}) - + Getting metadata from macro {} Henter metadata fra makroen {} - + Timeout while fetching metadata for macro {} Timeout under hentning af metadata til makroen {} - + Failed to kill process for macro {}! Mislykkedes at standse processen for makroen {}! - + Retrieving macro description... Henter makrobeskrivelse... - + Retrieving info from git Henter info fra git - + Retrieving info from wiki Henter info fra wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Kunne ikke hente tilføjelsesstatistik fra {} – kun alfabetisk sortering vil være præcis - + Failed to get Addon score from '{}' -- sorting by score will fail Kunne ikke få tilføjelsesscore fra '{}' – sortering efter score vil mislykkes diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_de.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_de.ts index 6e67d0f218..6db27edc6a 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_de.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_de.ts @@ -2100,32 +2100,32 @@ installierte Addons auf verfügbare Updates überprüft Installation des Addons {} fehlgeschlagen - + Downloaded package.xml for {} package.xml für {} heruntergeladen - + Failed to decode {} file for Addon '{}' Datei {} für Add-on '{}' konnte nicht dekodiert werden - + Any dependency information in this file will be ignored Alle Abhängigkeitsinformationen in dieser Datei werden ignoriert - + Downloaded metadata.txt for {} metadata.txt für {} heruntergeladen - + Downloaded requirements.txt for {} requirements.txt für {} heruntergeladen - + Downloaded icon for {} Symbol für {} heruntergeladen @@ -2160,23 +2160,23 @@ installierte Addons auf verfügbare Updates überprüft Datei {} konnte nicht gefunden werden (erwartet um {}) - + {}: Unrecognized internal workbench '{}' {}: Unbekannter interner Arbeitsbereich '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Add-on Entwickler Warnung: Die in der Datei package.xml für das Add-on {} ({}) angegebene Repository-URL stimmt nicht mit der URL überein, von der es abgerufen wurde ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Add-on Entwickler Warnung: Der in der package.xml-Datei für das Add-on {} ({}) angegebene Repository-Branch stimmt nicht mit dem Branch überein, aus dem es geholt wurde ({}) - - + + Got an error when trying to import {} Fehler beim Importieren von {} @@ -2211,138 +2211,138 @@ installierte Addons auf verfügbare Updates überprüft Fehler beim Entfernen der Makrodatei {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Verbindung zu GitHub fehlgeschlagen. Bitte die Verbindungs- und Proxy-Einstellungen überprüfen. - + WARNING: Duplicate addon {} ignored WARNUNG: Duplizieren des Addons {} wird ignoriert - + Workbenches list was updated. Die Liste der Arbeitsbereiche wurde aktualisiert. - + Git is disabled, skipping git macros Git ist deaktiviert, Git-Makros werden übersprungen - + Attempting to change non-git Macro setup to use git Änderungsversuch des Nicht-Git-Makro-Einstellung, um git zu verwenden - + An error occurred updating macros from GitHub, trying clean checkout... Fehler beim Aktualisieren von Makros von GitHub, sauberer Checkout-Versuch wird ausgeführt... - + Attempting to do a clean checkout... Sauberer Checkout-Versuch... - + Clean checkout succeeded Sauberer Checkout war erfolgreich - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Aktualisierung der GitHub Makros fehlgeschlagen -- Löschen des Caches des Addon-Managers versuchen. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Fehler beim Verbinden mit dem Wiki, FreeCAD kann die Wiki-Makroliste zu diesem Zeitpunkt nicht abrufen - + Unable to fetch git updates for workbench {} Git-Updates für den Arbeitsbereich {} können nicht abgerufen werden - + git status failed for {} git Status fehlgeschlagen für {} - + Failed to read metadata from {name} Fehler beim Lesen der Metadaten von {name} - + Failed to fetch code for macro '{name}' Fehler beim Abrufen des Codes für Makro '{name}' - + Caching macro code... Makro-Code wird zwischengespeichert... - + Addon Manager: a worker process failed to complete while fetching {name} Addon-Manager: Ein Arbeitsprozess konnte während des Abrufs von {name} nicht abgeschlossen werden - + Out of {num_macros} macros, {num_failed} timed out while processing Von {num_macros} Makros wurden {num_failed} während der Verarbeitung nicht rechtzeitig beendet - + Addon Manager: a worker process failed to halt ({name}) Addon-Manager: Ein Arbeitsprozess ({name}) konnte nicht angehalten werden - + Getting metadata from macro {} Herauslesen von Metadaten aus Makro {} - + Timeout while fetching metadata for macro {} Timeout beim Abrufen von Metadaten für Makro {} - + Failed to kill process for macro {}! Fehler beim Beenden des Prozesses für Makro {}! - + Retrieving macro description... Makro-Beschreibung wird abgerufen... - + Retrieving info from git Informationen werden von Git abgerufen - + Retrieving info from wiki Informationen werden aus den Wiki abgerufen - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Fehler beim Abrufen der Erweiterungs-Statistiken von {} -- nur alphabetisch sortieren wird genau sein - + Failed to get Addon score from '{}' -- sorting by score will fail Fehler beim Abrufen der Erweiterungs-Bewertungen von '{}' -- Sortierung nach Bewertung wird fehlschlagen diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_el.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_el.ts index 84c3c5dd7e..909931b86d 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_el.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_el.ts @@ -2101,32 +2101,32 @@ installed addons will be checked for available updates Η εγκατάσταση του Πρόσθετου {} απέτυχε - + Downloaded package.xml for {} Κατεβασμένο πακέτο.xml για {} - + Failed to decode {} file for Addon '{}' Αποτυχία αποκωδικοποίησης του αρχείου {} για το Πρόσθετο '{}' - + Any dependency information in this file will be ignored Οποιαδήποτε πληροφορία εξάρτησης σε αυτό το αρχείο θα αγνοηθεί - + Downloaded metadata.txt for {} Λήψη metadata.txt για {} - + Downloaded requirements.txt for {} Έγινε λήψη των απαιτήσεων.txt για {} - + Downloaded icon for {} Λήψη εικονιδίου για {} @@ -2161,23 +2161,23 @@ installed addons will be checked for available updates Αδύνατος ο εντοπισμός του αρχείου {} (αναμένεται στις {}) - + {}: Unrecognized internal workbench '{}' {}: Μη αναγνωρισμένος εσωτερικός πάγκος εργασίας '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Προειδοποίηση Πρόσθετου Προγραμματιστή: Το URL του Αποθετηρίου έχει οριστεί στο αρχείο package.xml για πρόσθετο {} ({}) δεν ταιριάζει με το URL που ανακτήθηκε από ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Προειδοποίηση Πρόσθετου Προγραμματιστή: Ο κλάδος αποθετηρίου που ορίστηκε στο αρχείο package.xml για πρόσθετο {} ({}) δεν ταιριάζει με τον κλάδο που ανακτήθηκε από ({}) - - + + Got an error when trying to import {} Παρουσιάστηκε σφάλμα κατά την προσπάθεια εισαγωγής του {} @@ -2212,138 +2212,138 @@ installed addons will be checked for available updates Σφάλμα κατά την αφαίρεση του αρχείου μακροεντολής {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Αποτυχία σύνδεσης στο GitHub. Ελέγξτε τη σύνδεσή σας και τις ρυθμίσεις διαμεσολαβητή. - + WARNING: Duplicate addon {} ignored ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Το διπλό πρόσθετο {} αγνοήθηκε - + Workbenches list was updated. Ενημερώθηκε η λίστα πάγκων εργασίας. - + Git is disabled, skipping git macros Το Git είναι απενεργοποιημένο, παράλειψη μακροεντολών git - + Attempting to change non-git Macro setup to use git Προσπάθεια αλλαγής μη git μακροεντολής για χρήση του git - + An error occurred updating macros from GitHub, trying clean checkout... Παρουσιάστηκε σφάλμα στην ενημέρωση των μακροεντολών από το GitHub, κατά την προσπάθεια Αποχώρησης… - + Attempting to do a clean checkout... Προσπάθεια καθαρισμού Αποχώρηση... - + Clean checkout succeeded Η κάθαρση ολοκληρώθηκε με επιτυχής έξοδος - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Αποτυχία ενημέρωσης μακροεντολών από το GitHub -- δοκιμάστε να καθαρίσετε την κρυφή μνήμη του Διαχειριστή Προσθέτων's. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Σφάλμα κατά τη σύνδεση με το Wiki, το FreeCAD δεν μπορεί να ανακτήσει τη λίστα μακροεντολών του Wiki αυτή τη στιγμή - + Unable to fetch git updates for workbench {} Δεν είναι δυνατή η ανάκτηση ενημερώσεων για τον πάγκο εργασίας {} - + git status failed for {} η κατάσταση git απέτυχε για {} - + Failed to read metadata from {name} Αποτυχία ανάγνωσης μεταδεδομένων από {name} - + Failed to fetch code for macro '{name}' Αποτυχία λήψης κώδικα για μακροεντολή '{name}' - + Caching macro code... Προσωρινός κωδικός μακροεντολής… - + Addon Manager: a worker process failed to complete while fetching {name} Διαχειριστής Πρόσθετων: μια διαδικασία εργασίας απέτυχε να ολοκληρωθεί κατά τη λήψη του {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Από {num_macros} μακροεντολές, {num_failed} έληξε το χρονικό όριο κατά την επεξεργασία - + Addon Manager: a worker process failed to halt ({name}) Διαχειριστής Πρόσθετων: μια διαδικασία εργασίας απέτυχε να σταματήσει ({name}) - + Getting metadata from macro {} Λήψη μεταδεδομένων από την μακροεντολή {} - + Timeout while fetching metadata for macro {} Λήξη χρονικού ορίου κατά την ανάκτηση μεταδεδομένων για μακροεντολή {} - + Failed to kill process for macro {}! Αποτυχία τερματισμού της διαδικασίας για τη μακροεντολή {}! - + Retrieving macro description... Ανάκτηση περιγραφής μακροεντολής... - + Retrieving info from git Ανάκτηση πληροφοριών από το git - + Retrieving info from wiki Ανάκτηση πληροφοριών από wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Αποτυχία λήψης στατιστικών στοιχείων Πρόσθετου από το {} -- μόνο η αλφαβητική ταξινόμηση θα είναι ακριβής - + Failed to get Addon score from '{}' -- sorting by score will fail Αποτυχία λήψης βαθμολογίας πρόσθετου από '{}' -- η ταξινόμηση κατά βαθμολογία θα αποτύχει diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_es-AR.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_es-AR.ts index 6c1ca498a4..faf10757bc 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_es-AR.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_es-AR.ts @@ -2098,32 +2098,32 @@ los complementos instalados se comprobarán si hay actualizaciones disponiblesLa instalación del complemento {} falló - + Downloaded package.xml for {} Se descargó package.xml para {} - + Failed to decode {} file for Addon '{}' Error al decodificar archivo {} para el complemento '{}' - + Any dependency information in this file will be ignored Cualquier información de dependencia en este archivo será ignorada - + Downloaded metadata.txt for {} Se descargó metadata.txt para {} - + Downloaded requirements.txt for {} Se descargó requirements.txt para {} - + Downloaded icon for {} Se descargó icono para {} @@ -2158,23 +2158,23 @@ los complementos instalados se comprobarán si hay actualizaciones disponiblesNo se pudo encontrar el archivo especificado macro {} (se esperaba en {}) - + {}: Unrecognized internal workbench '{}' {}: Banco de trabajo interno no reconocido '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Advertencia de desarrollador de complementos: la URL del repositorio establecida en el archivo package.xml para el complemento {} ({}) no coincide con la URL de la que fue obtenida ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Advertencia de desarrollador de complementos: la rama de repositorio establecida en el archivo package.xml para el complemento {} ({}) no coincide con la rama de la que fue obtenida ({}) - - + + Got an error when trying to import {} Se ha producido un error al intentar importar {} @@ -2209,138 +2209,138 @@ los complementos instalados se comprobarán si hay actualizaciones disponiblesError al intentar eliminar el archivo macro {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Error al conectar a GitHub. Compruebe su conexión y configuración de proxy. - + WARNING: Duplicate addon {} ignored ADVERTENCIA: Duplicar complemento {} ignorado - + Workbenches list was updated. Lista de bancos de trabajo actualizada. - + Git is disabled, skipping git macros Git está deshabilitado, omitiendo macros git - + Attempting to change non-git Macro setup to use git Intentando cambiar la configuración de macro no git para usar git - + An error occurred updating macros from GitHub, trying clean checkout... Se ha producido un error al actualizar macros desde GitHub, intentando limpiar el checkout... - + Attempting to do a clean checkout... Intentando hacer una comprobación limpia... - + Clean checkout succeeded Comprobación limpia exitosa - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Error al actualizar macros de GitHub -- intente limpiar la caché del administrador de complementos. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error al conectar a la Wiki, FreeCAD no puede recuperar la lista de macros de la Wiki en este momento - + Unable to fetch git updates for workbench {} No se pueden obtener actualizaciones de git para el banco de trabajo {} - + git status failed for {} git status falló para {} - + Failed to read metadata from {name} Error al leer los metadatos de {name} - + Failed to fetch code for macro '{name}' Error al obtener el código para el macro '{name}' - + Caching macro code... Código macro en caché... - + Addon Manager: a worker process failed to complete while fetching {name} Administrador de complementos: no se pudo completar un proceso al obtener {name} - + Out of {num_macros} macros, {num_failed} timed out while processing De {num_macros} macros, a {num_failed} se les agotó el tiempo durante el procesamiento - + Addon Manager: a worker process failed to halt ({name}) Administrador de complementos: un proceso de trabajo falló al detenerse ({name}) - + Getting metadata from macro {} Obteniendo metadatos de la macro {} - + Timeout while fetching metadata for macro {} Tiempo de espera agotado al buscar metadatos para la macro {} - + Failed to kill process for macro {}! ¡Error al matar el proceso para macro {}! - + Retrieving macro description... Recuperando descripción de macro... - + Retrieving info from git Recuperando información de git - + Retrieving info from wiki Recuperando información de la wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Error al obtener estadísticas del complemento de {} -- solo ordenar alfabeticamente será preciso - + Failed to get Addon score from '{}' -- sorting by score will fail No se pudo obtener la puntuación del complemento de '{}' -- ordenar por puntuación fallará diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_es-ES.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_es-ES.ts index 3b7450b36e..fe9096262e 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_es-ES.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_es-ES.ts @@ -2098,32 +2098,32 @@ se comprobarán los complementos instalados para ver si hay actualizaciones disp La instalación del complemento {} falló - + Downloaded package.xml for {} Se descargó package.xml para {} - + Failed to decode {} file for Addon '{}' Error al decodificar archivo {} para el complemento '{}' - + Any dependency information in this file will be ignored Cualquier información de dependencia en este archivo será ignorada - + Downloaded metadata.txt for {} Se descargó metadata.txt para {} - + Downloaded requirements.txt for {} Se descargó requirements.txt para {} - + Downloaded icon for {} Se descargó icono para {} @@ -2158,23 +2158,23 @@ se comprobarán los complementos instalados para ver si hay actualizaciones disp No se pudo encontrar el archivo especifico para la macro {} (se esperaba en {}) - + {}: Unrecognized internal workbench '{}' {}: Banco de trabajo interno no reconocido '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Advertencia de desarrollador de complementos: la URL del repositorio establecida en el archivo package.xml para el complemento {} ({}) no coincide con la URL de la que fue obtenida ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Advertencia de desarrollador de complementos: la rama de repositorio establecida en el archivo package.xml para el complemento {} ({}) no coincide con la rama de la que fue obtenida ({}) - - + + Got an error when trying to import {} Se ha producido un error al intentar importar {} @@ -2209,138 +2209,138 @@ se comprobarán los complementos instalados para ver si hay actualizaciones disp Error al intentar eliminar el archivo macro {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Error al conectar a GitHub. Compruebe su conexión y configuración de proxy. - + WARNING: Duplicate addon {} ignored ADVERTENCIA: Duplicar complemento {} ignorado - + Workbenches list was updated. Lista de bancos de trabajo actualizada. - + Git is disabled, skipping git macros Git está deshabilitado, omitiendo macros git - + Attempting to change non-git Macro setup to use git Intentando cambiar la configuración de macro no git para usar git - + An error occurred updating macros from GitHub, trying clean checkout... Se ha producido un error al actualizar macros desde GitHub, intentando limpiar el checkout... - + Attempting to do a clean checkout... Intentando hacer una comprobación limpia... - + Clean checkout succeeded Comprobación limpia exitosa - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Error al actualizar macros de GitHub -- intente limpiar la caché del administrador de complementos. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error al conectar a la Wiki, FreeCAD no puede recuperar la lista de macros de la Wiki en este momento - + Unable to fetch git updates for workbench {} No se pueden obtener actualizaciones de git para el banco de trabajo {} - + git status failed for {} git status falló para {} - + Failed to read metadata from {name} Error al leer los metadatos de {name} - + Failed to fetch code for macro '{name}' Error al obtener el código para el macro '{name}' - + Caching macro code... Código macro en caché... - + Addon Manager: a worker process failed to complete while fetching {name} Administrador de complementos: no se pudo completar un proceso al obtener {name} - + Out of {num_macros} macros, {num_failed} timed out while processing De {num_macros} macros, a {num_failed} se les agotó el tiempo durante el procesamiento - + Addon Manager: a worker process failed to halt ({name}) Administrador de complementos: un proceso de trabajo falló al detenerse ({name}) - + Getting metadata from macro {} Obteniendo metadatos de la macro {} - + Timeout while fetching metadata for macro {} Tiempo de espera agotado al buscar metadatos para la macro {} - + Failed to kill process for macro {}! ¡Error al matar el proceso para macro {}! - + Retrieving macro description... Recuperando descripción de macro... - + Retrieving info from git Recuperando información de git - + Retrieving info from wiki Recuperando información de la wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate No se pudieron obtener las estadísticas del complemento de {} -- solo ordenar alfabeticamente será preciso - + Failed to get Addon score from '{}' -- sorting by score will fail No se pudo obtener la puntuación del complemento de '{}' -- ordenar por puntuación fallará diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_eu.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_eu.ts index 660ff3fe0e..e379aec6b7 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_eu.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_eu.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates {} gehigarriaren instalazioak huts egin du - + Downloaded package.xml for {} {} gehigarriaren package.xml fitxategia deskargatu da - + Failed to decode {} file for Addon '{}' Huts egin du '{}' gehigarrirako {} fitxategia deskodetzeak - + Any dependency information in this file will be ignored Fitxategi honek duen mendekotasun-informazioari ez ikusiarena egingo zaio - + Downloaded metadata.txt for {} {} gehigarriaren metadata.txt deskargatu da - + Downloaded requirements.txt for {} {} gehigarriaren requirements.txt deskargatu da - + Downloaded icon for {} {}-rako ikonoa deskargatu da @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Ezin da makroak zehaztutako {} fitxategia aurkitu ({} kokalekuan espero zen) - + {}: Unrecognized internal workbench '{}' {}: Ezagutzen ez den barneko lan-mahaia '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Gehigarrien garatzaileen abisua: {} ({}) gehigarrirako package.xml fitxategian ezarri den biltegi URLa ez dator bat gehigarria atzitu zeneko URLarekin ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Gehigarrien garatzaileen abisua: {} ({}) gehigarrirako package.xml fitxategian ezarri den biltegi-adarra ez dator bat gehigarria atzitu zeneko adarrarekin ({}) - - + + Got an error when trying to import {} Errorea gertatu da {} inportatzen saiatzean @@ -2211,137 +2211,137 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Huts egin du GitHub gunearekin konektatzeak. Egiaztatu konexioa eta proxy-ezarpenak. - + WARNING: Duplicate addon {} ignored ABISUA: Bikoiztutako {} gehigarriari ez ikusiarena egin zaio - + Workbenches list was updated. Lan-mahaien zerrenda eguneratu da. - + Git is disabled, skipping git macros Git desgaituta dago, git makroak salatzen - + Attempting to change non-git Macro setup to use git Git ez diren makroen konfigurazioa aldatzen git erabili dezaten - + An error occurred updating macros from GitHub, trying clean checkout... Errorea gertatu da makroak GitHub gunetik eguneratzean, deskarga garbia saiatzen... - + Attempting to do a clean checkout... Deskarga garbia saiatzen... - + Clean checkout succeeded Deskarga garbia ongi gauzatu da - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Huts egin du GitHub guneko makroak egunerateak -- saiatu gehigarrien kudeatzailearen cachea garbitzen. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Errorea wikiarekin konektatzean, FreeCADek ezin du wikiko makro-zerrenda eskuratu momentu honetan - + Unable to fetch git updates for workbench {} Ezin izan dira {} lan-mahairako git eguneraketak atzitu - + git status failed for {} git status eragiketak huts egin du {} kasuan - + Failed to read metadata from {name} Huts egin du {name}(e)ko metadatuen irakurketak - + Failed to fetch code for macro '{name}' Huts egin du '{name}' makroaren kodea eskuratzeak - + Caching macro code... Makro-kodea cachean gordetzen... - + Addon Manager: a worker process failed to complete while fetching {name} Gehigarrien kudeatzailea: langile-prozesu bat osatzeak huts egin du {name} atzitzean - + Out of {num_macros} macros, {num_failed} timed out while processing {num_macros} makrotatik, {num_failed} denboraz iraungi dira prozesatzean - + Addon Manager: a worker process failed to halt ({name}) Gehigarrien kudeatzailea: langile-prozesu bat gelditzeak huts egin du ({name}) - + Getting metadata from macro {} Metadatuak eskuratzen {} makrotik - + Timeout while fetching metadata for macro {} Denbora iraungi da {} makroaren metadatuak atzitzean - + Failed to kill process for macro {}! Huts egin du {} makroaren prozesua hiltzeak. - + Retrieving macro description... Makroen deskribapena atzitzen... - + Retrieving info from git Informazioa atzitzen git biltegitik - + Retrieving info from wiki Informazioa atzitzen wikitik - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_fi.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_fi.ts index befc07cb28..6edba58ede 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_fi.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_fi.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_fr.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_fr.ts index a0e4b3a634..97cb7960da 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_fr.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_fr.ts @@ -2100,32 +2100,32 @@ D'autres paquets Python dont dépendent ces paquets peuvent également avoir ét L'installation de l'extension {} a échoué. - + Downloaded package.xml for {} Le fichier package.xml a été téléchargé pour {} - + Failed to decode {} file for Addon '{}' Impossible de décoder le fichier {} pour l'extension "{}" - + Any dependency information in this file will be ignored Toutes les informations de dépendance dans ce fichier seront ignorées - + Downloaded metadata.txt for {} Le fichier metadata.txt a été téléchargé pour {} - + Downloaded requirements.txt for {} Le fichier requirements.txt a été téléchargé pour {} - + Downloaded icon for {} L'icône a été téléchargée pour {} @@ -2160,23 +2160,23 @@ D'autres paquets Python dont dépendent ces paquets peuvent également avoir ét Impossible de localiser le fichier {} spécifié par la macro (attendu à {}) - + {}: Unrecognized internal workbench '{}' {} : atelier interne non reconnu "{}" - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Avertissement du développeur de l'extension : l'URL du répertoire défini dans le fichier package.xml pour l'extension {} ({}) ne correspond pas à l'URL depuis laquelle il a été récupéré ({}). - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Avertissement du développeur de l'extension : la branche du répertoire définie dans le fichier package.xml pour l'extension {} ({}) ne correspond pas à la branche depuis laquelle il a été récupéré ({}). - - + + Got an error when trying to import {} Une erreur s'est produite lors de l'importation de {} @@ -2211,135 +2211,135 @@ D'autres paquets Python dont dépendent ces paquets peuvent également avoir ét Erreur lors de la suppression du fichier de la macro {} : - + Failed to connect to GitHub. Check your connection and proxy settings. Impossible de connecter à GitHub. Vérifiez vos paramètres de connexion et de proxy. - + WARNING: Duplicate addon {} ignored ATTENTION : l'extension dupliquée {} est ignorée. - + Workbenches list was updated. La liste des ateliers a été mise à jour. - + Git is disabled, skipping git macros Git est désactivé, les macros sous git sont ignorées. - + Attempting to change non-git Macro setup to use git Tentative de changement de la configuration des macro non-git pour utiliser git - + An error occurred updating macros from GitHub, trying clean checkout... Une erreur est survenue lors de la mise à jour des macros depuis GitHub, en tentant un checkout propre... - + Attempting to do a clean checkout... Tentative de faire un checkout propre... - + Clean checkout succeeded Checkout propre réussi - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Impossible de mettre à jour des macros depuis GitHub. Essayez de vider le cache du gestionnaire des extensions. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Erreur de connexion au wiki : FreeCAD ne peut pas récupérer la liste des macros du wiki pour le moment - + Unable to fetch git updates for workbench {} Impossible de récupérer les mises à jour sous git pour l'atelier {} - + git status failed for {} le statut de git a échoué pour {} - + Failed to read metadata from {name} Impossible de lire les métadonnées de {name} - + Failed to fetch code for macro '{name}' Impossible de récupérer le code de la macro "{name}" - + Caching macro code... Mise en cache du code de la macro... - + Addon Manager: a worker process failed to complete while fetching {name} Gestionnaire des extensions : un processus n'a pas abouti lors de la récupération de {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Sur {num_macros} macros, {num_failed} sont tombées en panne pendant le traitement - + Addon Manager: a worker process failed to halt ({name}) Gestionnaire des extensions : un processus n'a pas pu arrêter ({name}) - + Getting metadata from macro {} Récupération des métadonnées de la macro {} - + Timeout while fetching metadata for macro {} Délai de récupération des métadonnées de la macro {} - + Failed to kill process for macro {}! Impossible d'arrêter la macro {} ! - + Retrieving macro description... Récupération de la description de la macro... - + Retrieving info from git Récupération des informations depuis git - + Retrieving info from wiki Récupération des informations depuis le wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Impossible de récupérer les statistiques de l'extension {}, seul le tri par ordre alphabétique sera correct. - + Failed to get Addon score from '{}' -- sorting by score will fail Impossible de récupérer le score de l'extension de "{}". Le tri par score échouera. diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_hr.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_hr.ts index d46469eb71..9308cc289b 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_hr.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_hr.ts @@ -2103,32 +2103,32 @@ installed addons will be checked for available updates Instalacija Dodatka {} nije uspjela. - + Downloaded package.xml for {} Preuzet package.xml za {} - + Failed to decode {} file for Addon '{}' Dekodiranje {} datoteke za Dodatak '{}' nije uspjelo - + Any dependency information in this file will be ignored Sve informacije o zavisnosti u ovoj datoteci će biti ignorirane - + Downloaded metadata.txt for {} Preuzet metadata.txt za {} - + Downloaded requirements.txt for {} Preuzet requirements.txt za {} - + Downloaded icon for {} Preuzeta ikona za {} @@ -2163,23 +2163,23 @@ installed addons will be checked for available updates Nije moguće locirati datoteku navedenu u makro naredbi {} (trebala je biti u {}) - + {}: Unrecognized internal workbench '{}' {}: Neprepoznati interni Radni stol '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Upozorenje za programere Dodatka: URL adresa spremišta zadana u package.xml datoteci za dodatak {} ({}) ne odgovara URL adresi sa koje je preuzet ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Upozorenje za programere Dodatka: Grana-adresa spremišta zadana u package.xml datoteci za dodatak {} ({}) ne odgovara Grana-adresi sa koje je preuzet ({}) - - + + Got an error when trying to import {} Greška pri pokušaju uvoza {} @@ -2214,135 +2214,135 @@ installed addons will be checked for available updates Greška pri pokušaju uklanjanja datoteke makro naredbe {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Povezivanje sa GitHub-om nije uspjelo. Provjeri podešavanja veze i proksija. - + WARNING: Duplicate addon {} ignored UPOZORENJE: Duplikat dodatka {} je ignoriran - + Workbenches list was updated. Popis radnih stolova je ažuriran. - + Git is disabled, skipping git macros Git je onemogućen, preskaču se git makro naredbe - + Attempting to change non-git Macro setup to use git Pokušaj promjene postavki ne git makro naredbi da koriste git - + An error occurred updating macros from GitHub, trying clean checkout... Došlo je do greške pri ažuriranju makro naredbi a sa GitHub-a, pokušavam čistu provjeru... - + Attempting to do a clean checkout... Pokušavam napraviti čistu provjeru... - + Clean checkout succeeded Čista provjera je uspjela - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Nije uspjelo ažurirati makro naredbe s GitHuba. Pokušajte izbrisati predmemoriju Upravitelja dodataka. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Čini se da je problem povezivanje s Wiki-em, FreeCAD trenutačno ne može dohvatiti popis makronaredbi Wiki-a - + Unable to fetch git updates for workbench {} Nije moguće dohvatiti git ažuriranja za radni stol {} - + git status failed for {} git stanje nije uspjelo za {} - + Failed to read metadata from {name} Nije uspjelo čitanje metapodataka iz {name} - + Failed to fetch code for macro '{name}' Nije uspjelo preuzimanje koda za makro naredbu '{name}' - + Caching macro code... Osvježavanje koda makronaredbe... - + Addon Manager: a worker process failed to complete while fetching {name} Upravitelj dodataka: radni proces nije uspio da se završi prilikom preuzimanja {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Za {num_macros} makro naredbu je prekoračen je vremenski limit, {num_failed} tokom obrade - + Addon Manager: a worker process failed to halt ({name}) Upravitelj dodataka: radni proces nije uspio da se zaustavi {name}) - + Getting metadata from macro {} Preuzimanje metapodataka iz makro naredbe {} - + Timeout while fetching metadata for macro {} Isteklo je vrijeme za preuzimanje metapodataka za makro naredbu {} - + Failed to kill process for macro {}! Zaustavljanje procesa za makro naredbu {} nije uspjelo - + Retrieving macro description... Dohvaćanje opisa makro naredbe... - + Retrieving info from git Dohvaćanje informacije od git - + Retrieving info from wiki Dohvaćanje informacije od wiki-a - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Nije uspjelo dohvatiti statistike dodataka iz {} -- samo će abecedno sortiranje biti točno - + Failed to get Addon score from '{}' -- sorting by score will fail Nije uspjelo dohvatiti bodove dodataka iz '{}' -- sortiranje po bodovima neće biti uspješno. diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_hu.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_hu.ts index b6c27e55b7..074dd26f1c 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_hu.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_hu.ts @@ -2100,32 +2100,32 @@ a telepített bővítményeket a rendszer ellenőrzi az elérhető frissítések A {} bővítmény telepítése sikertelen - + Downloaded package.xml for {} Letöltött package.xml a(z) {} számára - + Failed to decode {} file for Addon '{}' Nem sikerült dekódolni a {} fájlt a '{}' hozzáadásához - + Any dependency information in this file will be ignored Az ebben a fájlban lévő függőségi információkat figyelmen kívül hagyjuk - + Downloaded metadata.txt for {} Letöltött metadata.txt a(z) {} részére - + Downloaded requirements.txt for {} Letöltött requirements.txt a(z) {} részére - + Downloaded icon for {} Letöltött ikon ehhez: {} @@ -2160,23 +2160,23 @@ a telepített bővítményeket a rendszer ellenőrzi az elérhető frissítések Nem találta a makró által megadott {} fájlt (a {}-nál kellett volna lennie) - + {}: Unrecognized internal workbench '{}' {}: Nem ismert belső munkafelület '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Bővítmény fejlesztői figyelmeztetés: A bővítmény {} ({}) package.xml fájlban megadott tároló URL címe nem egyezik az URL-címmel, ahonnan lehívásra került ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Bővítmény fejlesztői figyelmeztetés: A package.xml fájlban a {} ({}) bővítmény tárolt változata nem egyezik azzal a változattal, ahonnan lekérdezték ({}) - - + + Got an error when trying to import {} Hibát kapott, amikor megpróbálta importálni a {} @@ -2211,138 +2211,138 @@ a telepített bővítményeket a rendszer ellenőrzi az elérhető frissítések Hiba a {} makrófájl eltávolítása közben: - + Failed to connect to GitHub. Check your connection and proxy settings. Nem sikerült csatlakozni a GitHubhoz. Ellenőrizze a kapcsolat és a proxy beállításait. - + WARNING: Duplicate addon {} ignored FIGYELMEZTETÉS: A {} bővítmény duplikátuma elhagyva - + Workbenches list was updated. A munkafelületek listája frissítve. - + Git is disabled, skipping git macros Git le van tiltva, kihagyja a git makrókat - + Attempting to change non-git Macro setup to use git Kísérlet a nem-git makró beállítások megváltoztatására a git használatára - + An error occurred updating macros from GitHub, trying clean checkout... Hiba történt a makrók frissítésében a GitHubról, próbálom tisztán ellenőrizni a... - + Attempting to do a clean checkout... Megpróbálok egy tiszta kijelentkezést végezni... - + Clean checkout succeeded A tiszta kilépés sikerült - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Nem sikerült frissíteni a makrókat a GitHubról -- próbálja meg törölni a bővítmény kezelő's cache-t. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Hiba a Wikihez csatlakozásban, a FreeCAD jelenleg nem tudja lekérdezni a Wiki makrólistáját - + Unable to fetch git updates for workbench {} Nem lehet letölteni a git-frissítéseket a(z) {} munkafelületekhez - + git status failed for {} git állapot nem sikerült ehhez: {} - + Failed to read metadata from {name} Nem sikerült beolvasni a metaadatokat innen {name} - + Failed to fetch code for macro '{name}' Nem sikerült kódot lekérni a '{name}' makróhoz - + Caching macro code... Makro kód ellenörzése... - + Addon Manager: a worker process failed to complete while fetching {name} Bővítmény kezelő: a {name} letöltése során nem sikerült befejezni a feldolgozást - + Out of {num_macros} macros, {num_failed} timed out while processing A {num_macros} makrók közül {num_failed} a feldolgozás során letelt az idő - + Addon Manager: a worker process failed to halt ({name}) Bővítmény kezelő: egy munkafolyamat nem állt le ({name}) - + Getting metadata from macro {} Metaadatok kinyerése ebből a makróból: {} - + Timeout while fetching metadata for macro {} Időkiesés a makró metaadatainak lekérése közben innen: {} - + Failed to kill process for macro {}! Nem sikerült leállítani a {} makró folyamatát! - + Retrieving macro description... Makró leírásának lekérése... - + Retrieving info from git Információ beolvasása git-ből - + Retrieving info from wiki Információ beolvasása wiki-ből - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Sikertelenül kapta meg a Bővítmény statisztikákat innen {} - csak az ábécé szerinti rendezés lesz pontos - + Failed to get Addon score from '{}' -- sorting by score will fail Sikertelenül kapta meg a Bővítmény pontszámot a '{}' - a pontszám szerinti rendezés sikertelen lesz diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_it.qm b/src/Mod/AddonManager/Resources/translations/AddonManager_it.qm index 470ea8601e..2055d74550 100644 Binary files a/src/Mod/AddonManager/Resources/translations/AddonManager_it.qm and b/src/Mod/AddonManager/Resources/translations/AddonManager_it.qm differ diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_it.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_it.ts index 3597bbdcf6..37d73f04b1 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_it.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_it.ts @@ -1479,7 +1479,7 @@ saranno controllati per gli aggiornamenti disponibili Run - esegui + Esegui @@ -1777,7 +1777,7 @@ saranno controllati per gli aggiornamenti disponibili Run Indicates a macro that can be 'run' - esegui + Esegui @@ -2100,32 +2100,32 @@ saranno controllati per gli aggiornamenti disponibili Installazione dell'Addon {} fallita - + Downloaded package.xml for {} Scaricato package.xml per {} - + Failed to decode {} file for Addon '{}' Impossibile decodificare il file {} per Addon '{}' - + Any dependency information in this file will be ignored Qualsiasi informazione sulla dipendenza in questo file verrà ignorata - + Downloaded metadata.txt for {} Scaricato metadati.txt per {} - + Downloaded requirements.txt for {} Scaricato requirements.txt per {} - + Downloaded icon for {} Scaricata Icona per {} @@ -2160,23 +2160,23 @@ saranno controllati per gli aggiornamenti disponibili Impossibile individuare il file specificato dalla macro {} (dovrebbe trovarsi a {}) - + {}: Unrecognized internal workbench '{}' {}: ambiente di lavoro interno non riconosciuto '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Avviso Sviluppatore Addon: l'URL del repository impostato nel file package.xml per il componente aggiuntivo {} ({}) non corrisponde all'URL da cui è stato recuperato ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Avviso Sviluppatore Addon: il ramo del Repository impostato nel file pacchetto.xml per il componente aggiuntivo {} ({}) non corrisponde al ramo da cui è stato recuperato ({}) - - + + Got an error when trying to import {} Errore durante l'importazione di {} @@ -2211,138 +2211,138 @@ saranno controllati per gli aggiornamenti disponibili Errore durante il tentativo di rimuovere il file macro {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Impossibile connettersi a GitHub. Controlla le impostazioni di connessione e proxy. - + WARNING: Duplicate addon {} ignored ATTENZIONE: Addon duplicato {} ignorato - + Workbenches list was updated. Elenco degli Ambienti di lavoro aggiornato. - + Git is disabled, skipping git macros Git è disabilitato, le macro git saltate - + Attempting to change non-git Macro setup to use git Tentativo di modificare la configurazione Macro non git per usare git - + An error occurred updating macros from GitHub, trying clean checkout... Si è verificato un errore durante l'aggiornamento delle macro da GitHub, ritentando il check out... - + Attempting to do a clean checkout... Tentativo di fare un check out pulito... - + Clean checkout succeeded Checkout pulito riuscito - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Impossibile aggiornare le macro da GitHub -- prova a cancellare la cache di Addon Manager. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Errore nel connettersi al Wiki, FreeCAD non può recuperare l'elenco macro Wiki in questo momento - + Unable to fetch git updates for workbench {} Impossibile recuperare gli aggiornamenti git per l'ambiente di lavoro {} - + git status failed for {} stato git fallito per {} - + Failed to read metadata from {name} Lettura dei metadati da {name} non riuscita - + Failed to fetch code for macro '{name}' Recupero del codice per macro '{name}' non riuscito - + Caching macro code... Memorizzazione codice macro... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: un processo in corso non è riuscito a completarsi durante il recupero di {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Su {num_macros} macro, {num_failed} si sono bloccate durante l'elaborazione - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: un processo in corso impedisce di arrestare ({name}) - + Getting metadata from macro {} Ottengo i metadati dalla macro {} - + Timeout while fetching metadata for macro {} Timeout durante il recupero dei metadati per la macro {} - + Failed to kill process for macro {}! Impossibile terminare il processo per la macro {}! - + Retrieving macro description... Recupero descrizione macro... - + Retrieving info from git Recupero informazioni da git - + Retrieving info from wiki Recupero informazioni dal wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Impossibile ottenere le statistiche di Addon da {} -- solo l'ordinamento alfabetico sarà accurato - + Failed to get Addon score from '{}' -- sorting by score will fail Impossibile ottenere il punteggio Addon da '{}' -- l'ordinamento per punteggio fallirà diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ja.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ja.ts index 78793d139c..b960d34979 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ja.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ja.ts @@ -2098,32 +2098,32 @@ installed addons will be checked for available updates 拡張機能 {} をインストールできませんでした - + Downloaded package.xml for {} {} のpackage.xmlをダウンロードしました - + Failed to decode {} file for Addon '{}' {} ファイルを拡張機能 '{}' 用にデコードできませんでした - + Any dependency information in this file will be ignored このファイル内の依存関係の情報は無視されます - + Downloaded metadata.txt for {} {} のmetadata.txtをダウンロードしました - + Downloaded requirements.txt for {} {} のrequirements.txtをダウンロードしました - + Downloaded icon for {} {} のアイコンをダウンロードしました @@ -2158,23 +2158,23 @@ installed addons will be checked for available updates マクロ指定ファイル {} が見つかりませんでした ({}) - + {}: Unrecognized internal workbench '{}' {}:認識できない内部ワークベンチ '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) 拡張機能開発者警告: 拡張機能 {} ({}) のpackage.xmlファイルに設定されているリポジトリURLが ({}) から取得したURLと一致しませんでした - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) 拡張機能開発者警告: 拡張機能 {} ({}) のpackage.xmlファイルに設定されているリポジトリのブランチが ({}) から取得したブランチと一致しませんでした - - + + Got an error when trying to import {} {} のインポートでエラーが発生しました。 @@ -2209,137 +2209,137 @@ installed addons will be checked for available updates マクロファイル {} の削除中にエラーが発生しました - + Failed to connect to GitHub. Check your connection and proxy settings. GitHubに接続できませんでした。インターネット接続とプロキシ設定を確認してください。 - + WARNING: Duplicate addon {} ignored 警告:重複する拡張機能 {} は無視されました - + Workbenches list was updated. ワークベンチの一覧を更新しました。 - + Git is disabled, skipping git macros Gitを無効にしているため、Gitマクロは拡張機能の一覧に表示されません。 - + Attempting to change non-git Macro setup to use git 非GitなマクロがGitを使用するように設定を変更しています - + An error occurred updating macros from GitHub, trying clean checkout... GitHubのマクロを更新中にエラーが発生しました。チェックアウトを削除しています… - + Attempting to do a clean checkout... チェックアウトを削除しています… - + Clean checkout succeeded チェックアウトを削除しました - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. GitHub からマクロを更新できませんでした。「拡張機能の管理」のキャッシュを削除してみてください。 - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Wikiへの接続中にエラーが発生しました。現在、FreeCADはWikiのマクロ一覧を取得できません。 - + Unable to fetch git updates for workbench {} ワークベンチ {} のGitの更新を取得できませんでした - + git status failed for {} {} にgit statusを実行できませんでした - + Failed to read metadata from {name} {name} からメタデータを読み込めませんでした - + Failed to fetch code for macro '{name}' マクロ '{name}' のコードが取得できませんでした - + Caching macro code... マクロのコードをキャッシュしています… - + Addon Manager: a worker process failed to complete while fetching {name} 拡張機能の管理:{name} の取得中にワーカープロセスが処理を完了できませんでした - + Out of {num_macros} macros, {num_failed} timed out while processing {num_macros}個のマクロのうち、{num_failed}個が処理中にタイムアウトしました - + Addon Manager: a worker process failed to halt ({name}) 拡張機能の管理:ワーカープロセスは停止できませんでした({name}) - + Getting metadata from macro {} マクロ {} のメタデータを取得しています - + Timeout while fetching metadata for macro {} マクロ {} のメタデータを取得中にタイムアウトしました - + Failed to kill process for macro {}! マクロ {} のプロセスを強制終了できませんでした。 - + Retrieving macro description... マクロの説明を取得しています… - + Retrieving info from git Gitから情報を取得しています - + Retrieving info from wiki Wikiから情報を取得しています - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate {} から拡張機能の統計データを取得できませんでした。アルファベット順での並べ替えのみ正しいものになります - + Failed to get Addon score from '{}' -- sorting by score will fail '{}' から拡張機能のスコアを取得できませんでした。スコア順での並べ替えはできません diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ka.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ka.ts index 7224df3778..19e5ceb20c 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ka.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ka.ts @@ -2101,32 +2101,32 @@ installed addons will be checked for available updates დამატების "{}" დაყენების შეცდომა - + Downloaded package.xml for {} {}-ის package.xml გადმოწერილია - + Failed to decode {} file for Addon '{}' {} ფაილის გაშიფვრის შეცდომა დამატებისთვის '{}' - + Any dependency information in this file will be ignored ამ ფაილში არსებული ნებისმიერი დამოკიდებულება იგნორირებული იქნება - + Downloaded metadata.txt for {} {}-ის metadata.txt გადმოწერილია - + Downloaded requirements.txt for {} {}-ის requirements.txt გადმოწერილია - + Downloaded icon for {} ხატულა გადმოწერილია {} @@ -2161,23 +2161,23 @@ installed addons will be checked for available updates მაკროს მიერ მითითებული ფაილის {} პოვნა შეუძლებელია (ველოდი მისამართზე {}) - + {}: Unrecognized internal workbench '{}' {}: უცნობი შიდა სამუშაო დაფა '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) დამატების პროგრამისტის გაფრთხილება: რეპოს URL, რომელიც დაყენებულია დამატების {} ({}) package.xml ფაილში, არ ემთხვევა URL-ს, საიდანაც ის გადმოვწერეთ ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) დამატების პროგრამისტის გაფრთხილება: რეპოს ბრენჩი, რომელიც დაყენებულია დამატების {} ({}) package.xml ფაილში, არ ემთხვევა ბრენჩს, საიდანაც ის გადმოვწერეთ ({}) - - + + Got an error when trying to import {} შეცდომა {}-ის შემოტანის მცდელობისას @@ -2212,137 +2212,137 @@ installed addons will be checked for available updates შეცდომა მაკროს ფაილის {} წაშლისას: - + Failed to connect to GitHub. Check your connection and proxy settings. GitHub-თან მიერთების შეცდომა. შეამოწმეთ შეერთებისა და პროქსის პარამეტრები. - + WARNING: Duplicate addon {} ignored გაფრთხილება: დუბლიკატი გაფართოება {} გამოტოვებულია - + Workbenches list was updated. სამუშაო გარემოების სია განახლდა. - + Git is disabled, skipping git macros Git-ი გათიშულია. git მაკროები გამოტოვებული იქნება - + Attempting to change non-git Macro setup to use git მცდელობა, არა-git-ის მაკროსი git-ის გამოყენებაზე გადავრთო - + An error occurred updating macros from GitHub, trying clean checkout... შეცდომა მაკროების GitHub-დან განახლებისას. ვცდი სუფთად გამოვითხოვო... - + Attempting to do a clean checkout... სუფთა გამოთხოვის მცდელობა... - + Clean checkout succeeded სუფთა გამოთხოვა წარმატებულია - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. GitHub-დან მაკროს განახლების შეცდომა -- სცადეთ დამატებების მმართველის ქეში გაწმინდოთ. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time ვიკისთან დაკავშირების შეცდომა. FreeCAD-ს ამჟამად ვკიდან მაკროების სიის მიღება არ შეუძლია - + Unable to fetch git updates for workbench {} სამუშაო მაგიდის {} განახლებების git-დან მიღება შეუძლებელია - + git status failed for {} git status-ის შეცდომა {} - + Failed to read metadata from {name} მეტამონაცემების {name}-დან კითხვის შეცდომა - + Failed to fetch code for macro '{name}' მაკროს '{name}' კოდის გამოთხოვის შეცდომა; - + Caching macro code... მაკროს კოდის კეშირება... - + Addon Manager: a worker process failed to complete while fetching {name} დამატებების მმართველი: დამხმარე პროცესის შეცდომა {name}-ის გადმოწერისას - + Out of {num_macros} macros, {num_failed} timed out while processing {num_macros} მაკროდან {num_failed}-ის დამუშავების ვადა გავიდა - + Addon Manager: a worker process failed to halt ({name}) დამატებების მმართველი: დამხმარე პროცესის შეჩერების შეცდომა ({name}) - + Getting metadata from macro {} მაკროდან {} მეტამონაცემების მიღება - + Timeout while fetching metadata for macro {} მაკროს {} მეტამონაცემების გამოთხოვნის ვადა გავიდა - + Failed to kill process for macro {}! მაკროს {} პროცესის მოკვლა შეუძლებელია! - + Retrieving macro description... მაკროს აღწერის მიღება... - + Retrieving info from git ინფორმაციის git-დან მიღება - + Retrieving info from wiki ინფორმაციის wiki-დან მიღება - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate {}-დან დამატების სტატისტიკის მიღება ჩავარდა -- სწორი, მხოლოდ, ანბანით დალაგება იქნება - + Failed to get Addon score from '{}' -- sorting by score will fail '{}'-დან დამატების ქულების გამოთხოვნა ჩავარდა -- ქულებით დალაგება ჩავარდება diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ko.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ko.ts index 00ecdbb3fd..f58e349565 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ko.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ko.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. 작업대 목록이 갱신되었습니다. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_lt.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_lt.ts index 67c16b05d6..1b1d819be8 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_lt.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_lt.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Piktograma persiųsta dėl {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_nl.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_nl.ts index 1bd0c19271..60b9d2101c 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_nl.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_nl.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Er is een fout opgetreden bij het importeren van {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Kan geen verbinding maken met GitHub. Controleer je verbinding en proxy-instellingen. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Informatie ophalen van git - + Retrieving info from wiki Informatie ophalen van wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_pl.qm b/src/Mod/AddonManager/Resources/translations/AddonManager_pl.qm index 21f44f173b..9a62593dc4 100644 Binary files a/src/Mod/AddonManager/Resources/translations/AddonManager_pl.qm and b/src/Mod/AddonManager/Resources/translations/AddonManager_pl.qm differ diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_pl.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_pl.ts index a0d458ec7b..4a826728b8 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_pl.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_pl.ts @@ -198,7 +198,7 @@ Czy chcesz, aby Menadżer dodatków zainstalował je automatycznie? Wybierz "Zig TIP: Since this is displayed within FreeCAD, in the Addon Manager, it is not necessary to take up space saying things like "This is a FreeCAD Addon..." -- just say what it does. - Wskazówka: ponieważ jest to wyświetlane w programie FreeCAD, w Menedżerze Dodatków, nie jest konieczne zajmowanie miejsca informacjami takimi jak "To jest dodatek do programu FreeCAD..." -- po prostu napisz, co on robi. + Wskazówka: ponieważ jest to wyświetlane w programie FreeCAD, w Menedżerze Dodatków, nie jest konieczne zajmowanie miejsca informacjami takimi jak "To jest dodatek do programu FreeCAD..." -- po prostu powiedz, co on robi. @@ -817,7 +817,7 @@ zainstalowane dodatki będą sprawdzane pod kątem dostępnych aktualizacji Class that defines "Icon" data member - Klasa, która definiuje element danych "Ikona" + Klasa, która definiuje element danych "Ikona" @@ -1128,7 +1128,7 @@ zainstalowane dodatki będą sprawdzane pod kątem dostępnych aktualizacji Worker process {} is taking a long time to stop... - Zatrzymanie działającego procesu {} zajmuje dużo czasu... + Zatrzymanie działającego procesu {} zajmuje dużo czasu ... @@ -2104,32 +2104,32 @@ i spróbuj ponownie. Polecenie, którego wykonanie się nie powiodło, to:Instalacja dodatku {} nie powiodła się - + Downloaded package.xml for {} Pobrano plik package.xml dla {} - + Failed to decode {} file for Addon '{}' Nie udało się dekodować pliku {} dla dodatku "{}" - + Any dependency information in this file will be ignored Wszelkie informacje o zależności w tym pliku zostaną zignorowane - + Downloaded metadata.txt for {} Pobrano plik metadata.txt dla {} - + Downloaded requirements.txt for {} Pobrano plik requirements.txt dla {} - + Downloaded icon for {} Pobrano plik ikonki dla {} @@ -2164,23 +2164,23 @@ i spróbuj ponownie. Polecenie, którego wykonanie się nie powiodło, to:Nie można zlokalizować określonego przez makrodefinicję pliku {} (oczekiwany w {}) - + {}: Unrecognized internal workbench '{}' {}: Nierozpoznane wewnętrzne środowisko pracy "{}" - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Ostrzeżenie dla twórców dodatku: Adres URL repozytorium ustawiony w pliku package.xml dla dodatku {} ({}) nie pasuje do adresu URL pobranego z ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Ostrzeżenie dla twórców dodatku: Gałąź repozytorium ustawiona w pliku package.xml dla dodatku {} ({}) nie pasuje do gałęzi, z której został on pobrany ({}) - - + + Got an error when trying to import {} Wystąpił błąd podczas próby zaimportowania {} @@ -2215,140 +2215,140 @@ i spróbuj ponownie. Polecenie, którego wykonanie się nie powiodło, to:Błąd podczas próby usunięcia pliku makrodefinicji {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Niepowodzenie nie udało się połączyć z GitHub. Sprawdź swoje połączenie i ustawienia serwera pośredniczącego. - + WARNING: Duplicate addon {} ignored OSTRZEŻENIE: Duplikat dodatku {} pominięto - + Workbenches list was updated. Lista środowisk pracy została zaktualizowana. - + Git is disabled, skipping git macros Git jest wyłączony, pominięto repozytorium Git makrodefinicji - + Attempting to change non-git Macro setup to use git Próba zmiany konfiguracji makrodefinicji niebędącej typu Git na używanie Git - + An error occurred updating macros from GitHub, trying clean checkout... Wystąpił błąd podczas aktualizacji makrodefinicji z GitHub, próba czyszczenia ... - + Attempting to do a clean checkout... Próbuje wykonać czyszczenie ... - + Clean checkout succeeded Czyszczenie zakończone pomyślnie - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Nie udało się zaktualizować makrodefinicji z repozytorium GitHub — próba oczyszczenia pamięci podręcznej Menedżera dodatków. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Błąd połączenia z Wiki, FreeCAD nie może w tej chwili pobrać listy makrodefinicji Wiki - + Unable to fetch git updates for workbench {} Nie można pobrać aktualizacji Git dla środowiska pracy {} - + git status failed for {} Git status brak powodzenia dla {} - + Failed to read metadata from {name} Niepowodzenie nie udało się odczytać metadanych z {name} - + Failed to fetch code for macro '{name}' Niepowodzenie nie udało się pobrać kodu dla makrodefinicji "{name}" - + Caching macro code... Buforowanie kodu makrodefinicji ... - + Addon Manager: a worker process failed to complete while fetching {name} Menedżer dodatków: nie udało się ukończyć procesu przetwarzania podczas pobierania {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Dla {num_macros} makrodefinicji przekroczono limit czasu {num_failed} podczas przetwarzania - + Addon Manager: a worker process failed to halt ({name}) Menadżer dodatków: nie udało się zatrzymać uruchomionego procesu ({name}) - + Getting metadata from macro {} Pobieranie metadanych z makrodefinicji {} - + Timeout while fetching metadata for macro {} Upłynął limit czasu pobierania metadanych dla makrodefinicji {} - + Failed to kill process for macro {}! Nie udało się przerwać procesu makrodefinicji {}! - + Retrieving macro description... Pobieranie opisu makrodefinicji ... - + Retrieving info from git Pobieranie informacji z Git - + Retrieving info from wiki Pobieranie informacji z Wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Nie udało się pobrać statystyk dodatku z {} - tylko sortowanie alfabetyczne będzie dokładne. - + Failed to get Addon score from '{}' -- sorting by score will fail Nie udało się pobrać wyniku dodatku z "{}" -- sortowanie według wyniku nie powiedzie się. diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_pt-BR.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_pt-BR.ts index 08e588c37b..30b731f619 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_pt-BR.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_pt-BR.ts @@ -2100,32 +2100,32 @@ será verificado se há atualizações disponíveis Falha na instalação do complemento {} - + Downloaded package.xml for {} Arquivo package.xml baixado em {} - + Failed to decode {} file for Addon '{}' Falha ao decodificar o arquivo {} do complemento '{}' - + Any dependency information in this file will be ignored Qualquer informação sobre dependências neste arquivo será ignorada - + Downloaded metadata.txt for {} Arquivo metadata.txt baixado em {} - + Downloaded requirements.txt for {} Arquivo requirements.txt baixado em {} - + Downloaded icon for {} Ícone baixado em {} @@ -2160,23 +2160,23 @@ será verificado se há atualizações disponíveis Não foi possível localizar o arquivo {} macro-especificada (esperado em {}) - + {}: Unrecognized internal workbench '{}' {}: Bancada interna desconhecida '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) AVISO DO DESENVOLVEDOR DE EXTENSÕES: URL do repositório definido no arquivo package.xml para extensão {} ({}) não corresponde ao URL do qual foi buscado ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) AVISO DO DESENVOLVEDOR DE EXTENSÕES: A ramificação do repositório definida no arquivo package.xml para extensão {} ({}) não corresponde à ramificação da qual foi buscado ({}) - - + + Got an error when trying to import {} Ocorreu um erro ao tentar importar {} @@ -2211,138 +2211,138 @@ será verificado se há atualizações disponíveis Erro enquanto tentava remover o arquivo da macro {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Falha ao se conectar ao GitHub. Verifique sua conexão e configurações de proxy. - + WARNING: Duplicate addon {} ignored AVISO: Extensão {} duplicada ignorada - + Workbenches list was updated. Lista das Bancadas de Trabalho foi atualizada. - + Git is disabled, skipping git macros O Git está desativado, ignorando macros do git - + Attempting to change non-git Macro setup to use git Tentando mudar a configuração da Macro non-git para utilizar o git - + An error occurred updating macros from GitHub, trying clean checkout... Ocorreu um erro ao atualizar macros do GitHub, tentando check-out limpo... - + Attempting to do a clean checkout... Tentando fazer um checkout... - + Clean checkout succeeded Check-out limpo bem-sucedido - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Falha ao atualizar macros do GitHub -- tente limpar o cache do Gerenciador de extensões's. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Erro ao conectar ao Wiki, o FreeCAD não pode recuperar a lista de macros Wiki neste momento - + Unable to fetch git updates for workbench {} Não foi possível buscar atualizações do git para a bancada de trabalho {} - + git status failed for {} status do git falhou para {} - + Failed to read metadata from {name} Falha ao ler metadados de {name} - + Failed to fetch code for macro '{name}' Falha ao obter código para macro '{name}' - + Caching macro code... Armazenando o código da macro... - + Addon Manager: a worker process failed to complete while fetching {name} Gerenciador de extensões: um processo de trabalho falhou em completar ao obter {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Sem {num_macros} macros, {num_failed} expiraram durante o processamento - + Addon Manager: a worker process failed to halt ({name}) Gerenciador de extensões: um processo de trabalho falhou ao parar ({name}) - + Getting metadata from macro {} Obtendo metadados da macro {} - + Timeout while fetching metadata for macro {} Tempo limite para buscar metadados para macro {} - + Failed to kill process for macro {}! Falha ao matar o processo para macro {}! - + Retrieving macro description... Recuperando descrição da macro... - + Retrieving info from git Recuperando informações do git - + Retrieving info from wiki Recuperando informações da wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Falha ao obter as estatísticas da extensão de {} -- somente ordenar o valor alfabético será preciso - + Failed to get Addon score from '{}' -- sorting by score will fail Falha ao obter pontuação da extensão de '{}' -- classificar por pontuação falhará diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_pt-PT.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_pt-PT.ts index cdd0320d9d..08c8f4e37c 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_pt-PT.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_pt-PT.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ro.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ro.ts index 7c271a6725..7a370223b3 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ro.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ro.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_ru.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_ru.ts index b2a5898f65..c8039b1189 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_ru.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_ru.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Не удалось установить пакет {} - + Downloaded package.xml for {} Загружен package.xml для {} - + Failed to decode {} file for Addon '{}' Не удалось декодировать файл {} дополнения '{}' - + Any dependency information in this file will be ignored Любая информация о зависимостях в этом файле будет игнорироваться - + Downloaded metadata.txt for {} Загружен metadata.txt для {} - + Downloaded requirements.txt for {} Загружен requirements.txt для {} - + Downloaded icon for {} Загружен значок для {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Не удалось найти макро-указанный файл {} (ожидалось в {}) - + {}: Unrecognized internal workbench '{}' {}: Нераспознанный внутренний верстак '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Предупреждение разработчика Дополнения: URL-адрес репозитория, заданный в файле package.xml для дополнения {} ({}), не соответствует URL-адресу, с которого он был получен ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Предупреждение разработчика Дополнения: ветка репозитория, указанная в файле package.xml для надстройки {} ({}), не соответствует ветке, из которой она была получена ({}) - - + + Got an error when trying to import {} Произошла ошибка при попытке импортировать {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Ошибка при попытке удалить файл макроса {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Не удалось подключиться к GitHub. Проверьте подключение и настройки прокси. - + WARNING: Duplicate addon {} ignored ВНИМАНИЕ: Повторяющийся аддон {} игнорируется - + Workbenches list was updated. Список верстаков обновлён. - + Git is disabled, skipping git macros Git отключен, пропуск git макросов - + Attempting to change non-git Macro setup to use git Попытка изменить настройки не git Макроса для использования git - + An error occurred updating macros from GitHub, trying clean checkout... Произошла ошибка при обновлении макросов с GitHub, попробуйте очистить заявку (git checkout)... - + Attempting to do a clean checkout... Попытка сделать очистку заявки (git chekout)... - + Clean checkout succeeded Очистка заявки (git checkout) прошла успешно - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Не удалось обновить макрос с GitHub ― попробуйте очистить кэш Менеджера дополнений. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Ошибка подключения к Wiki, FreeCAD не может получить список Вики по макросам в данное время - + Unable to fetch git updates for workbench {} Не удалось получить обновления git для верстака {} - + git status failed for {} сбой статуса git для {} - + Failed to read metadata from {name} Не удалось прочитать метаданные из {name} - + Failed to fetch code for macro '{name}' Не удалось получить код для макроса '{name}' - + Caching macro code... Кэширование кода макроса... - + Addon Manager: a worker process failed to complete while fetching {name} Менеджер дополнений: рабочему процессу не удалось загрузить {name} - + Out of {num_macros} macros, {num_failed} timed out while processing При обработке {num_macros} макрос(ов/а), у {num_failed} истекло время ожидания - + Addon Manager: a worker process failed to halt ({name}) Менеджер дополнений: рабочий процесс ({name}) не удалось остановить - + Getting metadata from macro {} Получение метаданных из макроса {} - + Timeout while fetching metadata for macro {} Таймаут при получении метаданных для макроса {} - + Failed to kill process for macro {}! Не удалось убить процесс для макроса {}! - + Retrieving macro description... Получение описания макроса... - + Retrieving info from git Получение информации из git - + Retrieving info from wiki Получение информации из вики - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Не удалось получить статистику дополнения из {}. Только сортировка по алфавиту будет точной - + Failed to get Addon score from '{}' -- sorting by score will fail Не удалось получить оценку аддона от '{}' -- сортировка по баллам не удастся diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_sl.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_sl.ts index 24bcf8a741..3eabb938d3 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_sl.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_sl.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Upravljalnik dodatkov: delovni proces je med pridobivanjem {name} spodletel - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Upravljalnik dodatkov: delovni proces se ni mogel zaustaviti ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_sr-CS.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_sr-CS.ts index 765f3c8b08..2d69d3087d 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_sr-CS.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_sr-CS.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Instalacija Dodatka {} nije uspela - + Downloaded package.xml for {} Preuzet package.xml za {} - + Failed to decode {} file for Addon '{}' Dekodiranje {} datoteke za Dodatak '{}' nije uspelo - + Any dependency information in this file will be ignored Sve informacije u ovoj datoteci o zavisnosti će biti zanemarene - + Downloaded metadata.txt for {} Preuzet metadata.txt za {} - + Downloaded requirements.txt for {} Preuzet requirements.txt za {} - + Downloaded icon for {} Preuzeta ikona za {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Nije moguće locirati datoteku navedenu makro-om {} (trebala je biti u {}) - + {}: Unrecognized internal workbench '{}' {}: Neprepoznato unutrašnje radno okruženje '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Upozorenje za programere dodataka: URL adresa spremišta zadata u package.xml datoteci za dodatak {} ({}) ne odgovara URL adresi sa koje je preuzet ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Upozorenje za programere dodataka: Grana spremišta postavljena u package.xml datoteci za dodatak {} ({}) se ne podudara sa granom iz koje je preuzeta ({}) - - + + Got an error when trying to import {} Greška pri pokušaju uvoza {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Greška pri pokušaju uklanjanja datoteke makro-a {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Povezivanje sa GitHub-om nije uspelo. Proveri podešavanja veze i proksija. - + WARNING: Duplicate addon {} ignored UPOZORENJE: Duplikat dodatka {} je ignorisan - + Workbenches list was updated. Lista radnih okruženja je ažurirana. - + Git is disabled, skipping git macros Git je onemogućen, preskaču se git makro-i - + Attempting to change non-git Macro setup to use git Pokušaj promene podešavanja makroa bez git-a da koristi git - + An error occurred updating macros from GitHub, trying clean checkout... Došlo je do greške pri ažuriranju makro-a sa GitHub-a, pokušavam clean checkout... - + Attempting to do a clean checkout... Pokušavam da uradim clean checkout... - + Clean checkout succeeded Clean checkout je uspeo - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Ažuriranje makro-a sa GitHub-a nije uspelo -- pokušaj da obrišete keš memoriju Menadžera dodataka. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Greška pri povezivanju na Wiki, FreeCAD trenutno ne može da preuzme Wiki listu makro-a - + Unable to fetch git updates for workbench {} Nije moguće preuzeti git ažuriranja za radno okruženje {} - + git status failed for {} git preuzimanje nije uspelo za {} - + Failed to read metadata from {name} Čitanje metapodataka sa {name} nije uspelo - + Failed to fetch code for macro '{name}' Nije uspelo preuzimanje koda za makro '{name}' - + Caching macro code... Keširanje koda makro-a... - + Addon Manager: a worker process failed to complete while fetching {name} Menadžer dodataka: radni proces nije uspeo da se završi tokom preuzimanja {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Za {num_macros} makro je prekoračen je vremenski limit, {num_failed} tokom obrade - + Addon Manager: a worker process failed to halt ({name}) Menadžer dodataka: radni proces nije uspeo da se zaustavi ({name}) - + Getting metadata from macro {} Preuzimanje metapodataka iz makro-a {} - + Timeout while fetching metadata for macro {} Isteklo je vreme za preuzimanje metapodataka za makro {} - + Failed to kill process for macro {}! Ubijanje procesa za makro {} nije uspelo! - + Retrieving macro description... Preuzimanje opisa makro-a... - + Retrieving info from git Preuzimanje informacija sa git-a - + Retrieving info from wiki Preuzimanje informacija sa wiki-a - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Nije uspelo preuzimanje statistike o dodatku od {} – samo će sortiranje po abecednom redu biti tačno - + Failed to get Addon score from '{}' -- sorting by score will fail Neuspešno preuzimanje ocena o dodatku od '{}' -- sortiranje po ocenama neće uspeti diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_sr.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_sr.ts index d531899a2b..1b2e8e0faa 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_sr.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_sr.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Инсталација Додатка {} није успела - + Downloaded package.xml for {} Преузет package.xml за {} - + Failed to decode {} file for Addon '{}' Декодирање {} датотеке за Додатак '{}' није успело - + Any dependency information in this file will be ignored Све информације у овој датотеци о зависности ће бити занемарене - + Downloaded metadata.txt for {} Преузет metadata.txt за {} - + Downloaded requirements.txt for {} Преузет requirements.txt за {} - + Downloaded icon for {} Преузета икона за {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Није могуће лоцирати датотеку наведену макро-ом {} (требала је бити у {}) - + {}: Unrecognized internal workbench '{}' {}: Непрепознато унутрашње радно окружење '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Упозорење за програмере додатака: URL адреса спремишта задата у package.xml датотеци за додатак {} ({}) не одговара URL адреси са које је преузет ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Упозорење за програмере додатака: Грана спремишта постављена у package.xml датотеци за додатак {} ({}) се не подудара са граном из које је преузета ({}) - - + + Got an error when trying to import {} Грешка при покушају увоза {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Грешка при покушају уклањања датотеке макро-а {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Повезивање са GitHub-ом није успело. Провери подешавања везе и проксија. - + WARNING: Duplicate addon {} ignored УПОЗОРЕЊЕ: Дупликат додатка {} је игнорисан - + Workbenches list was updated. Листа радних окружења је ажурирана. - + Git is disabled, skipping git macros Git је онемогућен, прескачу се git макро-и - + Attempting to change non-git Macro setup to use git Покушај промене подешавања макроа без git-а да користи git - + An error occurred updating macros from GitHub, trying clean checkout... Дошло је до грешке при ажурирању макро-а са GitHub-а, покушавам clean checkout... - + Attempting to do a clean checkout... Покушавам да урадим clean checkout... - + Clean checkout succeeded Clean checkout је успео - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Ажурирање макро-а са GitHub-а није успело -- покушај да обришете кеш меморију Менаџера додатака. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Грешка при повезивању на Wiki, FreeCAD тренутно не може да преузме Wiki листу макро-а - + Unable to fetch git updates for workbench {} Није могуће преузети git ажурирања за радно окружење {} - + git status failed for {} git преузимање није успело за {} - + Failed to read metadata from {name} Читање метаподатака са {name} није успело - + Failed to fetch code for macro '{name}' Није успело преузимање кода за '{name}' - + Caching macro code... Кеширање кода макро-а... - + Addon Manager: a worker process failed to complete while fetching {name} Менаџер додатака: радни процес није успео да се заврши током преузимања {name} - + Out of {num_macros} macros, {num_failed} timed out while processing За {num_macros} макро је прекорачен је временски лимит, {num_failed} током обраде - + Addon Manager: a worker process failed to halt ({name}) Менаџер додатака: радни процес није успео да се заустави ({name}) - + Getting metadata from macro {} Преузимање метаподатака из макро-а {} - + Timeout while fetching metadata for macro {} Истекло је време за преузимање метаподатака за макро {} - + Failed to kill process for macro {}! Убијање процеса за макро {} није успело! - + Retrieving macro description... Преузимање описа макро-а... - + Retrieving info from git Преузимање информација са git-а - + Retrieving info from wiki Преузимање информација са wiki-ја - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Није успело преузимање статистике о додатку од {} – само ће сортирање по абецедном реду бити тачно - + Failed to get Addon score from '{}' -- sorting by score will fail Неуспешно преузимање о додатку од '{}' -- сортирање по оценама неће успети diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_sv-SE.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_sv-SE.ts index 4cb34b5c94..ddbfd7a0c1 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_sv-SE.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_sv-SE.ts @@ -2099,32 +2099,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2159,23 +2159,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2210,138 +2210,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Cachar makrokod... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Hämtar metadata från makro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Hämtar makrobeskrivning... - + Retrieving info from git Hämtar information från git - + Retrieving info from wiki Hämtar information från wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_tr.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_tr.ts index f2c8e32eb0..5c33494ab6 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_tr.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_tr.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_uk.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_uk.ts index ba34239c7c..72f56e1ca0 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_uk.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_uk.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Помилка встановлення доповнення {} - + Downloaded package.xml for {} Завантажений package.xml для {} - + Failed to decode {} file for Addon '{}' Не вдалося декодувати файл {} доповнення '{}' - + Any dependency information in this file will be ignored Будь-яка інформація про залежності у цьому файлі буде проігнорована - + Downloaded metadata.txt for {} Завантажено metadata.txt для {} - + Downloaded requirements.txt for {} Завантажено requirements.txt для {} - + Downloaded icon for {} Завантажена піктограма для {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Не вдалося знайти вказаний макросом файл {} (очікувався за адресою {}) - + {}: Unrecognized internal workbench '{}' {}: Нерозпізнаний внутрішній робочий простір '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Попередження розробника доповнення: URL-адреса сховища, задана у файлі package.xml для доповнення {} ({}), не відповідає URL-адресі, з якої вона була отримана ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Попередження розробника доповнення: гілка репозиторію, зазначена у файлі package.xml для надбудови {} ({}), не відповідає гілці, з якої її було отримано ({}) - - + + Got an error when trying to import {} Виникла помилка при спробі імпорту {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Помилка при спробі видалити файл макросу {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Не вдалося підʼєднатися до GitHub. Перевірте зʼєднання та параметри проксі-сервера. - + WARNING: Duplicate addon {} ignored УВАГА: Дублікат доповнення {} проігноровано - + Workbenches list was updated. Список робочих просторів оновлено. - + Git is disabled, skipping git macros Git вимкнено, пропуск git макросів - + Attempting to change non-git Macro setup to use git Спроба змінити налаштування макросів, що не використовують git, для використання git - + An error occurred updating macros from GitHub, trying clean checkout... Виникла помилка при оновленні макросів з GitHub, спроба чистої перевірки... - + Attempting to do a clean checkout... Спроба зробити чисту перевірку... - + Clean checkout succeeded Чиста перевірка успішно виконана - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Не вдалося оновити макроси з GitHub - спробуйте очистити кеш Менеджера доповнень. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Помилка підключення до Wiki, FreeCAD наразі не може отримати список макросів Wiki - + Unable to fetch git updates for workbench {} Не вдається отримати git-оновлення для робочого простору {} - + git status failed for {} помилка статусу git для {} - + Failed to read metadata from {name} Помилка читання метаданих з {name} - + Failed to fetch code for macro '{name}' Не вдалося отримати код для макросу '{name}' - + Caching macro code... Кешування коду макросу... - + Addon Manager: a worker process failed to complete while fetching {name} Менеджер доповнень: робочий процес не вдалося завершити під час отримання {name} - + Out of {num_macros} macros, {num_failed} timed out while processing З {num_macros} макросів {num_failed} завершилися під час обробки - + Addon Manager: a worker process failed to halt ({name}) Менеджер доповнень: не вдалося зупинити робочий процес ({name}) - + Getting metadata from macro {} Отримання метаданих з макросу {} - + Timeout while fetching metadata for macro {} Тайм-аут під час отримання метаданих для макросу {} - + Failed to kill process for macro {}! Не вдалося завершити процес для макросу {}! - + Retrieving macro description... Отримання опису макросу... - + Retrieving info from git Отримання інформації з git - + Retrieving info from wiki Отримання інформації з wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Не вдалося отримати статистику доповнення з {} -- точним буде лише сортування за алфавітом - + Failed to get Addon score from '{}' -- sorting by score will fail Не вдалося отримати оцінку доповнення з '{}' -- сортування за оцінкою не вдасться diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_val-ES.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_val-ES.ts index 9c434e3243..f11c504faa 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_val-ES.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_val-ES.ts @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates Installation of Addon {} failed - + Downloaded package.xml for {} Downloaded package.xml for {} - + Failed to decode {} file for Addon '{}' Failed to decode {} file for Addon '{}' - + Any dependency information in this file will be ignored Any dependency information in this file will be ignored - + Downloaded metadata.txt for {} Downloaded metadata.txt for {} - + Downloaded requirements.txt for {} Downloaded requirements.txt for {} - + Downloaded icon for {} Downloaded icon for {} @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates Could not locate macro-specified file {} (expected at {}) - + {}: Unrecognized internal workbench '{}' {}: Unrecognized internal workbench '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) - - + + Got an error when trying to import {} Got an error when trying to import {} @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates Error while trying to remove macro file {}: - + Failed to connect to GitHub. Check your connection and proxy settings. Failed to connect to GitHub. Check your connection and proxy settings. - + WARNING: Duplicate addon {} ignored WARNING: Duplicate addon {} ignored - + Workbenches list was updated. Workbenches list was updated. - + Git is disabled, skipping git macros Git is disabled, skipping git macros - + Attempting to change non-git Macro setup to use git Attempting to change non-git Macro setup to use git - + An error occurred updating macros from GitHub, trying clean checkout... An error occurred updating macros from GitHub, trying clean checkout... - + Attempting to do a clean checkout... Attempting to do a clean checkout... - + Clean checkout succeeded Clean checkout succeeded - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. Failed to update macros from GitHub -- try clearing the Addon Manager's cache. - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time - + Unable to fetch git updates for workbench {} Unable to fetch git updates for workbench {} - + git status failed for {} git status failed for {} - + Failed to read metadata from {name} Failed to read metadata from {name} - + Failed to fetch code for macro '{name}' Failed to fetch code for macro '{name}' - + Caching macro code... Caching macro code... - + Addon Manager: a worker process failed to complete while fetching {name} Addon Manager: a worker process failed to complete while fetching {name} - + Out of {num_macros} macros, {num_failed} timed out while processing Out of {num_macros} macros, {num_failed} timed out while processing - + Addon Manager: a worker process failed to halt ({name}) Addon Manager: a worker process failed to halt ({name}) - + Getting metadata from macro {} Getting metadata from macro {} - + Timeout while fetching metadata for macro {} Timeout while fetching metadata for macro {} - + Failed to kill process for macro {}! Failed to kill process for macro {}! - + Retrieving macro description... Retrieving macro description... - + Retrieving info from git Retrieving info from git - + Retrieving info from wiki Retrieving info from wiki - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate - + Failed to get Addon score from '{}' -- sorting by score will fail Failed to get Addon score from '{}' -- sorting by score will fail diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.qm b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.qm index 12bf53a6be..be7c7e0110 100644 Binary files a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.qm and b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.qm differ diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.ts index a1152fd409..e62dbf4754 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-CN.ts @@ -2099,32 +2099,32 @@ installed addons will be checked for available updates 插件 {} 安装失败 - + Downloaded package.xml for {} 为 {} 下载的 package.xml - + Failed to decode {} file for Addon '{}' 为附加组件 '{}' 解码 {} 文件失败 - + Any dependency information in this file will be ignored 此文件中的任何依赖信息将被忽略 - + Downloaded metadata.txt for {} 为 {} 下载的 metadata.txt - + Downloaded requirements.txt for {} 为 {} 下载的 requirements.txt - + Downloaded icon for {} 为 {} 下载的图标 @@ -2151,7 +2151,7 @@ installed addons will be checked for available updates Unable to fetch macro-specified file {} from {} - Unable to fetch macro-specified file {} from {} + @@ -2159,23 +2159,23 @@ installed addons will be checked for available updates 无法定位宏指定的文件 {} (预期在 {}) - + {}: Unrecognized internal workbench '{}' - {}: Unrecognized internal workbench '{}' + {}: 无法识别的内部工作台 '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) 附加组件开发者警告: 在 package.xml 文件中为附加组件 {} 设置的资源库 URL ({}) 与获取它的 URL ({}) 不匹配 - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) 附加组件开发者警告: 在 package.xml 文件中为附加组件 {} 设置的资源库分支 ({}) 与获取它的分支 ({}) 不匹配 - - + + Got an error when trying to import {} 尝试导入 {} 时出错 @@ -2210,138 +2210,138 @@ installed addons will be checked for available updates 尝试删除宏文件 {} 时出错 - + Failed to connect to GitHub. Check your connection and proxy settings. 连接到 GitHub 失败。请检查您的连接和代理设置。 - + WARNING: Duplicate addon {} ignored 警告:重复插件 {} 已忽略 - + Workbenches list was updated. 工作台列表已更新。 - + Git is disabled, skipping git macros Git 已禁用,跳过git 宏模式 - + Attempting to change non-git Macro setup to use git - Attempting to change non-git Macro setup to use git + 正在尝试将非 git 的宏设置更改为使用 git - + An error occurred updating macros from GitHub, trying clean checkout... 从 GitHub 更新宏时出错,正在尝试干净签出(clean checkout)... - + Attempting to do a clean checkout... 正在尝试干净签出(clean checkout)... - + Clean checkout succeeded 干净签出(clean checkout) 成功 - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. 从 GitHub 更新宏失败 -- 尝试清理插件管理器'缓存。 - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time 连接到 Wiki 时出错,FreeCAD 此时无法获取 Wiki 宏列表 - + Unable to fetch git updates for workbench {} 无法获取(fetch) 工作台 {} 的 git 更新 - + git status failed for {} git 查看状态(status) 因 {} 失败 - + Failed to read metadata from {name} 从 {name} 读取元数据失败 - + Failed to fetch code for macro '{name}' 获取宏 '{name}' 代码失败 - + Caching macro code... 缓存宏代码... - + Addon Manager: a worker process failed to complete while fetching {name} 插件管理器:工作进程未能获取 {name} - + Out of {num_macros} macros, {num_failed} timed out while processing 在{num_macros} 个宏中 {num_failed} 个处理时超时 - + Addon Manager: a worker process failed to halt ({name}) 插件管理器:工作进程未能停止 ({name}) - + Getting metadata from macro {} 正在从宏{} 获取元数据 - + Timeout while fetching metadata for macro {} 获取宏 {} 元数据时超时 - + Failed to kill process for macro {}! 为宏 {} 杀死进程失败! - + Retrieving macro description... 正在获取宏描述... - + Retrieving info from git 从 git 搜索信息 - + Retrieving info from wiki 从维基搜索信息 - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate 从 {} 获取附加组件统计失败——只有按字母顺序排序才是准确的 - + Failed to get Addon score from '{}' -- sorting by score will fail 从'{}' 获取附加组件分数失败——通过分数排序将失败 @@ -2488,7 +2488,7 @@ installed addons will be checked for available updates Failed to remove some files - Failed to remove some files + 未能删除某些文件 @@ -2496,7 +2496,7 @@ installed addons will be checked for available updates Finished updating the following addons - Finished updating the following addons + 已完成更新以下附加组件 @@ -2504,7 +2504,7 @@ installed addons will be checked for available updates Auto-Created Macro Toolbar - Auto-Created Macro Toolbar + 自动创建的宏工具栏 diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.qm b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.qm index d082c4471e..c2591ac915 100644 Binary files a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.qm and b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.qm differ diff --git a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.ts b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.ts index 2da1c6d45b..f45a414d06 100644 --- a/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.ts +++ b/src/Mod/AddonManager/Resources/translations/AddonManager_zh-TW.ts @@ -613,7 +613,7 @@ installed addons will be checked for available updates Path to Git executable (optional): - Path to Git executable (optional): + Git 可執行檔的路徑(選填): @@ -1217,7 +1217,7 @@ installed addons will be checked for available updates No updates available - No updates available + 沒有可用更新 @@ -1661,12 +1661,12 @@ installed addons will be checked for available updates This addon requires Python packages that are not installed, and cannot be installed automatically. To use this addon you must install the following Python packages manually: - This addon requires Python packages that are not installed, and cannot be installed automatically. To use this addon you must install the following Python packages manually: + 此附加元件需要未安裝的 Python 套件,無法自動安裝。要使用此工作台,您必須手動安裝以下 Python 套件: This Addon (or one of its dependencies) requires Python {}.{}, and your system is running {}.{}. Installation cancelled. - This Addon (or one of its dependencies) requires Python {}.{}, and your system is running {}.{}. Installation cancelled. + 此附加元件 (或其一相依元件) 需要 Python {}.{}, 而您的系統正在執行 {}.{}. 安裝取消. @@ -2100,32 +2100,32 @@ installed addons will be checked for available updates 安裝附加元件 {} 失敗 - + Downloaded package.xml for {} 下載 {} 的 package.xml 檔 - + Failed to decode {} file for Addon '{}' 解碼附加元件的檔案 {} 失敗 '{}' - + Any dependency information in this file will be ignored 此檔案中的任何相依性資訊將會被忽略 - + Downloaded metadata.txt for {} 已下載 {} 的 metadata.txt - + Downloaded requirements.txt for {} 已下載 {} 的 requirements.txt - + Downloaded icon for {} 已下載 {} 的圖示 @@ -2160,23 +2160,23 @@ installed addons will be checked for available updates 無法找到巨集指定的檔案 {}(預期在 {}) - + {}: Unrecognized internal workbench '{}' {}:未識別的內部工作台 '{}' - + Addon Developer Warning: Repository URL set in package.xml file for addon {} ({}) does not match the URL it was fetched from ({}) 附加元件開發者警告:給附加元件{} ({}) 之 package.xml 檔中的儲存庫網址集與截取自 ({}) 的網址不匹配 - + Addon Developer Warning: Repository branch set in package.xml file for addon {} ({}) does not match the branch it was fetched from ({}) 附加元件開發者警告:給附加元件{} ({}) 之 package.xml 檔中的儲存庫分支集與截取自 ({}) 的分支不匹配 - - + + Got an error when trying to import {} 當試著匯入 {} 時發生錯誤 @@ -2211,138 +2211,138 @@ installed addons will be checked for available updates 當試著移除巨集檔 {} 時發生錯誤: - + Failed to connect to GitHub. Check your connection and proxy settings. 連接到 GitHub 失敗。請檢查您的連線與代理伺服器設定。 - + WARNING: Duplicate addon {} ignored 警告:重複的附加元件 {} 被忽略 - + Workbenches list was updated. 工作台列表已更新。 - + Git is disabled, skipping git macros Git 已被停用,正在跳過 git 巨集 - + Attempting to change non-git Macro setup to use git 嘗試將非 git 巨集設定更改為使用 git - + An error occurred updating macros from GitHub, trying clean checkout... 自 GitHub 更新巨集時發生錯誤,試著進行乾淨檢查... - + Attempting to do a clean checkout... 企圖進行一個乾淨的檢查... - + Clean checkout succeeded 乾淨檢查成功 - + Failed to update macros from GitHub -- try clearing the Addon Manager's cache. 無法從 GitHub 更新巨集 - 請嘗試清除附加元件管理員的快取。 - + Error connecting to the Wiki, FreeCAD cannot retrieve the Wiki macro list at this time 連接到維基時出現錯誤,FreeCAD 目前無法檢索維基巨集列表 - + Unable to fetch git updates for workbench {} 無法針對工作台 {} 擷取 git 更新 - + git status failed for {} 對於 {} 的 git 狀態查詢失敗 - + Failed to read metadata from {name} 由 {name} 讀取後設資料失敗 - + Failed to fetch code for macro '{name}' 無法擷取巨集 '{name}' 的程式碼 - + Caching macro code... 快取巨集程式碼... - + Addon Manager: a worker process failed to complete while fetching {name} 附加元件管理員:在擷取 {name} 時,工作行程未能完成 - + Out of {num_macros} macros, {num_failed} timed out while processing 在 {num_macros} 個巨集中,有 {num_failed} 個在處理時超時。 - + Addon Manager: a worker process failed to halt ({name}) 附加元件管理員:在停止 ({name}) 時,工作行程未能完成 - + Getting metadata from macro {} 自巨集 {} 取得後設資料 - + Timeout while fetching metadata for macro {} 在擷取巨集 {} 的後設資料時超時 - + Failed to kill process for macro {}! 無法終止巨集 {} 的行程! - + Retrieving macro description... 檢索巨集描述... - + Retrieving info from git 從 git 中檢索訊息 - + Retrieving info from wiki 從 git 中檢索訊息 - + Failed to get Addon statistics from {} -- only sorting alphabetically will be accurate 無法從 {} 獲取附加元件統計資料 — 僅以字母順序排序將是準確的 - + Failed to get Addon score from '{}' -- sorting by score will fail 無法從 '{}' 獲取附加元件分數 — 按分數排序將失敗 diff --git a/src/Mod/AddonManager/addonmanager_workers_installation.py b/src/Mod/AddonManager/addonmanager_workers_installation.py index 6f88a96991..bec69d02bb 100644 --- a/src/Mod/AddonManager/addonmanager_workers_installation.py +++ b/src/Mod/AddonManager/addonmanager_workers_installation.py @@ -30,6 +30,7 @@ import json import os from typing import Dict from enum import Enum, auto +import xml.etree.ElementTree from PySide import QtCore @@ -188,7 +189,12 @@ class UpdateMetadataCacheWorker(QtCore.QThread): with open(new_xml_file, "w", encoding="utf-8") as f: string_data = self._ensure_string(data, repo.name, "package.xml") f.write(string_data) - metadata = MetadataReader.from_file(new_xml_file) + try: + metadata = MetadataReader.from_file(new_xml_file) + except xml.etree.ElementTree.ParseError: + fci.Console.PrintWarning("An invalid or corrupted package.xml file was downloaded for") + fci.Console.PrintWarning(f" {self.name}... ignoring the bad data.\n") + return repo.set_metadata(metadata) FreeCAD.Console.PrintLog(f"Downloaded package.xml for {repo.name}\n") self.status_message.emit( diff --git a/src/Mod/AddonManager/addonmanager_workers_startup.py b/src/Mod/AddonManager/addonmanager_workers_startup.py index 4952cd87ab..5b6e68d8ab 100644 --- a/src/Mod/AddonManager/addonmanager_workers_startup.py +++ b/src/Mod/AddonManager/addonmanager_workers_startup.py @@ -33,6 +33,7 @@ import stat import threading import time from typing import List +import xml.etree.ElementTree from PySide import QtCore @@ -44,6 +45,7 @@ from AddonStats import AddonStats import NetworkManager from addonmanager_git import initialize_git, GitFailed from addonmanager_metadata import MetadataReader, get_branch_from_metadata +import addonmanager_freecad_interface as fci translate = FreeCAD.Qt.translate @@ -193,10 +195,18 @@ class CreateAddonListWorker(QtCore.QThread): repo = Addon(name, addon["url"], state, addon["branch"]) md_file = os.path.join(addondir, "package.xml") if os.path.isfile(md_file): - repo.installed_metadata = MetadataReader.from_file(md_file) - repo.installed_version = repo.installed_metadata.version - repo.updated_timestamp = os.path.getmtime(md_file) - repo.verify_url_and_branch(addon["url"], addon["branch"]) + try: + repo.installed_metadata = MetadataReader.from_file(md_file) + repo.installed_version = repo.installed_metadata.version + repo.updated_timestamp = os.path.getmtime(md_file) + repo.verify_url_and_branch(addon["url"], addon["branch"]) + except xml.etree.ElementTree.ParseError: + fci.Console.PrintWarning( + "An invalid or corrupted package.xml file was installed for" + ) + fci.Console.PrintWarning( + f" custom addon {self.name}... ignoring the bad data.\n" + ) self.addon_repo.emit(repo) @@ -236,10 +246,16 @@ class CreateAddonListWorker(QtCore.QThread): repo = Addon(name, url, state, branch) md_file = os.path.join(addondir, "package.xml") if os.path.isfile(md_file): - repo.installed_metadata = MetadataReader.from_file(md_file) - repo.installed_version = repo.installed_metadata.version - repo.updated_timestamp = os.path.getmtime(md_file) - repo.verify_url_and_branch(url, branch) + try: + repo.installed_metadata = MetadataReader.from_file(md_file) + repo.installed_version = repo.installed_metadata.version + repo.updated_timestamp = os.path.getmtime(md_file) + repo.verify_url_and_branch(url, branch) + except xml.etree.ElementTree.ParseError: + fci.Console.PrintWarning( + "An invalid or corrupted package.xml file was installed for" + ) + fci.Console.PrintWarning(f" addon {self.name}... ignoring the bad data.\n") if name in self.py2only: repo.python2 = True diff --git a/src/Mod/Assembly/App/AssemblyObject.cpp b/src/Mod/Assembly/App/AssemblyObject.cpp index 70c1c3c136..ce1a631a7d 100644 --- a/src/Mod/Assembly/App/AssemblyObject.cpp +++ b/src/Mod/Assembly/App/AssemblyObject.cpp @@ -111,39 +111,6 @@ static void printPlacement(Base::Placement plc, const char* name) angle); }*/ -static bool isLink(App::DocumentObject* obj) -{ - if (!obj) { - return false; - } - - auto* link = dynamic_cast(obj); - if (link) { - return link->ElementCount.getValue() == 0; - } - - auto* linkEl = dynamic_cast(obj); - if (linkEl) { - return true; - } - - return false; -} - -static bool isLinkGroup(App::DocumentObject* obj) -{ - if (!obj) { - return false; - } - - auto* link = dynamic_cast(obj); - if (link) { - return link->ElementCount.getValue() > 0; - } - - return false; -} - // ================================ Assembly Object ============================ PROPERTY_SOURCE(Assembly::AssemblyObject, App::Part) @@ -1733,7 +1700,7 @@ void AssemblyObject::ensureIdentityPlacements() std::vector group = Group.getValues(); for (auto* obj : group) { // When used in assembly, link groups must have identity placements. - if (isLinkGroup(obj)) { + if (obj->isLinkGroup()) { auto* link = dynamic_cast(obj); auto* pPlc = dynamic_cast(obj->getPropertyByName("Placement")); if (!pPlc || !link) { @@ -2078,6 +2045,7 @@ void AssemblyObject::setJointActivated(App::DocumentObject* joint, bool val) propActivated->setValue(val); } } + bool AssemblyObject::getJointActivated(App::DocumentObject* joint) { auto* propActivated = dynamic_cast(joint->getPropertyByName("Activated")); @@ -2087,65 +2055,6 @@ bool AssemblyObject::getJointActivated(App::DocumentObject* joint) return false; } -Base::Placement AssemblyObject::getPlacementFromProp(App::DocumentObject* obj, const char* propName) -{ - Base::Placement plc = Base::Placement(); - auto* propPlacement = dynamic_cast(obj->getPropertyByName(propName)); - if (propPlacement) { - plc = propPlacement->getValue(); - } - return plc; -} - - -Base::Placement AssemblyObject::getGlobalPlacement(App::DocumentObject* targetObj, - App::DocumentObject* rootObj, - const std::string& sub) -{ - if (!targetObj || !rootObj || sub == "") { - return Base::Placement(); - } - std::vector names = splitSubName(sub); - - App::Document* doc = rootObj->getDocument(); - Base::Placement plc = getPlacementFromProp(rootObj, "Placement"); - - for (auto& name : names) { - App::DocumentObject* obj = doc->getObject(name.c_str()); - if (!obj) { - return Base::Placement(); - } - - plc = plc * getPlacementFromProp(obj, "Placement"); - - if (obj == targetObj) { - return plc; - } - if (isLink(obj)) { - // Update doc in case its an external link. - doc = obj->getLinkedObject()->getDocument(); - } - } - - // If targetObj has not been found there's a problem - return Base::Placement(); -} - -Base::Placement AssemblyObject::getGlobalPlacement(App::DocumentObject* targetObj, - App::PropertyXLinkSub* prop) -{ - if (!targetObj || !prop) { - return Base::Placement(); - } - - std::vector subs = prop->getSubValues(); - if (subs.empty()) { - return Base::Placement(); - } - - return getGlobalPlacement(targetObj, prop->getValue(), subs[0]); -} - double AssemblyObject::getJointDistance(App::DocumentObject* joint) { double distance = 0.0; @@ -2193,7 +2102,7 @@ std::vector AssemblyObject::getSubAsList(App::PropertyXLinkSub* pro return {}; } - return splitSubName(subs[0]); + return Base::Tools::splitSubName(subs[0]); } std::vector AssemblyObject::getSubAsList(App::DocumentObject* obj, const char* pName) @@ -2203,27 +2112,6 @@ std::vector AssemblyObject::getSubAsList(App::DocumentObject* obj, return getSubAsList(prop); } -std::vector AssemblyObject::splitSubName(const std::string& sub) -{ - // Turns 'Part.Part001.Body.Pad.Edge1' - // Into ['Part', 'Part001','Body','Pad','Edge1'] - std::vector subNames; - std::string subName; - std::istringstream subNameStream(sub); - while (std::getline(subNameStream, subName, '.')) { - subNames.push_back(subName); - } - - // Check if the last character of the input string is the delimiter. - // If so, add an empty string to the subNames vector. - // Because the last subname is the element name and can be empty. - if (!sub.empty() && sub.back() == '.') { - subNames.push_back(""); // Append empty string for trailing dot. - } - - return subNames; -} - std::string AssemblyObject::getElementFromProp(App::DocumentObject* obj, const char* pName) { std::vector names = getSubAsList(obj, pName); @@ -2264,7 +2152,7 @@ App::DocumentObject* AssemblyObject::getObjFromRef(App::DocumentObject* obj, std App::Document* doc = obj->getDocument(); - std::vector names = splitSubName(sub); + std::vector names = Base::Tools::splitSubName(sub); // Lambda function to check if the typeId is a BodySubObject auto isBodySubObject = [](App::DocumentObject* obj) -> bool { @@ -2306,7 +2194,7 @@ App::DocumentObject* AssemblyObject::getObjFromRef(App::DocumentObject* obj, std return obj; } - if (obj->isDerivedFrom() || isLinkGroup(obj)) { + if (obj->isDerivedFrom() || obj->isLinkGroup()) { continue; } else if (obj->isDerivedFrom()) { @@ -2316,7 +2204,7 @@ App::DocumentObject* AssemblyObject::getObjFromRef(App::DocumentObject* obj, std // Primitive, fastener, gear, etc. return obj; } - else if (isLink(obj)) { + else if (obj->isLink()) { App::DocumentObject* linked_obj = obj->getLinkedObject(); if (linked_obj->isDerivedFrom()) { auto* retObj = handlePartDesignBody(linked_obj, it); @@ -2370,7 +2258,7 @@ App::DocumentObject* AssemblyObject::getMovingPartFromRef(App::DocumentObject* o App::Document* doc = obj->getDocument(); - std::vector names = splitSubName(sub); + std::vector names = Base::Tools::splitSubName(sub); names.insert(names.begin(), obj->getNameInDocument()); bool assemblyPassed = false; @@ -2381,7 +2269,7 @@ App::DocumentObject* AssemblyObject::getMovingPartFromRef(App::DocumentObject* o continue; } - if (isLink(obj)) { // update the document if necessary for next object + if (obj->isLink()) { // update the document if necessary for next object doc = obj->getLinkedObject()->getDocument(); } @@ -2398,7 +2286,7 @@ App::DocumentObject* AssemblyObject::getMovingPartFromRef(App::DocumentObject* o continue; // we ignore groups. } - if (isLinkGroup(obj)) { + if (obj->isLinkGroup()) { continue; } diff --git a/src/Mod/Assembly/App/AssemblyObject.h b/src/Mod/Assembly/App/AssemblyObject.h index 1615ffae31..4fc2185460 100644 --- a/src/Mod/Assembly/App/AssemblyObject.h +++ b/src/Mod/Assembly/App/AssemblyObject.h @@ -280,14 +280,6 @@ public: const char* propName); static std::vector getSubAsList(App::PropertyXLinkSub* prop); static std::vector getSubAsList(App::DocumentObject* joint, const char* propName); - static std::vector splitSubName(const std::string& subName); - static Base::Placement getPlacementFromProp(App::DocumentObject* obj, const char* propName); - - static Base::Placement getGlobalPlacement(App::DocumentObject* targetObj, - App::DocumentObject* rootObj, - const std::string& sub); - static Base::Placement getGlobalPlacement(App::DocumentObject* targetObj, - App::PropertyXLinkSub* prop); }; // using AssemblyObjectPython = App::FeaturePythonT; diff --git a/src/Mod/Assembly/CommandCreateAssembly.py b/src/Mod/Assembly/CommandCreateAssembly.py index 1d498ca8b6..cb1f3ed143 100644 --- a/src/Mod/Assembly/CommandCreateAssembly.py +++ b/src/Mod/Assembly/CommandCreateAssembly.py @@ -70,15 +70,24 @@ class CommandCreateAssembly: App.setActiveTransaction("Create assembly") activeAssembly = UtilsAssembly.activeAssembly() + Gui.addModule("UtilsAssembly") if activeAssembly: - assembly = activeAssembly.newObject("Assembly::AssemblyObject", "Assembly") + commands = ( + "activeAssembly = UtilsAssembly.activeAssembly()\n" + 'assembly = activeAssembly.newObject("Assembly::AssemblyObject", "Assembly")\n' + ) else: - assembly = App.ActiveDocument.addObject("Assembly::AssemblyObject", "Assembly") + commands = ( + 'assembly = App.ActiveDocument.addObject("Assembly::AssemblyObject", "Assembly")\n' + ) - assembly.Type = "Assembly" + commands = commands + 'assembly.Type = "Assembly"\n' + commands = commands + 'assembly.newObject("Assembly::JointGroup", "Joints")' + + Gui.doCommand(commands) if not activeAssembly: - Gui.ActiveDocument.setEdit(assembly) - assembly.newObject("Assembly::JointGroup", "Joints") + Gui.doCommandGui("Gui.ActiveDocument.setEdit(assembly)") + App.closeActiveTransaction() diff --git a/src/Mod/Assembly/CommandCreateBom.py b/src/Mod/Assembly/CommandCreateBom.py index 5eed4338dc..ee158ee369 100644 --- a/src/Mod/Assembly/CommandCreateBom.py +++ b/src/Mod/Assembly/CommandCreateBom.py @@ -324,11 +324,16 @@ class TaskAssemblyCreateBom(QtCore.QObject): def createBomObject(self): assembly = UtilsAssembly.activeAssembly() + Gui.addModule("UtilsAssembly") if assembly is not None: - bom_group = UtilsAssembly.getBomGroup(assembly) - self.bomObj = bom_group.newObject("Assembly::BomObject", "Bill of Materials") + commands = ( + "bom_group = UtilsAssembly.getBomGroup(assembly)\n" + 'bomObj = bom_group.newObject("Assembly::BomObject", "Bill of Materials")' + ) else: - self.bomObj = App.activeDocument().addObject("Assembly::BomObject", "Bill of Materials") + commands = 'bomObj = App.activeDocument().addObject("Assembly::BomObject", "Bill of Materials")' + Gui.doCommand(commands) + self.bomObj = Gui.doCommandEval("bomObj") def export(self): self.bomObj.recompute() diff --git a/src/Mod/Assembly/CommandCreateJoint.py b/src/Mod/Assembly/CommandCreateJoint.py index 8ce6505897..77e6b3b7f7 100644 --- a/src/Mod/Assembly/CommandCreateJoint.py +++ b/src/Mod/Assembly/CommandCreateJoint.py @@ -58,8 +58,10 @@ def activateJoint(index): if JointObject.activeTask: JointObject.activeTask.reject() - panel = TaskAssemblyCreateJoint(index) - dialog = Gui.Control.showDialog(panel) + Gui.addModule("JointObject") # NOLINT + Gui.doCommand(f"panel = JointObject.TaskAssemblyCreateJoint({index})") + Gui.doCommandGui("dialog = Gui.Control.showDialog(panel)") + dialog = Gui.doCommandEval("dialog") if dialog is not None: dialog.setAutoCloseOnTransactionChange(True) dialog.setDocumentName(App.ActiveDocument.Name) @@ -476,16 +478,21 @@ class CommandGroupGearBelt: def createGroundedJoint(obj): - assembly = UtilsAssembly.activeAssembly() - if not assembly: + if not UtilsAssembly.activeAssembly(): return - joint_group = UtilsAssembly.getJointGroup(assembly) - - ground = joint_group.newObject("App::FeaturePython", "GroundedJoint") - JointObject.GroundedJoint(ground, obj) - JointObject.ViewProviderGroundedJoint(ground.ViewObject) - return ground + Gui.addModule("UtilsAssembly") + Gui.addModule("JointObject") + commands = ( + f'obj = App.ActiveDocument.getObject("{obj.Name}")\n' + "assembly = UtilsAssembly.activeAssembly()\n" + "joint_group = UtilsAssembly.getJointGroup(assembly)\n" + 'ground = joint_group.newObject("App::FeaturePython", "GroundedJoint")\n' + "JointObject.GroundedJoint(ground, obj)" + ) + Gui.doCommand(commands) + Gui.doCommandGui("JointObject.ViewProviderGroundedJoint(ground.ViewObject)") + return Gui.doCommandEval("ground") class CommandToggleGrounded: @@ -540,9 +547,12 @@ class CommandToggleGrounded: ungrounded = False for joint in joint_group.Group: if hasattr(joint, "ObjectToGround") and joint.ObjectToGround == moving_part: - doc = App.ActiveDocument - doc.removeObject(joint.Name) - doc.recompute() + commands = ( + "doc = App.ActiveDocument\n" + f'doc.removeObject("{joint.Name}")\n' + "doc.recompute()\n" + ) + Gui.doCommand(commands) ungrounded = True break if ungrounded: diff --git a/src/Mod/Assembly/CommandCreateView.py b/src/Mod/Assembly/CommandCreateView.py index b83841bc13..b0343312bd 100644 --- a/src/Mod/Assembly/CommandCreateView.py +++ b/src/Mod/Assembly/CommandCreateView.py @@ -74,8 +74,10 @@ class CommandCreateView: if not assembly: return - self.panel = TaskAssemblyCreateView() - Gui.Control.showDialog(self.panel) + Gui.addModule("CommandCreateView") # NOLINT + Gui.doCommand("panel = CommandCreateView.TaskAssemblyCreateView()") + self.panel = Gui.doCommandEval("panel") + Gui.doCommandGui("Gui.Control.showDialog(panel)") ######### Exploded View Object ########### @@ -524,6 +526,11 @@ class TaskAssemblyCreateView(QtCore.QObject): UtilsAssembly.restoreAssemblyPartsPlacements(self.assembly, self.initialPlcs) for move in self.viewObj.Moves: move.Visibility = False + commands = f'obj = App.ActiveDocument.getObject("{self.viewObj.Name}")\n' + for move in self.viewObj.Moves: + more = UtilsAssembly.generatePropertySettings("obj.Moves[0]", move) + commands = commands + more + Gui.doCommand(commands[:-1]) # Don't use the last \n App.closeActiveTransaction() return True @@ -695,16 +702,27 @@ class TaskAssemblyCreateView(QtCore.QObject): self.blockDraggerMove = False def createExplodedViewObject(self): - view_group = UtilsAssembly.getViewGroup(self.assembly) - self.viewObj = view_group.newObject("App::FeaturePython", "Exploded View") - ExplodedView(self.viewObj) - ViewProviderExplodedView(self.viewObj.ViewObject) + Gui.addModule("UtilsAssembly") + commands = ( + f'assembly = App.ActiveDocument.getObject("{self.assembly.Name}")\n' + "view_group = UtilsAssembly.getViewGroup(assembly)\n" + 'viewObj = view_group.newObject("App::FeaturePython", "Exploded View")\n' + "CommandCreateView.ExplodedView(viewObj)" + ) + Gui.doCommand(commands) + self.viewObj = Gui.doCommandEval("viewObj") + Gui.doCommandGui("CommandCreateView.ViewProviderExplodedView(viewObj.ViewObject)") def createExplodedStepObject(self, moveType_index=0): - self.currentStep = self.assembly.newObject("App::FeaturePython", "Move") - ExplodedViewStep(self.currentStep, moveType_index) - ViewProviderExplodedViewStep(self.currentStep.ViewObject) + commands = ( + f'assembly = App.ActiveDocument.getObject("{self.assembly.Name}")\n' + 'currentStep = assembly.newObject("App::FeaturePython", "Move")\n' + f"CommandCreateView.ExplodedViewStep(currentStep, {moveType_index})" + ) + Gui.doCommand(commands) + self.currentStep = Gui.doCommandEval("currentStep") + Gui.doCommandGui("CommandCreateView.ViewProviderExplodedViewStep(currentStep.ViewObject)") self.currentStep.MovementTransform = App.Placement() @@ -727,7 +745,7 @@ class TaskAssemblyCreateView(QtCore.QObject): for obj, init_plc in zip(self.selectedObjs, self.selectedObjsInitPlc): obj.Placement = init_plc - self.currentStep.Document.removeObject(self.currentStep.Name) + Gui.doCommand(f'App.ActiveDocument.removeObject("{self.currentStep.Name}")') self.currentStep = None Gui.Selection.clearSelection() diff --git a/src/Mod/Assembly/CommandExportASMT.py b/src/Mod/Assembly/CommandExportASMT.py index 0a7cdcb36d..88ccf32ef6 100644 --- a/src/Mod/Assembly/CommandExportASMT.py +++ b/src/Mod/Assembly/CommandExportASMT.py @@ -74,7 +74,7 @@ class CommandExportASMT: ) if filePath: - assembly.exportAsASMT(filePath) + Gui.doCommand(f'assembly.exportAsASMT("{filePath}")') if App.GuiUp: diff --git a/src/Mod/Assembly/CommandInsertLink.py b/src/Mod/Assembly/CommandInsertLink.py index ea889c4271..a5312339b6 100644 --- a/src/Mod/Assembly/CommandInsertLink.py +++ b/src/Mod/Assembly/CommandInsertLink.py @@ -80,7 +80,6 @@ class CommandInsertLink: if not assembly: return view = Gui.activeDocument().activeView() - self.panel = TaskAssemblyInsertLink(assembly, view) Gui.Control.showDialog(self.panel) @@ -125,7 +124,32 @@ class TaskAssemblyInsertLink(QtCore.QObject): # if self.partMoving: # self.endMove() + Gui.addModule("UtilsAssembly") + commands = "assembly = UtilsAssembly.activeAssembly()\n" + for insertionItem in self.insertionStack: + object = insertionItem["addedObject"] + translation = insertionItem["translation"] + commands = commands + ( + f'item = assembly.newObject("App::Link", "{object.Name}")\n' + f'item.LinkedObject = App.ActiveDocument.getObject("{object.LinkedObject.Name}")\n' + f'item.Label = "{object.Label}"\n' + ) + if translation != App.Vector(): + commands = commands + ( + f"item.Placement.base = App.Vector({translation.x}." + f"{translation.y}," + f"{translation.z})\n" + ) + + # Ground the first item if that happened + if self.groundedObj: + commands = ( + commands + + f'CommandCreateJoint.createGroundedJoint(App.ActiveDocument.getObject("{self.groundedObj.Name}"))\n' + ) + + Gui.doCommandSkip(commands[:-1]) # Get rid of last \n App.closeActiveTransaction() return True diff --git a/src/Mod/Assembly/CommandSolveAssembly.py b/src/Mod/Assembly/CommandSolveAssembly.py index fec765b682..f1eba695cd 100644 --- a/src/Mod/Assembly/CommandSolveAssembly.py +++ b/src/Mod/Assembly/CommandSolveAssembly.py @@ -67,8 +67,9 @@ class CommandSolveAssembly: if not assembly: return + Gui.addModule("UtilsAssembly") App.setActiveTransaction("Solve assembly") - assembly.solve() + Gui.doCommand("UtilsAssembly.activeAssembly().solve()") App.closeActiveTransaction() diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly.ts index 00363c79b7..0f876e2e54 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly.ts @@ -224,7 +224,7 @@ - + Distance @@ -240,7 +240,7 @@ - + Angle @@ -265,17 +265,17 @@ - + You need to select 2 elements from 2 separate parts. - + Radius 1 - + Pitch radius @@ -383,119 +383,121 @@ - - + + The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + + + + + The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + + + + The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - - - - - This is the offset vector of the joint. - - - - + This indicates if the joint is active. - + Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground - + This is where the part is grounded. @@ -659,17 +661,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? - + Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_be.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_be.ts index ccb76f17d8..3b58c8d9a1 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_be.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_be.ts @@ -230,7 +230,7 @@ - + Distance Адлегласць @@ -246,7 +246,7 @@ - + Angle Вугал @@ -271,17 +271,17 @@ Рэмень - + You need to select 2 elements from 2 separate parts. Вам трэба абраць два элемента з дзвюх асобных частак. - + Radius 1 Радыус 1 - + Pitch radius Радыус падачы @@ -394,121 +394,123 @@ Тып злучэння - - + + The first reference of the joint Першы спасылак злучэння - + This is the local coordinate system within Reference1's object that will be used for the joint. Лакальная сістэма каардынат у аб'екце Reference1, які будзе ўжывацца для злучэння. - - + + + This is the attachment offset of the first connector of the joint. + Зрушэнне мацавання першага злучніка злучэння. + + + + The second reference of the joint Другі спасылак злучэння - + This is the local coordinate system within Reference2's object that will be used for the joint. Лакальная сістэма каардынат у аб'екце Reference2, які будзе ўжывацца для злучэння. - + + + This is the attachment offset of the second connector of the joint. + Зрушэнне мацавання другога злучніка злучэння. + + + The first object of the joint Першы аб'ект злучэння - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Прадухіляе паўторнае вылічэнне першага месца размяшчэння (Placement1), якое дазваляе наладжваць месцазнаходжанне месца размяшчэння па сваім меркаванні. - + The second object of the joint Другі аб'ект злучэння - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Прадухіляе паўторнае вылічэнне другога месца размяшчэння (Placement2), якое дазваляе наладжваць месцазнаходжанне месца размяшчэння па сваім меркаванні. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Адлегласць паміж шарнірамі. Ужываецца толькі ў дыстанцыйным злучэнні, і ў рэечнай шасцярні (радыус падачы), шрубе, шасцярнях і рамяні (радыус1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Другая адлегласць злучэння. Ужываецца толькі ў зубчастым злучэнні для захавання другога радыусу. - - This is the rotation of the joint. - Гэтае ёсць вярчэнне злучэння. - - - - This is the offset vector of the joint. - Гэтае ёсць вектар зрушэння злучэння. - - - + This indicates if the joint is active. Паказвае, што злучэнне актыўнае. - + Enable the minimum length limit of the joint. Дазволіць абмежаванне па найменшай даўжыні злучэння. - + Enable the maximum length limit of the joint. Дазволіць абмежаванне па найбольшай даўжыні злучэння. - + Enable the minimum angle limit of the joint. Дазволіць абмежаванне па найменшым вуглу злучэння. - + Enable the minimum length of the joint. Дазволіць найменшую даўжыню злучэння. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Найменшая мяжа адлегласці паміж абедзвюма сістэмамі каардынат (наўздоўж іх восі Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Найбольшая мяжа адлегласці паміж абедзвюма сістэмамі каардынат (наўздоўж іх восі Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Найменшае абмежаванне вугла паміж абедзвюма сістэмамі каардынат (паміж іх воссю X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Найбольшае абмежаванне вугла паміж абедзвюма сістэмамі каардынат (паміж іх воссю X). - + The object to ground Аб'ект для замацавання - + This is where the part is grounded. Менавіта тут дэталь замацаваная. @@ -675,17 +677,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Аб'ект, які звязаны з адным ці некалькімі злучэннямі. - + Do you want to move the object and delete associated joints? Ці жадаеце вы перамясціць аб'ект і выдаліць звязаныя з ім злучэнні? - + Move part Рухаць дэталь diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ca.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ca.ts index 071a8ec33a..56142a2842 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ca.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ca.ts @@ -224,7 +224,7 @@ - + Distance Distància @@ -240,7 +240,7 @@ - + Angle Angle @@ -265,17 +265,17 @@ Corretja - + You need to select 2 elements from 2 separate parts. Necessites seleccionar 2 elements de 2 peces separades. - + Radius 1 Radi 1 - + Pitch radius Radi de pas @@ -383,119 +383,121 @@ El tipus de juntura - - + + The first reference of the joint La primera referència de la juntura - + This is the local coordinate system within Reference1's object that will be used for the joint. Aquest és el sistema de coordenades local de la referència 1 de l'objecte, que s'utilitzarà per a la juntura. - - + + + This is the attachment offset of the first connector of the joint. + Aquesta és l'equidistància adjunta al primer connector de la juntura. + + + + The second reference of the joint La segona referència de la juntura - + This is the local coordinate system within Reference2's object that will be used for the joint. Aquest és el sistema de coordenades local de la referència 2 de l'objecte, que s'utilitzarà per a la juntura. - + + + This is the attachment offset of the second connector of the joint. + Aquesta és l'equidistància adjunta al segon connector de la juntura. + + + The first object of the joint El primer objecte de la juntura - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Això impedeix recalcular Placement1, permetent el posicionament personalitzat de la ubicació. - + The second object of the joint El segon objecte de la juntura - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Això impedeix recalcular Placement2, permetent el posicionament personalitzat de la ubicació. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Aquest és la distància de la juntura. Només és utilitzada per la juntura de Distància, de Pinyó-Cremallera (radi de pas), de Cargol, d'Engranatges i de Corretja (radi 1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Aquesta és la segona distància de la juntura. Només és utilitzada per la juntura d'Engranatge per a desar el segon radi. - - This is the rotation of the joint. - Aquest és la rotació de la juntura. - - - - This is the offset vector of the joint. - Aquest és el vector desplaçament de la juntura. - - - + This indicates if the joint is active. Això indica si la juntura és activa. - + Enable the minimum length limit of the joint. Habilita el límit de longitud mínima de la juntura. - + Enable the maximum length limit of the joint. Habilita el límit de longitud màxima de la juntura. - + Enable the minimum angle limit of the joint. Habilita el límit de l'angle mínim de la juntura. - + Enable the minimum length of the joint. Habilita el límit de l'angle màxim de la juntura. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Aquest és el límit mínim de la longitud entre els dos sistemes de coordenades (al llarg de l'eix Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Aquest és el límit màxim de la longitud entre els dos sistemes de coordenades (al llarg de l'eix Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Aquest és el límit mínim de l'angle entre els dos sistemes de coordenades (entre el seu eix X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Aquest és el límit màxim de l'angle entre els dos sistemes de coordenades (entre el seu eix X). - + The object to ground L'objecte a bloquejar - + This is where the part is grounded. Aquest és on la peça és bloquejada. @@ -536,7 +538,7 @@ Offset - Equidistancia (ofset) + Equidistància @@ -660,17 +662,17 @@ Els fitxers s'anomenen "runPreDrag.asmt" i "dragging.log" i es troben al directo AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. L'objecte està associat a una o més juntures. - + Do you want to move the object and delete associated joints? Vols moure l'objecte i eliminar les juntures associades? - + Move part Moure peça diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts index 1bbe9eefcb..4e86d02f3c 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_cs.ts @@ -224,7 +224,7 @@ - + Distance Vzdálenost @@ -240,7 +240,7 @@ - + Angle Úhel @@ -265,17 +265,17 @@ Řemen - + You need to select 2 elements from 2 separate parts. Musíte vybrat 2 prvky ze 2 samostatných dílů. - + Radius 1 Poloměr 1 - + Pitch radius Poloměr rozteče @@ -383,119 +383,121 @@ Druh kloubu - - + + The first reference of the joint První reference spoje - + This is the local coordinate system within Reference1's object that will be used for the joint. Jedná se o lokální souřadnicový systém v rámci objektu Reference1, který bude použit pro spojení. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint Druhá reference spoje - + This is the local coordinate system within Reference2's object that will be used for the joint. Jedná se o lokální souřadnicový systém v rámci objektu Reference2, který bude použit pro spojení. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Prvním předmětem společného - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Tím se zabrání přepočítávání umístění1 a umožní se vlastní umístění. - + The second object of the joint Druhý předmět společného - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Tím se zabrání přepočítávání umístění2 a umožní se vlastní umístění. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Toto je vzdálenost spoje. Používá ji pouze spoj distanční, hřebenu a pastorku (poloměr rozteče), šroubový, ozubených kol a řemenu (poloměr1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Toto je druhá vzdálenost spoje. Používá ji pouze spoje ozubených kol pro uložení druhého poloměru. - - This is the rotation of the joint. - Jedná se o otáčení kloubu. - - - - This is the offset vector of the joint. - Jedná se o vektor posunu spoje. - - - + This indicates if the joint is active. Ukazuje, zda je spoj aktivní. - + Enable the minimum length limit of the joint. Povolit limit pro minimální délku spoje. - + Enable the maximum length limit of the joint. Povolit limit pro maximální délku spoje. - + Enable the minimum angle limit of the joint. Povolit limit pro minimální úhel spoje. - + Enable the minimum length of the joint. Povolit minimální délku spoje. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Toto je minimální mez délky mezi oběma souřadnicovými systémy (podél jejich osy Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Toto je maximální mez délky mezi oběma souřadnicovými systémy (podél jejich osy Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Toto je minimální mez úhlu mezi oběma souřadnicovými systémy (mezi jejich osami X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Toto je maximální mez úhlu mezi oběma souřadnicovými systémy (mezi jejich osami X). - + The object to ground Objekt k uzemnění - + This is where the part is grounded. Zde je součást uzemněna. @@ -660,17 +662,17 @@ Soubory jsou pojmenovány "runPreDrag.asmt" a "dragging.log" a jsou umístěny v AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Objekt je přiřazen k jednomu nebo více spojům. - + Do you want to move the object and delete associated joints? Chcete objekt přesunout a odstranit související spoje? - + Move part Přesunout díl diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_da.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_da.ts index f656376584..43f2d523d5 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_da.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_da.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle Vinkel @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -536,7 +538,7 @@ Offset - Offset + Forskydning @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts index 39477fde18..8392de6602 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_de.ts @@ -11,7 +11,7 @@ Create an assembly object in the current document, or in the current active assembly (if any). Limit of one root assembly per file. - Erzeugt ein Baugruppen-Objekt im aktuellen Dokument oder in der aktuell aktiven Baugruppe (falls vorhanden). Das Limit ist eine Über-Baugruppe pro Datei. + Erstelle eine Baugruppe im aktuellen Dokument oder in der aktuell aktiven Baugruppe (falls vorhanden). Begrenzung auf eine Stamm Baugruppe pro Datei.. @@ -19,12 +19,12 @@ Create a Fixed Joint - Starre Verbindung erstellen + Erstelle eine feste Verbindung 1 - If an assembly is active : Create a joint permanently locking two parts together, preventing any movement or rotation. - 1 - Ist eine Baugruppe aktiv: Erstellt eine dauerhaft starre Verbindung zwischen zwei Bauteilen, welche jegliche Verschiebung oder Drehung verhindert. + 1 - Wenn eine Baugruppe aktiv ist: Erstell eine Verbindung, die zwei Teile dauerhaft miteinander verriegelt und jede Bewegung oder Drehung verhindert. @@ -63,7 +63,7 @@ Create Slider Joint - Gleitverbindung erstellen + Schiebereglerverbindung erstellen @@ -94,7 +94,7 @@ Create a Distance Joint: Fix the distance between the selected objects. - Erstellt eine Abstandsverbindung: Fixiert die Entfernung zwischen den ausgewählten Objekten. + Erstelle eine Abstandsverbindung: Lege den Abstand zwischen den ausgewählten Objekten fest. @@ -224,7 +224,7 @@ - + Distance Abstand @@ -240,7 +240,7 @@ - + Angle Winkel @@ -265,17 +265,17 @@ Riemen - + You need to select 2 elements from 2 separate parts. Es müssen 2 Elemente von 2 separaten Bauteilen ausgewählt werden. - + Radius 1 Radius 1 - + Pitch radius Steigungsradius @@ -383,119 +383,121 @@ Der Typ der Verbindung - - + + The first reference of the joint Die erste Referenz der Verbindung - + This is the local coordinate system within Reference1's object that will be used for the joint. Dies ist das lokale Koordinatensystem des ersten Referenzobjekts, welches für die Verbindung verwendet wird. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint Die zweite Referenz der Verbindung - + This is the local coordinate system within Reference2's object that will be used for the joint. Dies ist das lokale Koordinatensystem des zweiten Referenzobjekts, welches für die Verbindung verwendet wird. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Das erste Objekt der Verbindung - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Dies verhindert die Neuberechnung der ersten Platzierung, wodurch eine benuzerdefinierte Platzierung ermöglicht wird. - + The second object of the joint Das zweite Objekt der Verbindung - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Dies verhindert die Neuberechnung der zweiten Platzierung, wodurch eine benuzerdefinierte Platzierung ermöglicht wird. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Dies ist der Abstand der Verbindung. Dieser wird nur von der Parallelverbindung, Zahnstange-Ritzel-Verbindung (Steigungsradius), Schraubverbindung, Zahnrad- und Riemenverbindung (Radius 1) verwendet - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Dies ist der zweite Abstand der Verbindung. Er wird nur von der Zahnrad- und Riemenverbindung für den zweiten Radius verwendert. - - This is the rotation of the joint. - Dies ist die Drehung der Verbindung. - - - - This is the offset vector of the joint. - Dies ist der Versatz-Vektor der Verbindung. - - - + This indicates if the joint is active. Dies zeigt an, ob die Verbindung aktiv ist. - + Enable the minimum length limit of the joint. Aktiviere die minimale Längenbegrenzung der Verbindung. - + Enable the maximum length limit of the joint. Aktiviere die maximale Längenbegrenzung der Verbindung. - + Enable the minimum angle limit of the joint. Aktiviere die minimale Winkelbegrenzung der Verbindung. - + Enable the minimum length of the joint. Aktiviere die maximale Länge der Verbindung. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Dies ist der minimale Grenzwert für den Abstand zwischen beiden Koordinatensystemen (entlang ihrer Z-Achse). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Dies ist der maximale Grenzwert für den Abstand zwischen beiden Koordinatensystemen (entlang ihrer Z-Achse). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Dies ist der minimale Grenzwert für den Winkel zwischen beiden Koordinatensystemen (zwischen ihrer X-Achse). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Dies ist der maximale Grenzwert für den Winkel zwischen beiden Koordinatensystemen (zwischen ihrer X-Achse). - + The object to ground Das festzusetzende Objekt - + This is where the part is grounded. Dies ist die Position, an der das Objekt festgesetzt wird. @@ -536,12 +538,12 @@ Offset - Versetzen + Versatz Rotation - Drehverbindung + Drehwinkel @@ -571,7 +573,7 @@ Min angle - Mindestwinkel + Minimaler Winkel @@ -660,17 +662,17 @@ Die Dateien heißen "runPreDrag.asmt" und "dragging.log" befinden sich im Standa AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Das Objekt gehört zu einer oder mehreren Verbindungen. - + Do you want to move the object and delete associated joints? Soll das Objekt bewegt und zugehörige Verbindungen gelöscht werden? - + Move part Bauteil verschieben diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_el.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_el.ts index b487e5398c..286f6813ea 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_el.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_el.ts @@ -224,7 +224,7 @@ - + Distance Απόσταση @@ -240,7 +240,7 @@ - + Angle Γωνία @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - Αυτή είναι η περιστροφή της άρθρωσης. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. Αυτό υποδεικνύει εάν η άρθρωση είναι ενεργή. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground Το αντικείμενο στο έδαφος - + This is where the part is grounded. Εδώ είναι όπου το εξάρτημα γειώνεται. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Μετακίνηση εξαρτήματος diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-AR.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-AR.ts index 9c38f1bb98..1bfc09e863 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-AR.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-AR.ts @@ -224,7 +224,7 @@ - + Distance Distancia @@ -240,7 +240,7 @@ - + Angle Ángulo @@ -265,17 +265,17 @@ Correa - + You need to select 2 elements from 2 separate parts. Necesita seleccionar 2 elementos de 2 partes separadas. - + Radius 1 Radio 1 - + Pitch radius Radio de paso @@ -383,119 +383,121 @@ El tipo de unión - - + + The first reference of the joint La primer referencia de la unión - + This is the local coordinate system within Reference1's object that will be used for the joint. Este es el sistema de coordenadas local dentro del objeto de Referencia1 que se usará para la unión. - - + + + This is the attachment offset of the first connector of the joint. + Este es el desplazamiento de la asociación del primer conector de la articulación. + + + + The second reference of the joint La segunda referencia de la unión - + This is the local coordinate system within Reference2's object that will be used for the joint. Este es el sistema de coordenadas local dentro del objeto de Referencia2 que se usará para la unión. - + + + This is the attachment offset of the second connector of the joint. + Este es el desplazamiento de la asociación del segundo conector de la articulación. + + + The first object of the joint El primer objeto de la unión - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Esto evita que Placement1 recompile y habilita la posición personalizada de la ubicación. - + The second object of the joint El segundo objeto de la unión - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Esto evita que Placement2 recompile y habilita la posición personalizada de la ubicación. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Esta es la distancia de la unión. Se utiliza solo por las uniones Distancia, Cremallera, Piñón (radio de paso), Helicoide, Engranaje y Correa (radio1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Esta es la segunda distancia de la unión, que solo es utilizada por la unión de engranajes para almacenar el segundo radio. - - This is the rotation of the joint. - Esta es la rotación de la unión. - - - - This is the offset vector of the joint. - Este es el vector de desplazamiento de la unión. - - - + This indicates if the joint is active. Esto indica si la unión está activa. - + Enable the minimum length limit of the joint. Habilita el límite de longitud mínima de la unión. - + Enable the maximum length limit of the joint. Habilita el límite de longitud máxima de la unión. - + Enable the minimum angle limit of the joint. Habilita el límite de ángulo mínimo de la unión. - + Enable the minimum length of the joint. Habilita la longitud mínima de la unión. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Este es el límite mínimo para la longitud entre ambos sistemas de coordenadas (a lo largo de su eje Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Este es el límite máximo para la longitud entre ambos sistemas de coordenadas (a lo largo de su eje Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Este es el límite mínimo para el ángulo entre ambos sistemas de coordenadas (entre su eje X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Este es el límite máximo para el ángulo entre ambos sistemas de coordenadas (entre su eje X). - + The object to ground El objeto a fijar - + This is where the part is grounded. Aquí es donde la parte es fijada. @@ -660,17 +662,17 @@ Los archivos se llaman "runPreDrag. smt" y "dragging.log" y están ubicados en e AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. El objeto es asociado a una o más uniones. - + Do you want to move the object and delete associated joints? ¿Quiere mover el objeto y eliminar las uniones asociadas? - + Move part Mover parte diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts index 910a59f690..adf00c22ef 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_es-ES.ts @@ -224,7 +224,7 @@ - + Distance Distancia @@ -240,7 +240,7 @@ - + Angle Ángulo @@ -265,17 +265,17 @@ Correa - + You need to select 2 elements from 2 separate parts. Necesita seleccionar 2 elementos de 2 partes separadas. - + Radius 1 Radio 1 - + Pitch radius Radio de paso @@ -383,119 +383,121 @@ El tipo de articulación - - + + The first reference of the joint La primer referencia de la articulación - + This is the local coordinate system within Reference1's object that will be used for the joint. Este es el sistema de coordenadas local dentro del objeto de Referencia1 que se usará para la articulación. - - + + + This is the attachment offset of the first connector of the joint. + Este es el desplazamiento de la asociación del primer conector de la articulación. + + + + The second reference of the joint La segunda referencia de la articulación - + This is the local coordinate system within Reference2's object that will be used for the joint. Este es el sistema de coordenadas local dentro del objeto de Referencia2 que se usará para la articulación. - + + + This is the attachment offset of the second connector of the joint. + Este es el desplazamiento de la asociación del segundo conector de la articulación. + + + The first object of the joint El primer objeto de la articulación - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Esto evita recalcular Placement1 habilitando el posicionamiento personalizado de la ubicación. - + The second object of the joint El segundo objeto de la articulación - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Esto evita recalcular Placement2 habilitando el posicionamiento personalizado de la ubicación. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Esta es la distancia de la articulación. Se utiliza sólo por la articulación Distancia y Piñon y cremallera (radio de paso), Tornillo y Engranaje y correa (radio1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Esta es la segunda distancia de la articulación, Sólo es utilizada por la articulación de engranajes para almacenar el segundo radio. - - This is the rotation of the joint. - Esta es la rotación de la articulación. - - - - This is the offset vector of the joint. - Este es el vector de desplazamiento de la articulación. - - - + This indicates if the joint is active. Esto indica si la articulación está activa. - + Enable the minimum length limit of the joint. Habilita el límite de longitud mínima de la articulación. - + Enable the maximum length limit of the joint. Habilita el límite de longitud máxima de la articulación. - + Enable the minimum angle limit of the joint. Habilita el límite de ángulo mínimo de la articulación. - + Enable the minimum length of the joint. Habilita la longitud mínima de la articulación. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Este es el límite mínimo para la longitud entre ambos sistemas de coordenadas (a lo largo de su eje Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Este es el límite máximo para la longitud entre ambos sistemas de coordenadas (a lo largo de su eje Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Este es el límite mínimo para el ángulo entre ambos sistemas de coordenadas (entre su eje X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Este es el límite máximo para el ángulo entre ambos sistemas de coordenadas (entre su eje X). - + The object to ground El objeto a fijar - + This is where the part is grounded. Aquí es donde la parte es fijada. @@ -660,17 +662,17 @@ Los archivos se llaman "runPreDrag. smt" y "dragging.log" y están ubicados en e AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. El objeto es asociado a una o más articulaciones. - + Do you want to move the object and delete associated joints? ¿Quiere mover el objeto y eliminar las articulaciones asociadas? - + Move part Mover parte diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_eu.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_eu.ts index 2591d760a2..4a6117379b 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_eu.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_eu.ts @@ -224,7 +224,7 @@ - + Distance Distantzia @@ -240,7 +240,7 @@ - + Angle Angelua @@ -265,17 +265,17 @@ Gerrikoa - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts index 0162816019..c6d473b8a7 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fi.ts @@ -224,7 +224,7 @@ - + Distance Etäisyys @@ -240,7 +240,7 @@ - + Angle Kulma @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts index 4abf6b19c4..f93173940f 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_fr.ts @@ -224,7 +224,7 @@ - + Distance Longueur @@ -240,7 +240,7 @@ - + Angle Angle @@ -265,17 +265,17 @@ Courroie - + You need to select 2 elements from 2 separate parts. Vous devez sélectionner 2 éléments de 2 pièces séparées. - + Radius 1 Rayon 1 - + Pitch radius Rayon primitif @@ -383,119 +383,121 @@ Le type de liaison - - + + The first reference of the joint La première référence de la liaison - + This is the local coordinate system within Reference1's object that will be used for the joint. - Il s'agit du système de coordonnées locales dans l'objet de Référence 1 qui sera utilisé pour la liaison. + Il s'agit du système de coordonnées locales dans l'objet Reference1 qui sera utilisé pour la liaison. - - + + + This is the attachment offset of the first connector of the joint. + Décalage de la fixation du premier connecteur de la liaison. + + + + The second reference of the joint La deuxième référence de la liaison - + This is the local coordinate system within Reference2's object that will be used for the joint. - Il s'agit du système de coordonnées locales dans l'objet de Référence 2 qui sera utilisé pour la liaison. + Il s'agit du système de coordonnées locales dans l'objet Reference2 qui sera utilisé pour la liaison. - + + + This is the attachment offset of the second connector of the joint. + Décalage de la fixation du second connecteur de la liaison. + + + The first object of the joint Le premier objet de la liaison - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Ceci empêche Placement1 d'être recalculé, ce qui permet un positionnement personnalisé de l'emplacement. - + The second object of the joint Le deuxième objet de la liaison - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. - Ceci empêche placement2 d'être recalculé, ce qui permet un positionnement personnalisé de l'emplacement. + Ceci empêche Placement2 d'être recalculé, ce qui permet un positionnement personnalisé de l'emplacement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Il s'agit de la distance de la liaison. Elle n'est utilisée que par la liaison de distance et la crémaillère (rayon de pas), la vis et les engrenages et la courroie (rayon1). - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Il s'agit de la deuxième distance de la liaison. Elle n'est utilisée que par la liaison engrenage pour enregistrer le deuxième rayon. - - This is the rotation of the joint. - Il s'agit de la rotation de la liaison. - - - - This is the offset vector of the joint. - Il s'agit du vecteur de décalage de la liaison. - - - + This indicates if the joint is active. Ceci indique si la liaison est active. - + Enable the minimum length limit of the joint. Permet d'activer la limite de longueur minimale de la liaison. - + Enable the maximum length limit of the joint. Permet d'activer la limite de longueur maximale de la liaison. - + Enable the minimum angle limit of the joint. Permet d'activer la limite minimale de l'angle de la liaison. - + Enable the minimum length of the joint. Permet d'activer la longueur minimale de la liaison. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Il s'agit de la limite minimale de la longueur entre les deux systèmes de coordonnées (entre leur axe Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Il s'agit de la limite maximale de la longueur entre les deux systèmes de coordonnées (entre leur axe Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Il s'agit de la limite minimale de l'angle entre les deux systèmes de coordonnées (entre leurs axes X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Il s'agit de la limite maximale de l'angle entre les deux systèmes de coordonnées (entre leurs axes X). - + The object to ground L'objet à bloquer - + This is where the part is grounded. C'est là que la pièce est bloquée. @@ -660,17 +662,17 @@ Les fichiers se nomment "runPreDrag.asmt" et "dragging.log" et se trouvent dans AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. L'objet est associé à une ou plusieurs liaisons. - + Do you want to move the object and delete associated joints? Voulez-vous déplacer l'objet et supprimer les liaisons associées ? - + Move part Déplacer une pièce diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts index 3c49e1d8b0..3881fb798c 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hr.ts @@ -224,7 +224,7 @@ - + Distance Udaljenost @@ -240,7 +240,7 @@ - + Angle Kut @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts index 92d51505d3..4abf9bd332 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_hu.ts @@ -226,7 +226,7 @@ Külső komponensek beszúrásához győződjön meg arról, hogy a fájl <b& - + Distance Távolság @@ -242,7 +242,7 @@ Külső komponensek beszúrásához győződjön meg arról, hogy a fájl <b& - + Angle Szög @@ -267,17 +267,17 @@ Külső komponensek beszúrásához győződjön meg arról, hogy a fájl <b& Szíj - + You need to select 2 elements from 2 separate parts. 2 elemet kell kiválasztania 2 különálló részből. - + Radius 1 Sugár 1 - + Pitch radius Sugár lejtése @@ -385,120 +385,122 @@ Külső komponensek beszúrásához győződjön meg arról, hogy a fájl <b& Csatlakozás típusa - - + + The first reference of the joint Csatlakozás első hivatkozási pontja - + This is the local coordinate system within Reference1's object that will be used for the joint. Ez a Referencia1 tárgyon belüli helyi koordináta-rendszer, amelyet a csatlakoztatáshoz használni fogunk. - - + + + This is the attachment offset of the first connector of the joint. + Ez az első közös csatlakozó rögzítésének eltolódása. + + + + The second reference of the joint Csatlakozás második referencia pontja - + This is the local coordinate system within Reference2's object that will be used for the joint. Ez a Referencia2 tárgyon belüli helyi koordináta-rendszer, amelyet a csatlakoztatáshoz használni fogunk. - + + + This is the attachment offset of the second connector of the joint. + Ez a második közös csatlakozó rögzítésének eltolódása. + + + The first object of the joint Csatlakozás első tárgya - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Ez megakadályozza a beillesztés1 újraszámítását, lehetővé téve az elhelyezés egyéni pozicionálását. - + The second object of the joint Csatlakozás második tárgya - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Ez megakadályozza a beillesztés2 újraszámítását, lehetővé téve az elhelyezés egyéni pozicionálását. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Ez a kapcsolási távolság. Csak a csatlakozási távolság, a fogaskerék (osztási sugár), a csigakerék, a fogaskerék és az ékszíj (1. sugár) használja - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Ez a második csatlakozási távolság. Ezt csak a fogaskerék csatlakozás használja a második sugár megtartására. - - This is the rotation of the joint. - Ez a csatlakozás elfordulása. - - - - This is the offset vector of the joint. - Ez a csatlakozás eltolási vektora. - - - + This indicates if the joint is active. Ez jelzi, hogy a csatlakozás aktív-e. - + Enable the minimum length limit of the joint. Engedélyezi a csatlakozás minimális hosszhatárát. - + Enable the maximum length limit of the joint. Engedélyezi a csatlakozás maximális hosszhatárát. - + Enable the minimum angle limit of the joint. Engedélyezi a csatlakozás minimális szöghatárát. - + Enable the minimum length of the joint. Engedélyezi a csatlakozás minimális hosszát. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Ez a két koordinátarendszer közötti legkisebb hosszhatár (a Z tengelyük mentén). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Ez a két koordinátarendszer közötti legnagyobb hosszhatár (a Z tengelyük mentén). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Ez a két koordinátarendszer (X-tengelyük) közötti szög minimális határa. - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Ez a két koordinátarendszer (X-tengelyük) közötti szög maximum határa. - + The object to ground A rögzitendő tárgy - + This is where the part is grounded. Itt van az alkatrész rögzítve. @@ -663,17 +665,17 @@ A fájlok neve "runPreDrag.asmt" és "dragging.log", és az std::ofstream alapé AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. A tárgy egy vagy több csatlakozással rendelkezik. - + Do you want to move the object and delete associated joints? El akarja mozgatni a tárgyat és törölni a hozzá tartozó csatlakozásokat? - + Move part Mozgassa a részt diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts index 9bac92f6c6..bfdbc40449 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_it.ts @@ -224,7 +224,7 @@ - + Distance Distanza @@ -240,7 +240,7 @@ - + Angle Angolo @@ -265,17 +265,17 @@ Cinghia - + You need to select 2 elements from 2 separate parts. È necessario selezionare 2 elementi da 2 parti separate. - + Radius 1 Raggio 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ Il tipo di giunto - - + + The first reference of the joint Il primo riferimento del giunto - + This is the local coordinate system within Reference1's object that will be used for the joint. Questo è il sistema di coordinate locali all'interno del primo oggetto che sarà utilizzato per il giunto. - - + + + This is the attachment offset of the first connector of the joint. + Questo è lo spostamento del collegamento del primo connettore del giunto. + + + + The second reference of the joint Il primo riferimento del giunto - + This is the local coordinate system within Reference2's object that will be used for the joint. Questo è il sistema di coordinate locali all'interno del secondo oggetto di riferimento che verrà utilizzato per il giunto. - + + + This is the attachment offset of the second connector of the joint. + Questo è lo spostamento del collegamento del secondo connettore del giunto. + + + The first object of the joint Il primo oggetto del giunto - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Questo impedisce il ricalcolo di Placement1, consentendo il posizionamento personalizzato. - + The second object of the joint Il secondo oggetto del vincolo - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Questo impedisce il ricalcolo di Placement2, consentendo il posizionamento personalizzato. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Questa è la distanza del giunto. È usata solo dal vincolo di distanza e da Cremagliera-Pignone (raggio di passo), Vite e ingranaggi e cinghia (raggio1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Questa è la seconda distanza del vincolo. È usata solo dal vincolo per memorizzare il secondo raggio. - - This is the rotation of the joint. - Questa è la rotazione del vincolo. - - - - This is the offset vector of the joint. - Questo è il vettore di offset del vincolo. - - - + This indicates if the joint is active. Questo indica se il vincolo è attivo. - + Enable the minimum length limit of the joint. Abilita il limite minimo di lunghezza del giunto. - + Enable the maximum length limit of the joint. Abilita il limite massimo di lunghezza del giunto. - + Enable the minimum angle limit of the joint. Abilita il limite minimo di angolo del giunto. - + Enable the minimum length of the joint. Abilita la lunghezza minima del giunto. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Questo è il limite minimo per la lunghezza tra i due sistemi di coordinate (lungo il loro asse Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Questo è il limite massimo per la lunghezza tra i due sistemi di coordinate (lungo il loro asse Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Questo è il limite minimo per l'angolo tra i due sistemi di coordinate (tra i loro assi X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Questo è il limite massimo per l'angolo tra i due sistemi di coordinate (tra i loro assi X). - + The object to ground L'oggetto è fissato - + This is where the part is grounded. Questo è dove la parte è fissata. @@ -660,17 +662,17 @@ I file sono denominati "runPreDrag. asmt" e "dragging.log" e si trovano nella di AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. L'oggetto è associato a uno o più vincoli. - + Do you want to move the object and delete associated joints? Si desidera spostare l'oggetto ed eliminare i vincoli associati? - + Move part Sposta parte diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts index e0f3d916ba..272f09b763 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ja.ts @@ -224,7 +224,7 @@ - + Distance 距離 @@ -236,11 +236,11 @@ Perpendicular - 直交する|鉛直な + 直角 - + Angle 角度 @@ -265,17 +265,17 @@ ベルト - + You need to select 2 elements from 2 separate parts. 2つの別々の部品から2つの要素を選択する必要があります。 - + Radius 1 半径 1 - + Pitch radius ピッチ半径 @@ -383,119 +383,121 @@ ジョイントのタイプ - - + + The first reference of the joint ジョイントの1つ目の参照 - + This is the local coordinate system within Reference1's object that will be used for the joint. ジョイントに使用される Reference1 のオブジェクト内のローカル座標系です。 - - + + + This is the attachment offset of the first connector of the joint. + ジョイントの1番目のコネクターのアタッチメント・オフセットです。 + + + + The second reference of the joint ジョイントの2つ目の参照 - + This is the local coordinate system within Reference2's object that will be used for the joint. ジョイントに使用される Reference2 のオブジェクト内のローカル座標系です。 - + + + This is the attachment offset of the second connector of the joint. + ジョイントの2番目のコネクターのアタッチメント・オフセットです。 + + + The first object of the joint ジョイントの1つ目のオブジェクト - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Placement1 の再計算はされなくなり、カスタムでの位置設定が可能になります。 - + The second object of the joint ジョイントの2つ目のオブジェクト - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Placement2 の再計算はされなくなり、カスタムでの位置設定が可能になります。 - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) ジョイントの距離。距離ジョイント、ラックピニオン (ピッチ半径)、スクリューとギアとベルト (半径1) でだけ使用されます。 - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. ジョイントの2つ目の距離。ギアジョイントでだけ2つ目の半径を格納するために使用されます。 - - This is the rotation of the joint. - ジョイントの回転。 - - - - This is the offset vector of the joint. - ジョイントのオフセットベクトル。 - - - + This indicates if the joint is active. ジョイントがアクティブかどうか - + Enable the minimum length limit of the joint. ジョイントの最小長さ制限を有効にします。 - + Enable the maximum length limit of the joint. ジョイントの最大長さ制限を有効にします。 - + Enable the minimum angle limit of the joint. ジョイントの最小角度制限を有効にします。 - + Enable the minimum length of the joint. ジョイントの最小長さを有効にします。 - + This is the minimum limit for the length between both coordinate systems (along their Z axis). 両座標系の間の (Z軸に方向の) 長さの下限です。 - + This is the maximum limit for the length between both coordinate systems (along their Z axis). 両座標系の間の (Z軸に方向の) 長さの上限です。 - + This is the minimum limit for the angle between both coordinate systems (between their X axis). 両座標系の間の (X軸間の) 角度の下限です。 - + This is the maximum limit for the angle between both coordinate systems (between their X axis). 両座標系の間の (X軸間の) 角度の上限です。 - + The object to ground 接地オブジェクト - + This is where the part is grounded. これはパーツが接地される場所です。 @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. オブジェクトは1つ以上のジョイントに関連付けられています。 - + Do you want to move the object and delete associated joints? オブジェクトを移動して関連付けられているジョイントを削除しますか? - + Move part パーツを移動 diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ka.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ka.ts index 4856ebd518..7d3292d5e9 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ka.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ka.ts @@ -224,7 +224,7 @@ - + Distance დაშორება @@ -240,7 +240,7 @@ - + Angle კუთხე @@ -265,17 +265,17 @@ ქამარი - + You need to select 2 elements from 2 separate parts. გჭირდებათ აირჩიოთ 2 ელემენტი 2 განსხვავებული ნაწილიდან. - + Radius 1 რადიუსი 1 - + Pitch radius ფერდობის რადიუსი @@ -383,119 +383,121 @@ სახსრის ტიპი - - + + The first reference of the joint შეერთების პირველი მიმართვა - + This is the local coordinate system within Reference1's object that will be used for the joint. ეს ლოკალური კოორდინატების სისტემაა მიმართვა1-ის ობიექტში, რომელიც შეერთებისთვის იქნება გამოყენებული. - - + + + This is the attachment offset of the first connector of the joint. + ეს მიიმაგრების წანაცვლებაა პირველი სახსრის დამკავშირებლისთვის. + + + + The second reference of the joint შეერთების მეორე მიმართვა - + This is the local coordinate system within Reference2's object that will be used for the joint. ეს ლოკალური კოორდინატების სისტემაა მიმართვა2-ის ობიექტში, რომელიც შეერთებისთვის იქნება გამოყენებული. - + + + This is the attachment offset of the second connector of the joint. + ეს მიიმაგრების წანაცვლებაა მეორე სახსრის დამკავშირებლისთვის. + + + The first object of the joint სახსრის პირველი ობიექტი - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint სახსრის მეორე ობიექტი - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - ეს სახსრის შებრუნებაა. - - - - This is the offset vector of the joint. - ეს სახსრის წანაცვლების ვექტორია. - - - + This indicates if the joint is active. ეს მიუთითებს, აქტიურია თუ არა სახსარი. - + Enable the minimum length limit of the joint. სახსრის მინიმალური სიგრძის ლიმიტის ჩართვა. - + Enable the maximum length limit of the joint. სახსრის მაქსიმალური სიგრძის ლიმიტის ჩართვა. - + Enable the minimum angle limit of the joint. სახსრის მინიმალური კუთხის ლიმიტის ჩართვა. - + Enable the minimum length of the joint. სახსრის მინიმალური სიგრძის ჩართვა. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground ობიექტი დამაგრებამდე - + This is where the part is grounded. ეს ის ადგილია, სადაც ნაწილია დამაგრებული. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. ობიექტი ასოცირებულია ერთ ან მეტ სახსართან. - + Do you want to move the object and delete associated joints? გნებავთ გადაიტანოთ ობიექტი და წაშალოთ ასოცირებული სახსრები? - + Move part ნაწილის გადატანა diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ko.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ko.ts index 092bd4766f..2e04ae4702 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ko.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ko.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - 이것은 관절의 편차 향량(vector) 입니다. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_lt.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_lt.ts index 16a380089a..9fb192cd55 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_lt.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_lt.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle Kampas @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts index 87d42562a6..440eaa1b64 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_nl.ts @@ -224,7 +224,7 @@ - + Distance Afstand @@ -240,7 +240,7 @@ - + Angle Hoek @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Straal 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Onderdeel verplaatsen diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts index 97c95cf7a9..0b33acbe7d 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pl.ts @@ -242,7 +242,7 @@ Aby wstawić komponenty zewnętrzne, upewnij się, że plik jest otwarty w bież - + Distance Odległość @@ -258,7 +258,7 @@ Aby wstawić komponenty zewnętrzne, upewnij się, że plik jest otwarty w bież - + Angle Kąt @@ -283,17 +283,17 @@ Aby wstawić komponenty zewnętrzne, upewnij się, że plik jest otwarty w bież Pas - + You need to select 2 elements from 2 separate parts. Musisz wybrać dwa elementy z dwóch oddzielnych części. - + Radius 1 Promień 1 - + Pitch radius Promień nachylenia @@ -406,122 +406,124 @@ Nazwy tych kolumn można zmienić, klikając dwukrotnie lub naciskając klawisz Typ połączenia - - + + The first reference of the joint Pierwsze odniesienie do połączenia - + This is the local coordinate system within Reference1's object that will be used for the joint. Jest to lokalny układ współrzędnych w pierwszym obiekcie Odniesienie 1, który będzie używany dla połączenia. - - + + + This is the attachment offset of the first connector of the joint. + Jest to odsunięcie mocowania pierwszego złącza połączenia. + + + + The second reference of the joint Drugie odniesienie do połączenia - + This is the local coordinate system within Reference2's object that will be used for the joint. Jest to lokalny układ współrzędnych w pierwszym obiekcie Odniesienie 2, który będzie używany dla połączenia. - + + + This is the attachment offset of the second connector of the joint. + Jest to odsunięcie mocowania drugiego złącza połączenia. + + + The first object of the joint Pierwszy obiekt połączenia - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Zapobiega to przeliczaniu pierwszego umiejscowienia, umożliwiając niestandardowe pozycjonowanie umiejscowienia. - + The second object of the joint Drugi obiekt połączenia - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Zapobiega to przeliczaniu drugiego umiejscowienia, umożliwiając niestandardowe pozycjonowanie umiejscowienia. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) To jest odległość połączenia. Jest używana tylko przez połączenie dystansowe, przekładni zębatkowej (promień skoku), śrubowej, zębatej oraz pasowej (promień 1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Jest to druga odległość połączenia. Jest on używany tylko przez połączenie zębate do przechowywania drugiego promienia. - - This is the rotation of the joint. - Jest to obrót połączenia. - - - - This is the offset vector of the joint. - Jest to wektor odsunięcia połączenia. - - - + This indicates if the joint is active. Wskazuje to, czy połączenie jest aktywne. - + Enable the minimum length limit of the joint. Włącz limit minimalnej długości połączenia. - + Enable the maximum length limit of the joint. Włącz limit maksymalnej długości połączenia. - + Enable the minimum angle limit of the joint. Włącz limit minimalny kąta połączenia. - + Enable the minimum length of the joint. Włącz minimalną długość połączenia. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Jest to minimalny limit długości między oboma układami współrzędnych (wzdłuż ich osi Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Jest to maksymalny limit długości między oboma układami współrzędnych (wzdłuż ich osi Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Jest to minimalny limit kąta między oboma układami współrzędnych (między ich osiami X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Jest to maksymalny limit kąta między oboma układami współrzędnych (między ich osiami X). - + The object to ground Obiekt do zakotwienia - + This is where the part is grounded. W tym miejscu część jest zakotwiona. @@ -686,17 +688,17 @@ Pliki noszą nazwy "runPreDrag.asmt" i "dragging.log" i znajdują się w domyśl AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Obiekt jest powiązany z jednym lub większą liczbą połączeń. - + Do you want to move the object and delete associated joints? Czy chcesz przenieść obiekt i usunąć powiązane połączenia? - + Move part Przesuń część diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts index 434052f83d..7160351ec2 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-BR.ts @@ -224,7 +224,7 @@ - + Distance Distância @@ -240,7 +240,7 @@ - + Angle Ângulo @@ -265,17 +265,17 @@ Correia - + You need to select 2 elements from 2 separate parts. Você precisa selecionar 2 elementos de 2 peças separadas. - + Radius 1 Raio 1 - + Pitch radius Raio de inclinação @@ -383,119 +383,121 @@ O tipo da junta - - + + The first reference of the joint A primeira referência desta ariculação - + This is the local coordinate system within Reference1's object that will be used for the joint. O sistema local de coordenadas dentro do objeto de referência que será usado nesta articulação. - - + + + This is the attachment offset of the first connector of the joint. + Este é o deslocamento de fixação do primeiro conector da junta. + + + + The second reference of the joint A segunda referência desta ariculação - + This is the local coordinate system within Reference2's object that will be used for the joint. O sistema local de coordenadas dentro do segundo objeto de referência que será usado nesta articulação. - + + + This is the attachment offset of the second connector of the joint. + Este é o deslocamento de fixação do segundo conector da junta. + + + The first object of the joint O primeiro objeto da junta - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Isso impede que o Posicionamento 1 seja recomputado, permitindo o posicionamento personalizado. - + The second object of the joint O segundo objeto da junta - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Isso impede que o Placement2 seja recomputado, permitindo o posicionamento personalizado. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Esta é a distância da articulação. É usada apenas pelas articulações Distância, Rack, Pinion (raio de tom), Screw, Gears e Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Esta é a segunda distância da articulação. Ela é usada apenas pela articulação Gear para armazenar o segundo raio. - - This is the rotation of the joint. - Esta é a rotação da junta. - - - - This is the offset vector of the joint. - Este é o vetor de deslocamento da junta. - - - + This indicates if the joint is active. Isto indica se a junta está activa. - + Enable the minimum length limit of the joint. Habilitar o limite mínimo de comprimento da articulação. - + Enable the maximum length limit of the joint. Habilitar o limite máximo de comprimento da articulação. - + Enable the minimum angle limit of the joint. Ativar o limite mínimo de ângulo da articulação. - + Enable the minimum length of the joint. Ativar o comprimento mínimo da articulação. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Este é o limite mínimo para o comprimento entre os dois sistemas de coordenadas (ao longo do eixo Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Este é o limite máximo para o comprimento entre os dois sistemas de coordenadas (ao longo do eixo Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Este é o limite mínimo para o ângulo entre os dois sistemas de coordenadas (entre seu eixo X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Este é o limite máximo para o ângulo entre os dois sistemas de coordenadas (entre seu eixo X). - + The object to ground Fixar objeto - + This is where the part is grounded. É aqui que a peça está fixada. @@ -660,17 +662,17 @@ Os arquivos são chamados "runPreDrag.asmt" e "dragging.log" e localizam-se no d AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. O objeto está associado a uma ou mais juntas. - + Do you want to move the object and delete associated joints? Você deseja mover o objeto e excluir juntas associadas? - + Move part Mover peça @@ -920,7 +922,7 @@ Pressione ESC para cancelar. The BOM object is a document object that stores the settings of your BOM. It is also a spreadsheet object so you can easily visualize the BOM. If you don't need the BOM object to be saved as a document object, you can simply export and cancel the task. - The BOM object is a document object that stores the settings of your BOM. It is also a spreadsheet object so you can easily visualize the BOM. If you don't need the BOM object to be saved as a document object, you can simply export and cancel the task. + O objeto LDM é um objeto de documento que armazena as configurações da sua LDM. É também um objeto de planilha para poder você visualizar facilmente a LDM. Se você não precisa que o objeto BOM seja salvo como um objeto de documento, basta exportar e cancelar a tarefa. diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-PT.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-PT.ts index fa8f4e5165..42e744bd85 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-PT.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_pt-PT.ts @@ -224,7 +224,7 @@ - + Distance Distância @@ -240,7 +240,7 @@ - + Angle Ângulo @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts index b9e19c6ed7..b123f56914 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ro.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle Unghi @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts index f61aa26db7..84cab8909f 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_ru.ts @@ -224,7 +224,7 @@ - + Distance Расстояние @@ -240,7 +240,7 @@ - + Angle Угол @@ -265,19 +265,19 @@ Ремень - + You need to select 2 elements from 2 separate parts. Необходимо выбрать 2 элемента от 2 отдельных деталей. - + Radius 1 Радиус 1 - + Pitch radius - Pitch radius + Радиус шага @@ -342,7 +342,7 @@ Sub-assemblies children : If checked, Sub assemblies children will be added to the bill of materials. - Sub-assemblies children : If checked, Sub assemblies children will be added to the bill of materials. + Дочерние подсборки: если этот флажок установлен, дочерние подсборки будут добавлены в спецификацию материалов. @@ -352,7 +352,7 @@ Only parts : If checked, only Part containers and sub-assemblies will be added to the bill of materials. Solids like PartDesign Bodies, fasteners or Part workbench primitives will be ignored. - Only parts : If checked, only Part containers and sub-assemblies will be added to the bill of materials. Solids like PartDesign Bodies, fasteners or Part workbench primitives will be ignored. + Только детали: если отмечено, в спецификацию материалов будут добавлены только контейнеры и подсборки деталей. Твердые тела, такие как тела PartDesign, крепежи или примитивы верстака деталей, будут игнорироваться. @@ -362,17 +362,17 @@ Auto columns : (Index, Quantity, Name...) are populated automatically. Any modification you make will be overridden. These columns cannot be renamed. - Auto columns : (Index, Quantity, Name...) are populated automatically. Any modification you make will be overridden. These columns cannot be renamed. + Автостолбцы: (Индекс, Количество, Имя...) заполняются автоматически. Любые внесенные вами изменения будут переопределены. Эти столбцы нельзя переименовать. Custom columns : 'Description' and other custom columns you add by clicking on 'Add column' will not have their data overwritten. These columns can be renamed by double-clicking or pressing F2 (Renaming a column will currently lose its data). - Custom columns : 'Description' and other custom columns you add by clicking on 'Add column' will not have their data overwritten. These columns can be renamed by double-clicking or pressing F2 (Renaming a column will currently lose its data). + Пользовательские столбцы: «Описание» и другие пользовательские столбцы, которые вы добавляете, нажимая «Добавить столбец», не будут перезаписывать свои данные. Эти столбцы можно переименовать, дважды щелкнув или нажав F2 (переименование столбца в настоящее время приведет к потере данных). Any column (custom or not) can be deleted by pressing Del. - Any column (custom or not) can be deleted by pressing Del. + Любой столбец (пользовательский или нет) можно удалить, нажав клавишу Del. @@ -383,119 +383,121 @@ Тип соединения - - + + The first reference of the joint - The first reference of the joint + Первая ссылка соединения - + This is the local coordinate system within Reference1's object that will be used for the joint. - This is the local coordinate system within Reference1's object that will be used for the joint. + Это локальная система координат внутри объекта Reference1, которая будет использоваться для соединения. - - + + + This is the attachment offset of the first connector of the joint. + Это смещение крепления первого соединителя соединения. + + + + The second reference of the joint - The second reference of the joint + Вторая ссылка на совместное - + This is the local coordinate system within Reference2's object that will be used for the joint. - This is the local coordinate system within Reference2's object that will be used for the joint. + Это локальная система координат внутри объекта Reference2, которая будет использоваться для соединения. - + + + This is the attachment offset of the second connector of the joint. + Это смещение крепления второго соединителя соединения. + + + The first object of the joint Первый объект объединения - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Это предотвращает перерасчет Placement1, позволяя настраивать позиционирование места размещения. - + The second object of the joint Второй объект соединения - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Это предотвращает перерасчет Placement2, позволяя настраивать позиционирование места размещения. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) + Это расстояние соединения. Используется только дистанционным соединением и зубчатой ​​рейкой (радиус шага), винтом и шестернями и ремнем (радиус 1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Это второе расстояние сустава. Он используется только зубчатым соединением для хранения второго радиуса. - - This is the rotation of the joint. - Это вращение соединения. - - - - This is the offset vector of the joint. - Это вектор смещения соединения. - - - + This indicates if the joint is active. Это указывает на то, активно ли соединение. - + Enable the minimum length limit of the joint. - Enable the minimum length limit of the joint. + Включите ограничение минимальной длины соединения. - + Enable the maximum length limit of the joint. - Enable the maximum length limit of the joint. + Включить ограничение максимальной длины соединения. - + Enable the minimum angle limit of the joint. - Enable the minimum angle limit of the joint. + Включить ограничение минимального угла соединения. - + Enable the minimum length of the joint. - Enable the minimum length of the joint. + Включите минимальную длину стыка. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Это минимальный предел длины между обеими системами координат (вдоль их оси Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Это максимальный предел длины между обеими системами координат (вдоль их оси Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Это минимальный предел угла между обеими системами координат (между их осью X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Это максимальный предел угла между обеими системами координат (между их осью X). - + The object to ground Объект для закрепления - + This is where the part is grounded. Это деталь для крепления. @@ -503,7 +505,7 @@ The objects moved by the move - The objects moved by the move + Объекты перемещены инструментом "Переместить" @@ -638,13 +640,13 @@ Log the dragging steps of the solver. Useful if you want to report a bug. The files are named "runPreDrag.asmt" and "dragging.log" and are located in the default directory of std::ofstream (on Windows it's the desktop) - Log the dragging steps of the solver. Useful if you want to report a bug. -The files are named "runPreDrag.asmt" and "dragging.log" and are located in the default directory of std::ofstream (on Windows it's the desktop) + Записывайте шаги перетаскивания решателя. Полезно, если вы хотите сообщить об ошибке. +Файлы называются "runPreDrag.asmt" и "dragging.log" и находятся в каталоге по умолчанию std::ofstream (в Windows это рабочий стол) Log dragging steps - Log dragging steps + Шаги перетаскивания (Log) @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Объект связан с одним или несколькими соединениями. - + Do you want to move the object and delete associated joints? Вы хотите переместить объект и удалить связанные соединения? - + Move part Переместить деталь @@ -818,32 +820,32 @@ Press ESC to cancel. If checked, Sub assemblies children will be added to the bill of materials. - If checked, Sub assemblies children will be added to the bill of materials. + Если этот флажок установлен, дочерние элементы подсборок будут добавлены в спецификацию материалов. Sub-assemblies children - Sub-assemblies children + Подсистемы детей If checked, Parts children will be added to the bill of materials. - If checked, Parts children will be added to the bill of materials. + Если этот флажок установлен, дочерние элементы будут добавлены в спецификацию материалов. Parts children - Parts children + Части детей If checked, only Part containers and sub-assemblies will be added to the bill of materials. Solids like PartDesign Bodies, fasteners or Part workbench primitives will be ignored. - If checked, only Part containers and sub-assemblies will be added to the bill of materials. Solids like PartDesign Bodies, fasteners or Part workbench primitives will be ignored. + Если флажок установлен, в спецификацию материалов будут добавлены только контейнеры и подсборки деталей. Твердые тела, такие как тела PartDesign, крепежи или примитивы верстака деталей, будут игнорироваться. Only parts - Only parts + Только части @@ -915,17 +917,17 @@ Press ESC to cancel. Create a bill of materials of the current assembly. If an assembly is active, it will be a BOM of this assembly. Else it will be a BOM of the whole document. - Create a bill of materials of the current assembly. If an assembly is active, it will be a BOM of this assembly. Else it will be a BOM of the whole document. + Создать спецификацию текущей сборки. Если сборка активна, это будет спецификация этой сборки. В противном случае это будет спецификация всего документа. The BOM object is a document object that stores the settings of your BOM. It is also a spreadsheet object so you can easily visualize the BOM. If you don't need the BOM object to be saved as a document object, you can simply export and cancel the task. - The BOM object is a document object that stores the settings of your BOM. It is also a spreadsheet object so you can easily visualize the BOM. If you don't need the BOM object to be saved as a document object, you can simply export and cancel the task. + Объект BOM — это объект документа, в котором хранятся настройки вашего BOM. Это также объект электронной таблицы, поэтому вы можете легко визуализировать BOM. Если вам не нужно сохранять объект BOM как объект документа, вы можете просто экспортировать и отменить задачу. The columns 'Index', 'Name', 'File Name' and 'Quantity' are automatically generated on recompute. The 'Description' and custom columns are not overwritten. - The columns 'Index', 'Name', 'File Name' and 'Quantity' are automatically generated on recompute. The 'Description' and custom columns are not overwritten. + Столбцы «Индекс», «Имя», «Имя файла» и «Количество» автоматически генерируются при пересчете. Столбцы «Описание» и пользовательские столбцы не перезаписываются. diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sl.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sl.ts index 3367790b9e..5aa6433aa0 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sl.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sl.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle Kot @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ Vrsta spoja/zgloba - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Prvi predmet za spajanje - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr-CS.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr-CS.ts index ad8c0b5b8a..b59cc3e1b3 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr-CS.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr-CS.ts @@ -224,7 +224,7 @@ - + Distance Rastojanje @@ -240,7 +240,7 @@ - + Angle Ugaoni @@ -265,17 +265,17 @@ Remeni - + You need to select 2 elements from 2 separate parts. Potrebno je izabrati 2 elementa sa 2 različita dela. - + Radius 1 Poluprečnik 1 - + Pitch radius Podeoni poluprečnik @@ -383,119 +383,121 @@ Vrsta spoja - - + + The first reference of the joint Prva referenca u spoju - + This is the local coordinate system within Reference1's object that will be used for the joint. Ovo je lokalni koordinatni sistem unutar referentnog objekta 1 koji će se koristiti za spoj. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint Druga referenca u spoju - + This is the local coordinate system within Reference2's object that will be used for the joint. Ovo je lokalni koordinatni sistem unutar referentnog objekta 2 koji će se koristiti za spoj. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Prvi objekat u spoju - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Ovo sprečava da se ponovo izračunava Placement1 omogućavajući sopstveno pozicioniranje. - + The second object of the joint Drugi objekat u spoju - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Ovo sprečava da se ponovo izračunava Placement2 omogućavajući sopstveno pozicioniranje. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Rastojanje spoja. Koristi se kod ravanskog i navojnog spoja, a takođe i kod zupčastog, remenog (poluprečnik) i prenosnog spoja sa zupčastom letvom (poluprečnik koraka) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Ovo je drugo rastojanje spoja. Koristi se samo kod zupčastog spoja da odredi drugi poluprečnik. - - This is the rotation of the joint. - Rotacija spoja. - - - - This is the offset vector of the joint. - Vektor odmaka spoja. - - - + This indicates if the joint is active. Ovo pokazuje da li je spoj aktivan. - + Enable the minimum length limit of the joint. Omogući minimalno dužinsko ograničenje spoja. - + Enable the maximum length limit of the joint. Omogući maksimalno dužinsko ograničenje spoja. - + Enable the minimum angle limit of the joint. Omogući minimalno ugaono ograničenje spoja. - + Enable the minimum length of the joint. Omogući minimalno rastojanje spoja. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Ovo je minimalno dužinsko ograničenje između koordinatnih sistema (uzduž njihovih Z osa). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Ovo je maksimalno dužinsko ograničenje između koordinatnih sistema (uzduž njihovih Z osa). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Ovo je minimalno ugaono ograničenje između koordinatnih sistema (između njihovih X osa). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Ovo je maksimalno ugaono ograničenje između koordinatnih sistema (između njihovih X osa). - + The object to ground Objekat koji treba učvrstiti - + This is where the part is grounded. Ovde je mesto gde je deo učvršćen. @@ -660,17 +662,17 @@ Datoteke se zovu „runPreDrag.asmt“ i „dragging.log“ i nalaze se u podraz AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Objektu su pridruženi jedan ili više spojeva. - + Do you want to move the object and delete associated joints? Da li želiš pomeriti objekat i obrisati pridružene spojeve? - + Move part Pomeri deo diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr.ts index 38f5999888..e2cbeb7a3d 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sr.ts @@ -224,7 +224,7 @@ - + Distance Растојање @@ -240,7 +240,7 @@ - + Angle Угаони @@ -265,17 +265,17 @@ Ремени - + You need to select 2 elements from 2 separate parts. Потребно је изабрати 2 елемента са 2 различита дела. - + Radius 1 Полупречник 1 - + Pitch radius Подеони полупречник @@ -383,119 +383,121 @@ Врста споја - - + + The first reference of the joint Прва референца у споју - + This is the local coordinate system within Reference1's object that will be used for the joint. Ово је локални координатни систем унутар референтног објекта 1 који ће се користити за спој. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint Друга референца у споју - + This is the local coordinate system within Reference2's object that will be used for the joint. Ово је локални координатни систем унутар референтног објекта 2 који ће се користити за спој. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Први објекат у споју - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Ово спречава да се поново израчунава Placement1 омогућавајући сопствено позиционирање. - + The second object of the joint Други објекат у споју - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Ово спречава да се поново израчунава Placement2 омогућавајући сопствено позиционирање. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Растојање споја. Користи се код раванског и навојног споја, а такође и код зупчастог, ременог (полупречник) и преносног споја са зупчастом летвом (полупречник корака) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Ово је друго растојање споја. Користи се само код зупчастог споја да одреди други полупречник. - - This is the rotation of the joint. - Ротација споја. - - - - This is the offset vector of the joint. - Вектор одмака споја. - - - + This indicates if the joint is active. Ово показује да ли је спој активан. - + Enable the minimum length limit of the joint. Омогући минимално дужинско ограничење споја. - + Enable the maximum length limit of the joint. Омогући максимално дужинско ограничење споја. - + Enable the minimum angle limit of the joint. Омогући минимално угаоно ограничење споја. - + Enable the minimum length of the joint. Омогући минимално растојање споја. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Ово је минимално дужинско ограничење између координатних система (уздуж њихових З оса). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Ово је максимално дужинско ограничење између координатних система (уздуж њихових З оса). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Ово је минимално угаоно ограничење између координатних система (између њихових X оса). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Ово је максимално угаоно ограничење између координатних система (између њихових X оса). - + The object to ground Објекат који треба учврстити - + This is where the part is grounded. Овде је место где је део учвршћен. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Објекту су придружени један или више спојева. - + Do you want to move the object and delete associated joints? Да ли желиш померити објекат и обрисати придружене спојеве? - + Move part Помеи део diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts index fb2980cb27..38db91b4de 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_sv-SE.ts @@ -224,7 +224,7 @@ - + Distance Distans @@ -240,7 +240,7 @@ - + Angle Vinkel @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts index cf8d332bc9..e5393fd4ee 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_tr.ts @@ -224,7 +224,7 @@ - + Distance Uzaklık @@ -240,7 +240,7 @@ - + Angle Açı @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Parçayı taşı diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts index 3e6ac2d5da..6cf019c016 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_uk.ts @@ -224,7 +224,7 @@ - + Distance Відстань @@ -240,7 +240,7 @@ - + Angle Кут @@ -265,17 +265,17 @@ Ремінь - + You need to select 2 elements from 2 separate parts. Вам потрібно вибрати 2 елементи з 2 окремих деталей. - + Radius 1 Радіус 1 - + Pitch radius Радіус кроку @@ -383,119 +383,121 @@ Тип з'єднання - - + + The first reference of the joint Перше посилання на з'єднання - + This is the local coordinate system within Reference1's object that will be used for the joint. Це локальна система координат в об'єкті Посилання1, яка буде використана для з'єднання. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint Друге посилання на з'єднання - + This is the local coordinate system within Reference2's object that will be used for the joint. Це локальна система координат в об'єкті Посилання2, яка буде використовуватися для з'єднання. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint Перший об'єкт з'єднання - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. Це запобігає переобчисленню Розміщення 1, що дає змогу користувацькому позиціюванню цього розміщення. - + The second object of the joint Другий об'єкт з'єднання - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. Це запобігає переобчисленню Розміщення 2, що дає змогу користувацькому позиціюванню цього розміщення. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) Це відстань з'єднання. Використовується тільки для з'єднання "Відстань" і "Рейка і шестерня" (радіус кроку), "Гвинт" і "Шестерня і ремінь" (радіус1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. Це друга відстань з'єднання. Вона використовується тільки зубчастим з'єднанням для зберігання другого радіуса. - - This is the rotation of the joint. - Це обертання з'єднання. - - - - This is the offset vector of the joint. - Це вектор зміщення з'єднання. - - - + This indicates if the joint is active. Це свідчить про те, що з'єднання активне. - + Enable the minimum length limit of the joint. Увімкніть обмеження мінімальної довжини з'єднання. - + Enable the maximum length limit of the joint. Увімкніть обмеження максимальної довжини з'єднання. - + Enable the minimum angle limit of the joint. Увімкніть обмеження мінімального кута з'єднання. - + Enable the minimum length of the joint. Увімкніть мінімальну довжину з'єднання. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). Це мінімальна межа для довжини між обома системами координат (вздовж їхньої осі Z). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). Це максимальна межа для довжини між обома системами координат (вздовж їхньої осі Z). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). Це мінімальна межа для кута між обома системами координат (між їхніми осями X). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). Це максимальна межа для кута між обома системами координат (між їхніми осями X). - + The object to ground Об'єкт для закріплення - + This is where the part is grounded. Це позиція, в якій зафіксовано об'єкт. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. Об'єкт пов'язаний з одним або декількома з'єднаннями. - + Do you want to move the object and delete associated joints? Ви хочете перемістити об'єкт і видалити пов'язані з ним з'єднання? - + Move part Перемістити деталь diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_val-ES.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_val-ES.ts index 614e403314..fdc27614c1 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_val-ES.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_val-ES.ts @@ -224,7 +224,7 @@ - + Distance Distance @@ -240,7 +240,7 @@ - + Angle Angle @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ The type of the joint - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts index b2898e0f4c..09ab3c0d8b 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-CN.ts @@ -224,7 +224,7 @@ - + Distance 距离 @@ -240,7 +240,7 @@ - + Angle 角度 @@ -265,17 +265,17 @@ Belt - + You need to select 2 elements from 2 separate parts. You need to select 2 elements from 2 separate parts. - + Radius 1 Radius 1 - + Pitch radius Pitch radius @@ -383,119 +383,121 @@ 接头类型 - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint The first object of the joint - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint The second object of the joint - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. This indicates if the joint is active. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. The object is associated to one or more joints. - + Do you want to move the object and delete associated joints? Do you want to move the object and delete associated joints? - + Move part Move part diff --git a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts index a7eb8a4e68..352c4dbf64 100644 --- a/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts +++ b/src/Mod/Assembly/Gui/Resources/translations/Assembly_zh-TW.ts @@ -133,7 +133,7 @@ Insert Component - Insert Component + 插入組件 @@ -224,7 +224,7 @@ - + Distance 距離 @@ -240,7 +240,7 @@ - + Angle 角度 @@ -252,32 +252,32 @@ Screw - Screw + 螺絲 Gears - Gears + 齒輪 Belt - Belt + 輸送帶 - + You need to select 2 elements from 2 separate parts. - You need to select 2 elements from 2 separate parts. + 您需要自 2 個分離的零件選擇 2 個元件。 - + Radius 1 - Radius 1 + 半徑 1 - + Pitch radius - Pitch radius + 螺距半徑 @@ -297,12 +297,12 @@ Index (auto) - Index (auto) + 索引 (自動) Name (auto) - Name (auto) + 名稱 (自動) @@ -312,12 +312,12 @@ File Name (auto) - File Name (auto) + 檔案名稱 (自動) Quantity (auto) - Quantity (auto) + 數量 (自動) @@ -327,7 +327,7 @@ Duplicate Name - Duplicate Name + 名稱重複 @@ -337,7 +337,7 @@ Options: - Options: + 選項: @@ -383,119 +383,121 @@ 接頭類型 - - + + The first reference of the joint The first reference of the joint - + This is the local coordinate system within Reference1's object that will be used for the joint. This is the local coordinate system within Reference1's object that will be used for the joint. - - + + + This is the attachment offset of the first connector of the joint. + This is the attachment offset of the first connector of the joint. + + + + The second reference of the joint The second reference of the joint - + This is the local coordinate system within Reference2's object that will be used for the joint. This is the local coordinate system within Reference2's object that will be used for the joint. - + + + This is the attachment offset of the second connector of the joint. + This is the attachment offset of the second connector of the joint. + + + The first object of the joint 接頭的第一個物件 - + This prevents Placement1 from recomputing, enabling custom positioning of the placement. This prevents Placement1 from recomputing, enabling custom positioning of the placement. - + The second object of the joint 接頭的第二個物件 - + This prevents Placement2 from recomputing, enabling custom positioning of the placement. This prevents Placement2 from recomputing, enabling custom positioning of the placement. - + This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) This is the distance of the joint. It is used only by the Distance joint and Rack and Pinion (pitch radius), Screw and Gears and Belt (radius1) - + This is the second distance of the joint. It is used only by the gear joint to store the second radius. This is the second distance of the joint. It is used only by the gear joint to store the second radius. - - This is the rotation of the joint. - This is the rotation of the joint. - - - - This is the offset vector of the joint. - This is the offset vector of the joint. - - - + This indicates if the joint is active. 這表示接頭是否處於活躍狀態. - + Enable the minimum length limit of the joint. Enable the minimum length limit of the joint. - + Enable the maximum length limit of the joint. Enable the maximum length limit of the joint. - + Enable the minimum angle limit of the joint. Enable the minimum angle limit of the joint. - + Enable the minimum length of the joint. Enable the minimum length of the joint. - + This is the minimum limit for the length between both coordinate systems (along their Z axis). This is the minimum limit for the length between both coordinate systems (along their Z axis). - + This is the maximum limit for the length between both coordinate systems (along their Z axis). This is the maximum limit for the length between both coordinate systems (along their Z axis). - + This is the minimum limit for the angle between both coordinate systems (between their X axis). This is the minimum limit for the angle between both coordinate systems (between their X axis). - + This is the maximum limit for the angle between both coordinate systems (between their X axis). This is the maximum limit for the angle between both coordinate systems (between their X axis). - + The object to ground The object to ground - + This is where the part is grounded. This is where the part is grounded. @@ -513,7 +515,7 @@ The type of the move - The type of the move + 移動的類型 @@ -531,7 +533,7 @@ Radius 2 - Radius 2 + 半徑 2 @@ -556,32 +558,32 @@ Limits - Limits + 限制 Min length - Min length + 最小長度 Max length - Max length + 最大長度 Min angle - Min angle + 最小角度 Max angle - Max angle + 最大角度 Reverse rotation - Reverse rotation + 反向旋轉 @@ -589,7 +591,7 @@ Insert Component - Insert Component + 插入組件 @@ -614,7 +616,7 @@ Show only parts - Show only parts + 只顯示零件 @@ -632,7 +634,7 @@ Esc leaves edit mode - Esc leaves edit mode + Esc 離開編輯模式 @@ -660,17 +662,17 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the AssemblyGui::ViewProviderAssembly - + The object is associated to one or more joints. 該物件與一個或多個接頭相關聯. - + Do you want to move the object and delete associated joints? 您要移動物件並刪除關聯的接頭嗎? - + Move part 移動零件 @@ -766,12 +768,12 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the Create Exploded View - Create Exploded View + 建立爆炸視圖 Create an exploded view of the current assembly. - Create an exploded view of the current assembly. + 建立目前組件的爆炸視圖。 @@ -779,7 +781,7 @@ The files are named "runPreDrag.asmt" and "dragging.log" and are located in the Create Exploded View - Create Exploded View + 建立爆炸視圖 @@ -808,7 +810,7 @@ Press ESC to cancel. Explode radially - Explode radially + 徑向爆炸圖 @@ -871,7 +873,7 @@ Press ESC to cancel. Create Parallel Joint - Create Parallel Joint + 建立平行接頭 @@ -897,7 +899,7 @@ Press ESC to cancel. Create Angle Joint - Create Angle Joint + 建立角度接頭 diff --git a/src/Mod/Assembly/Gui/ViewProviderAssembly.cpp b/src/Mod/Assembly/Gui/ViewProviderAssembly.cpp index 834006cb84..45abfeffd8 100644 --- a/src/Mod/Assembly/Gui/ViewProviderAssembly.cpp +++ b/src/Mod/Assembly/Gui/ViewProviderAssembly.cpp @@ -46,6 +46,8 @@ #include #include +#include + #include #include #include @@ -618,7 +620,7 @@ bool ViewProviderAssembly::getSelectedObjectsWithinAssembly(bool addPreselection std::vector objsSubNames = selObj.getSubNames(); for (auto& subNamesStr : objsSubNames) { - std::vector subNames = AssemblyObject::splitSubName(subNamesStr); + std::vector subNames = Base::Tools::splitSubName(subNamesStr); if (subNames.empty()) { continue; } @@ -764,7 +766,7 @@ ViewProviderAssembly::DragMode ViewProviderAssembly::findDragMode() const char* plcPropName = (pName == "Reference1") ? "Placement1" : "Placement2"; // jcsPlc is relative to the Object - jcsPlc = AssemblyObject::getPlacementFromProp(movingJoint, plcPropName); + jcsPlc = App::GeoFeature::getPlacementFromProp(movingJoint, plcPropName); // Make jcsGlobalPlc relative to the origin of the doc auto* ref = @@ -773,7 +775,7 @@ ViewProviderAssembly::DragMode ViewProviderAssembly::findDragMode() return DragMode::Translation; } auto* obj = assemblyPart->getObjFromRef(movingJoint, pName.c_str()); - Base::Placement global_plc = AssemblyObject::getGlobalPlacement(obj, ref); + Base::Placement global_plc = App::GeoFeature::getGlobalPlacement(obj, ref); jcsGlobalPlc = global_plc * jcsPlc; // Add downstream parts so that they move together @@ -920,7 +922,7 @@ void ViewProviderAssembly::initMoveDragger() App::DocumentObject* part = docsToMove[0].obj; draggerInitPlc = - AssemblyObject::getGlobalPlacement(part, docsToMove[0].rootObj, docsToMove[0].sub); + App::GeoFeature::getGlobalPlacement(part, docsToMove[0].rootObj, docsToMove[0].sub); std::vector listOfObjs; std::vector listOfRefs; for (auto& movingObj : docsToMove) { @@ -1130,11 +1132,11 @@ ViewProviderAssembly::getCenterOfBoundingBox(const std::vector& mo // bboxCenter does not take into account obj global placement Base::Placement plc(bboxCenter, Base::Rotation()); // Change plc to be relative to the object placement. - Base::Placement objPlc = AssemblyObject::getPlacementFromProp(movingObj.obj, "Placement"); + Base::Placement objPlc = App::GeoFeature::getPlacementFromProp(movingObj.obj, "Placement"); plc = objPlc.inverse() * plc; // Change plc to be relative to the origin of the document. Base::Placement global_plc = - AssemblyObject::getGlobalPlacement(movingObj.obj, movingObj.rootObj, movingObj.sub); + App::GeoFeature::getGlobalPlacement(movingObj.obj, movingObj.rootObj, movingObj.sub); plc = global_plc * plc; bboxCenter = plc.getPosition(); diff --git a/src/Mod/Assembly/JointObject.py b/src/Mod/Assembly/JointObject.py index 110ed3676e..5439a9c5a0 100644 --- a/src/Mod/Assembly/JointObject.py +++ b/src/Mod/Assembly/JointObject.py @@ -1417,6 +1417,9 @@ class TaskAssemblyCreateJoint(QtCore.QObject): else: self.joint.Document.removeObject(self.joint.Name) + cmds = UtilsAssembly.generatePropertySettings("obj", self.joint) + Gui.doCommand(cmds) + App.closeActiveTransaction() return True diff --git a/src/Mod/Assembly/UtilsAssembly.py b/src/Mod/Assembly/UtilsAssembly.py index b529c4d09e..4932664924 100644 --- a/src/Mod/Assembly/UtilsAssembly.py +++ b/src/Mod/Assembly/UtilsAssembly.py @@ -1170,3 +1170,34 @@ def getParentPlacementIfNeeded(part): return linkGroup.Placement return Base.Placement() + + +def generatePropertySettings(objectName, documentObject): + commands = [] + if hasattr(documentObject, "Name"): + commands.append(f'{objectName} = App.ActiveDocument.getObject("{documentObject.Name}")') + for propertyName in documentObject.PropertiesList: + propertyValue = documentObject.getPropertyByName(propertyName) + propertyType = documentObject.getTypeIdOfProperty(propertyName) + # Note: OpenCascade precision is 1e-07, angular precision is 1e-05. For purposes of creating a Macro, + # we are forcing a reduction in precision so as to get round numbers like 0 instead of tiny near 0 values + if propertyType == "App::PropertyFloat": + commands.append(f"{objectName}.{propertyName} = {propertyValue:.5f}") + elif propertyType == "App::PropertyInt" or propertyType == "App::PropertyBool": + commands.append(f"{objectName}.{propertyName} = {propertyValue}") + elif propertyType == "App::PropertyString" or propertyType == "App::PropertyEnumeration": + commands.append(f'{objectName}.{propertyName} = "{propertyValue}"') + elif propertyType == "App::PropertyPlacement": + commands.append( + f"{objectName}.{propertyName} = App.Placement(" + f"App.Vector({propertyValue.Base.x:.5f},{propertyValue.Base.y:.5f},{propertyValue.Base.z:.5f})," + f"App.Rotation(*{[round(n,5) for n in propertyValue.Rotation.getYawPitchRoll()]}))" + ) + elif propertyType == "App::PropertyXLinkSubHidden": + commands.append( + f'{objectName}.{propertyName} = [App.ActiveDocument.getObject("{propertyValue[0].Name}"), {propertyValue[1]}]' + ) + else: + # print("Not processing properties of type ", propertyType) + pass + return "\n".join(commands) + "\n" diff --git a/src/Mod/BIM/ArchMaterial.py b/src/Mod/BIM/ArchMaterial.py index 5cea408786..0c1a126234 100644 --- a/src/Mod/BIM/ArchMaterial.py +++ b/src/Mod/BIM/ArchMaterial.py @@ -515,6 +515,7 @@ class _ArchMaterialTaskPanel: def chooseMat(self, card): "sets self.material from a card" + card = self.form.comboBox_MaterialsInDir.currentText() if card in self.cards: import importFCMat self.material = importFCMat.read(self.cards[card]) diff --git a/src/Mod/BIM/ArchSchedule.py b/src/Mod/BIM/ArchSchedule.py index 4f97bae6e8..eed79ea454 100644 --- a/src/Mod/BIM/ArchSchedule.py +++ b/src/Mod/BIM/ArchSchedule.py @@ -529,8 +529,9 @@ class ArchScheduleTaskPanel: item = QtGui.QTableWidgetItem([obj.Description,obj.Value,obj.Unit,obj.Objects,obj.Filter][i][j]) self.form.list.setItem(j,i,item) self.form.lineEditName.setText(self.obj.Label) - self.form.checkDetailed.setChecked(self.obj.DetailedResults) self.form.checkSpreadsheet.setChecked(self.obj.CreateSpreadsheet) + self.form.checkDetailed.setChecked(self.obj.DetailedResults) + self.form.checkAutoUpdate.setChecked(self.obj.AutoUpdate) # center over FreeCAD window mw = FreeCADGui.getMainWindow() diff --git a/src/Mod/BIM/Resources/translations/Arch.ts b/src/Mod/BIM/Resources/translations/Arch.ts index d596acb4db..60c441a5da 100644 --- a/src/Mod/BIM/Resources/translations/Arch.ts +++ b/src/Mod/BIM/Resources/translations/Arch.ts @@ -5,7 +5,7 @@ ArchMaterial - Arch material + BIM material @@ -3348,7 +3348,7 @@ unit to work with when opening the file. - + Preset @@ -3612,7 +3612,7 @@ unit to work with when opening the file. - + Reorder children alphabetically @@ -3962,7 +3962,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window @@ -3972,32 +3972,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. - + Window options - + Auto include in host object - + Sill height @@ -4063,8 +4063,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4102,8 +4102,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name @@ -4117,8 +4117,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness @@ -4300,8 +4300,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Material @@ -4312,17 +4312,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + New layer - + Total thickness - + depends on the object @@ -4754,12 +4754,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Import CSV file - + Export CSV file @@ -4769,20 +4769,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Unable to recognize that file type - - + + Description - - + + @@ -4790,14 +4790,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Unit - + Schedule @@ -5590,7 +5590,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) @@ -6527,43 +6527,43 @@ Building creation aborted. - - + + A description for this material - + A URL where to find information about this material - + The transparency value of this material - + The color of this material - + The color of this material when cut - + The list of layer names - + The list of layer materials - + The list of layer thicknesses @@ -7961,7 +7961,7 @@ Building creation aborted. - The sizes for rows + The sizes of rows @@ -9304,12 +9304,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet - + IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9434,7 +9434,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet - + Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_be.qm b/src/Mod/BIM/Resources/translations/Arch_be.qm index 143d21858e..82e07fd5e7 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_be.qm and b/src/Mod/BIM/Resources/translations/Arch_be.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_be.ts b/src/Mod/BIM/Resources/translations/Arch_be.ts index 664b25a079..cf39a69c19 100644 --- a/src/Mod/BIM/Resources/translations/Arch_be.ts +++ b/src/Mod/BIM/Resources/translations/Arch_be.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Матэрыял архітэктуры + BIM material + Матэрыял BIM @@ -3544,7 +3544,7 @@ unit to work with when opening the file. - + Preset @@ -3809,7 +3809,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Змяніць парадак размяшчэння спадчыннікаў у алфавітным парадку @@ -4171,7 +4171,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Стварыць акно @@ -4181,32 +4181,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Абярыце грань на існуючым аб'екце ці абярыце перадустаноўку - + Window not based on sketch. Window not aligned or resized. Акно, не заснаванае на эскізе. Акно не выраўнаванае ці не зменена па памеры. - + No Width and/or Height constraint in window sketch. Window not resized. Без абмежавання шырыні і/ці вышыні ў эскізе акна. Памер акна не будзе зменены. - + No window found. Cannot continue. Акно не знойдзена. Працягнуць не атрымалася. - + Window options Налады акна - + Auto include in host object Аўтаматычнае ўключэнне ў аб'ект вузла - + Sill height Вышыня падаконніку @@ -4272,8 +4272,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4311,8 +4311,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Назва @@ -4326,8 +4326,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Таўшчыня @@ -4509,8 +4509,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Аб'яднаць паўторныя - - + + Material Матэрыял @@ -4521,17 +4521,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Шматслойны матэрыял - + New layer Новы пласт - + Total thickness Агульная таўшчыня - + depends on the object залежыць ад аб'екта @@ -4963,12 +4963,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Прымацаваць аркуш - + Import CSV file Імпартаваць файл CSV - + Export CSV file Экспартаваць файл CSV @@ -4978,20 +4978,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Экспартаваць файл CSV - + Unable to recognize that file type Немагчыма распазнаць тып файла - - + + Description Апісанне - - + + @@ -4999,14 +4999,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Значэнне - - + + Unit Адзінка вымярэння - + Schedule Наменклатура @@ -5815,7 +5815,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) Стандартны код (MasterFormat, OmniClass, ...) @@ -6753,43 +6753,43 @@ Building creation aborted. Калі true, агароджа будзе афарбавана аднолькава з зыходным слупам і секцыяй. - - + + A description for this material Апісанне для матэрыялу - + A URL where to find information about this material URL-адрас, па якім можна знайсці інфармацыю аб матэрыяле - + The transparency value of this material Значэнне празрыстасці матэрыялу - + The color of this material Колер матэрыялу - + The color of this material when cut Колер матэрыялу пры абрэзцы - + The list of layer names Спіс назваў пласта - + The list of layer materials Спіс матэрыялаў пласта - + The list of layer thicknesses Спіс таўшчыні пласта @@ -8210,7 +8210,7 @@ Building creation aborted. - The sizes for rows + The sizes of rows Памеры радкоў @@ -9582,12 +9582,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Абноўлена сістэма адзінак вымярэння для ўсіх адчыненых дакументаў - + IfcOpenShell not found IfcOpenShell не знойдзены - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell неабходны для імпартавання і экспартавання файлаў IFC. Падобна на тое, што ён адсутнічае ў вашай сістэме. @@ -9716,7 +9716,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Двухмернае прадстаўленне - + Sheets Аркушы diff --git a/src/Mod/BIM/Resources/translations/Arch_ca.qm b/src/Mod/BIM/Resources/translations/Arch_ca.qm index 3aa7f1958e..7e28e757ea 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ca.qm and b/src/Mod/BIM/Resources/translations/Arch_ca.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ca.ts b/src/Mod/BIM/Resources/translations/Arch_ca.ts index 488733be12..16a30fc60c 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ca.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ca.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material d'arquitectura + BIM material + Material de BIM @@ -335,7 +335,7 @@ Deixeu en blanc per a utilitzar tots els objectes del document An optional semicolon (;) separated list of property:value filters. Prepend ! to a property name to invert the effect of the filter (exclude objects that match the filter). Objects whose property contains the value will be matched. Examples of valid filters (everything is case-insensitive): Name:Wall - Will only consider objects with 'wall' in their name (internal name); !Name:Wall - Will only consider objects which DON'T have 'wall' in their name (internal name); Description:Win - Will only consider objects with 'win' in their description; !Label:Win - Will only consider objects which DO NOT have 'win' in their label; IfcType:Wall - Will only consider objects which Ifc Type is 'Wall'; !Tag:Wall - Will only consider objects which tag is NOT 'Wall'. If you leave this field empty, no filtering is applied - Una llista de propietats opcional separada per punt i coma (;):valors a filtrar. Avantposa el símbol ! a una propietat per invertir l'efecte del filtre (exclou objectes que coincideixen amb el filtre). S'obtindran els objectes que coincideixin amb les propietats del filtre. Exemples de filtres vàlids (majúscules o minúscules indistintament): Name:Paret - Considerará només objectes amb 'paret' al seu nom (nom intern); !Name:Paret - Considerará només objectes que no tinguin 'paret' al seu nom (nom intern); Description:Win - Considerará només objectes amb 'win' a la seva descripció; !Label:Win - Considerará només objectes que no tinguin 'paret' a la seva etiqueta; IfcType:Paret - Considerará només objectes amb 'paret' com a IfcType; !Tag:Paret - Considerará només objectes que no tinguin 'paret' com a Tag. Si deixes buit aquest camp, no s'aplicarà cap filtre + Una llista de propietats opcional separada per punt i coma (;):valors a filtrar. Avantposa el símbol ! a una propietat per invertir l'efecte del filtre (exclou objectes que coincideixen amb el filtre). S'obtindran els objectes que coincideixin amb les propietats del filtre. Exemples de filtres vàlids (majúscules o minúscules indistintament): Name:Paret - Considerará només objectes amb 'paret' al seu nom (nom intern); !Name:Mur - Considerará només objectes que no tinguin 'paret' al seu nom (nom intern); Description:Win - Considerará només objectes amb 'win' a la seva descripció; !Label:Win - Considerará només objectes que no tinguin 'paret' a la seva etiqueta; IfcType:Paret - Considerará només objectes amb 'paret' com a IfcType; !Tag:Paret - Considerará només objectes que no tinguin 'paret' com a Tag. Si deixes buit aquest camp, no s'aplicarà cap filtre @@ -661,7 +661,7 @@ Utilitats -> Crea un projecte IFC <html><head/><body><p>Checked quantities will be exported to IFC. Quantities marked with a warning sign indicate a zero value that you might need to check. Clicking a column header will apply to all selected items.</p><p><span style=" font-weight:600;">Warning</span>: Horizontal area is the area obtained when projecting the object on the ground (X,Y) plane, but vertical area is the sum of all areas of the faces that are vertical (orthogonal to the ground plane), so a wall will have its both faces counted.</p><p>Length, width and height values can be changed here, but beware, it might change the geometry!</p></body></html> - <html><head/><body><p>Les quantitats marcades s'exportaran a IFC. Les quantitats marcades amb un símbol d'advertència indiquen un valor zero que potser haureu de comprovar. Fent clic a una capçalera d'una columna, ho aplicarà a tots els elements seleccionats.</p><p><span style=" font-weight:600;">Advertència</span>: L'àrea horitzontal és l'àrea que s'obté en projectar l'objecte sobre el pla del terra (X,Y), però l'àrea vertical és la suma de totes les àrees de les cares que són verticals (ortogonals al pla del terra), de manera que una paret tindrà les seves dues cares comptades.</p><p>Els valors de longitud, amplada i alçada es poden canviar aquí, però aneu amb compte, és possible que canviï la geometria!</p></body></html> + <html><head/><body><p>Les quantitats marcades s'exportaran a IFC. Les quantitats marcades amb un símbol d'advertència indiquen un valor zero que potser haureu de comprovar. Fent clic a una capçalera d'una columna, ho aplicarà a tots els elements seleccionats.</p><p><span style=" font-weight:600;">Advertència</span>: L'àrea horitzontal és l'àrea que s'obté en projectar l'objecte sobre el pla del terra (X,Y), però l'àrea vertical és la suma de totes les àrees de les cares que són verticals (ortogonals al pla del terra), de manera que un mur tindrà les seves dues cares comptades.</p><p>Els valors de longitud, amplada i alçada es poden canviar aquí, però aneu amb compte, és possible que canviï la geometria!</p></body></html> @@ -1008,7 +1008,7 @@ Utilitats -> Crea un projecte IFC Create Building - Crea un edifici + Crea una construcció @@ -1308,17 +1308,17 @@ Utilitats -> Crea un projecte IFC A good way to start building a BIM model is by setting up basic characteristics of your project, under menu <span style=" font-weight:600;">Manage -&gt; Project setup</span>. You can also directly configure different floor plans for your project, under menu <span style=" font-weight:600;">Manage -&gt; Levels.</span> - Una bona manera de començar a construir un model BIM és establint les característiques bàsiques del projecte, sota el menú<span style=" font-weight:600;">Gestiona -&gt;Configuració del projecte</span>. També pots configurar directament plans del pis del teu projecte, sota el menú<span style=" font-weight:600;">Gestiona -&gt; Nivells.</span> + Una bona manera de començar a construir un model BIM és establint les característiques bàsiques del projecte, sota el menú<span style=" font-weight:600;">Gestiona -&gt;Configuració del projecte</span>. També pots configurar directament plans de planta del teu projecte, sota el menú<span style=" font-weight:600;">Gestiona -&gt; Nivells.</span> There is no mandatory behaviour here though, and you can also start creating walls and columns directly, and care about organizing things in levels later. - No hi ha cap comportament obligatori, i també pots començar creant parets i columnes directament, i preocupar-se d'organitzar les coses per nivells més endavant. + No hi ha cap comportament obligatori, i també pots començar creant murs i columnes directament, i preocupar-se d'organitzar les coses per nivells més endavant. <html><head/><body><p>You might also want to start from an existing floor plan or 3D model made in another application. Under menu <span style=" font-weight:600;">File -&gt; Import</span>, you will find a wide range of file formats that can be imported into FreeCAD.</p></body></html> - <html><head/><body><p>També pots començar amb un pla del pis existent, o d'un model 3D fet en una altra aplicació. Sota el menú<span style=" font-weight:600;">Fitxer -&gt;Importa</span>, pots trobar un rang ampli de formats de fitxers que es poden importar a FreeCAD.</p></body></html> + <html><head/><body><p>També pots començar amb un pla de planta existent, o d'un model 3D fet en una altra aplicació. Sota el menú<span style=" font-weight:600;">Fitxer -&gt;Importa</span>, pots trobar un rang ampli de formats de fitxers que es poden importar a FreeCAD.</p></body></html> @@ -1712,12 +1712,12 @@ Utilitats -> Crea un projecte IFC IFC Preflight - IFC Preflight + Prova preliminar d'IFC <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> - <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> + <html><head/><body><p>La prova següent comprovarà el teu model o els objectes seleccionats i els seus fills siguin els estàndards IFC.</p><p><span style=" font-weight:600;">Important</span>: Cap de les proves fallides següents no t'impedirà l'exportació de fitxers IFC, ni aquestes proves garanteixen que els vostres fitxers IFC compleixin algun requisit de qualitat o estàndard específic. Estan allà per ajudar-vos a avaluar què hi ha i què no al vostre fitxer exportat. Et correspon a tu triar quin element és important per a tu o no. Passant el ratolí per sobre de cada descripció us donarà més informació per decidir.</p><p>Després d'executar la prova, prement el botó corresponent et donarà més informació per a ajudar-te a arreglar els problemes.</p><p>La <a href="http://www.buildingsmart-tech.org/specifications">pàgina web oficial d'IFC</span></a> conté molta informació útil sobre els estàndards IFC.</p></body></html> @@ -1757,12 +1757,12 @@ Utilitats -> Crea un projecte IFC <html><head/><body><p>IFC export in FreeCAD is performed by an open-source third-party library called IfcOpenShell. To be able to export to the newer IFC4 standard, IfcOpenShell must have been compiled with IFC4 support enabled. This test will check if IFC4 support is available in your version of IfcOpenShell. If not, you will only be able to export IFC files in the older IFC2x3 standard. Note that some applications out there still have incomplete or inexistent IFC4 support, so in some cases IFC2x3 might still work better.</p></body></html> - <html><head/><body><p>IFC export in FreeCAD is performed by an open-source third-party library called IfcOpenShell. To be able to export to the newer IFC4 standard, IfcOpenShell must have been compiled with IFC4 support enabled. This test will check if IFC4 support is available in your version of IfcOpenShell. If not, you will only be able to export IFC files in the older IFC2x3 standard. Note that some applications out there still have incomplete or inexistent IFC4 support, so in some cases IFC2x3 might still work better.</p></body></html> + <html><head/><body><p>L'exportació IFC a FreeCAD es realitza mitjançant una biblioteca de codi obert de tercers anomenada IfcOpenShell. Per poder exportar a l'estàndard IFC4 més recent, IfcOpenShell s'ha d'haver compilat amb el suport IFC4. Aquesta prova comprovarà si el suport IFC4 està disponible a la vostra versió d'IfcOpenShell. Si no, només podreu exportar fitxers IFC a l'estàndard IFC2x3 anterior. Tingueu en compte que algunes aplicacions encara tenen suport IFC4 incomplet o inexistent, de manera que, en alguns casos, IFC2x3 encara pot funcionar millor.</p></body></html> Is IFC4 support enabled? - Is IFC4 support enabled? + El suport IFC4 està habilitat? @@ -1787,47 +1787,47 @@ Utilitats -> Crea un projecte IFC Project structure - Project structure + Estructura del projecte <html><head/><body><p>All IfcBuildingStorey (levels) elements are required to be inside an IfcBuilding element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuilding will be created for all level objects (BuildingPart objects with their IFC role set as Building Storey) found that are not inside a Building. However, it is best if you create that building yourself, so you have more control over its name and properties. This test is here to help you to find those levels without buildings.</p></body></html> - <html><head/><body><p>All IfcBuildingStorey (levels) elements are required to be inside an IfcBuilding element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuilding will be created for all level objects (BuildingPart objects with their IFC role set as Building Storey) found that are not inside a Building. However, it is best if you create that building yourself, so you have more control over its name and properties. This test is here to help you to find those levels without buildings.</p></body></html> + <html><head/><body><p>Tots els elements IfcBuildingStorey (nivells) han d'estar dins d'un element IfcBuilding. Aquest és un requisit obligatori de l'estàndard IFC. Quan exporteu el vostre model FreeCAD a IFC, es crearà un IfcBuilding predeterminat per a tots els objectes de nivell (objectes BuildingPart amb el seu rol IFC definit com a Planta de construcció) que no es trobin dins d'una construcció. Tanmateix, és millor que creeu aquestes construccions vosaltres mateixos, de manera que tingueu més control sobre el seu nom i propietats. Aquesta prova és aquí per ajudar-vos a trobar aquestes plantes sense construccions.</p></body></html> Are all storeys part of a building? - Are all storeys part of a building? + Totes les plantes formen part d'una construcció? <html><head/><body><p>All elements derived from IfcProduct (that is, all the BIM elements that compose your model) are required to be inside an IfcBuildingStorey (level) element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuildingStorey will be created for all BIM objects found that are not inside one already. However, it is best if you make sure yourself that all elements are correctly located inside a level, so you have more control over it. This test is here to help you to find those BIM objects without a level.</p></body></html> - <html><head/><body><p>All elements derived from IfcProduct (that is, all the BIM elements that compose your model) are required to be inside an IfcBuildingStorey (level) element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuildingStorey will be created for all BIM objects found that are not inside one already. However, it is best if you make sure yourself that all elements are correctly located inside a level, so you have more control over it. This test is here to help you to find those BIM objects without a level.</p></body></html> + <html><head/><body><p>Tots els elements derivats d'IfcProduct (és a dir, tots els elements BIM que componen el vostre model) han d'estar dins d'un element IfcBuildingStorey (nivell). Aquest és un requisit obligatori de l'estàndard IFC. Quan exporteu el vostre model de FreeCAD a IFC, es crearà un IfcBuildingStorey predeterminat per a tots els objectes BIM que es trobin que no estiguin dins d'un. Tanmateix, el millor és que us assegureu que tots els elements estan correctament situats dins d'un nivell, de manera que tingueu més control sobre ell. Aquesta prova està aquí per ajudar-vos a trobar aquells objectes BIM sense nivell.</p></body></html> Are all BIM objects part of a level? - Are all BIM objects part of a level? + Tots els objectes BIM formen part d'un nivell? <html><head/><body><p>All IfcBuilding elements are required to be inside an IfcSite element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcSite will be created for all Building objects found that are not inside a Site. However, it is best if you create that site yourself, so you have more control over its name and properties. This test is here to help you to find those buildings without sites.</p></body></html> - <html><head/><body><p>All IfcBuilding elements are required to be inside an IfcSite element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcSite will be created for all Building objects found that are not inside a Site. However, it is best if you create that site yourself, so you have more control over its name and properties. This test is here to help you to find those buildings without sites.</p></body></html> + <html><head/><body><p>Tots els elements IfcBuilding han d'estar dins d'un element IfcSite. Aquest és un requisit obligatori de l'estàndard IFC. Quan exporteu el vostre model de FreeCAD a IFC, es crearà un IfcSite predeterminat per a tots els objectes de construcció trobats que no es troben dins d'un lloc. Tanmateix, és millor que creeu aquest lloc vosaltres mateixos, de manera que tingueu més control sobre el seu nom i propietats. Aquesta prova està aquí per ajudar-vos a trobar aquelles construccions sense llocs.</p></body></html> Are all buildings part of a site? - Are all buildings part of a site? + Totes les construccions formen part d'un lloc? <html><head/><body><p>The IFC standard requires at least one site, one building and one level or building storey per project. This test will ensure that at least one object of each of these 3 types exists in the model.</p><p>Note that, as this is a mandatory requirement, FreeCAD will automatically add a default site, a default building and/or a default building storey if any of these is missing. So even if this test didn't pass, your exported IFC file will meet the requirements.</p><p>However, it is always better to create these objects yourself, as you get more control over naming and properties.</p></body></html> - <html><head/><body><p>The IFC standard requires at least one site, one building and one level or building storey per project. This test will ensure that at least one object of each of these 3 types exists in the model.</p><p>Note that, as this is a mandatory requirement, FreeCAD will automatically add a default site, a default building and/or a default building storey if any of these is missing. So even if this test didn't pass, your exported IFC file will meet the requirements.</p><p>However, it is always better to create these objects yourself, as you get more control over naming and properties.</p></body></html> + <html><head/><body><p>L'estàndard IFC requereix almenys un lloc, una construcció i un nivell o planta de construcció per projecte. Aquesta prova garantirà que al model hi hagi almenys un objecte de cadascun d'aquests 3 tipus.</p><p>Tingueu en compte que, com que aquest és un requisit obligatori, FreeCAD afegirà automàticament un lloc predeterminat, una construcció predeterminada i/o una planta de construcció predeterminada si no hi ha algun d'aquests. Així, fins i tot si aquesta prova no ha passat, el vostre fitxer IFC exportat complirà els requisits.</p><p>Tanmateix, sempre és millor crear aquests objectes vosaltres mateixos, ja que teniu més control sobre la denominació i les propietats.</p></body></html> Is there at least one site, one building and one level in the model? - Is there at least one site, one building and one level in the model? + Hi ha com a mínim un lloc, una construcció i un nivell al model? @@ -1837,22 +1837,22 @@ Utilitats -> Crea un projecte IFC <html><head/><body><p>Although it is not a requirement for IFC objects to have fully clean and solid geometry (and you will more than often find IFC files with bad geometry out there, oh boy if you find!), it is of course better if they do. You will reduce chances of problems with other applications, and after all, in real life, all objects have solid shapes.</p><p>FreeCAD has a lot of tools to check for geometry quality, and most parametric objects, including BIM objects, will usually warn you if their geometry becomes unclean or not solid at some point. This test makes sure everything is OK.</p></body></html> - <html><head/><body><p>Although it is not a requirement for IFC objects to have fully clean and solid geometry (and you will more than often find IFC files with bad geometry out there, oh boy if you find!), it is of course better if they do. You will reduce chances of problems with other applications, and after all, in real life, all objects have solid shapes.</p><p>FreeCAD has a lot of tools to check for geometry quality, and most parametric objects, including BIM objects, will usually warn you if their geometry becomes unclean or not solid at some point. This test makes sure everything is OK.</p></body></html> + <html><head/><body><p>Tot i que no és un requisit que els objectes IFC tinguin una geometria completament neta i sòlida (i sovint trobareu fitxers IFC amb una geometria malmesa), és millor que ho feu. Reduïu les possibilitats de problemes amb altres aplicacions i, tot i això, a la vida real tots els objectes tenen formes sòlides.</p><p>FreeCAD té moltes eines per comprovar la qualitat de la geometria, i la majoria dels objectes paramètrics, inclosos els objectes BIM, normalment us advertiran si la seva geometria es torna bruta o no és sòlida en algun moment. Aquesta prova assegura que tot està correcte.</p></body></html> Are all BIM objects solid and valid? - Are all BIM objects solid and valid? + Són tots els objectes BIM sòlids i vàlids? <html><head/><body><p>The IFC format provides a defined type for most of the objects that compose a building, for example walls, columns, doors, or sinks. But it also supports undefined objects, which are given the generic BuildingElementProxy type. This test will check that all objects have a defined type.</p><p><br/></p><p>Note that failing this test is not necessarily bad, as you might specifically want some object to not have any defined type. In some cases, this might even give better results, as some applications like Revit might add possibly unwanted additional constraints or transformations to some known types such as structural elements (beams or columns). Exporting them as BuildingElementProxies will prevent that.</p></body></html> - <html><head/><body><p>The IFC format provides a defined type for most of the objects that compose a building, for example walls, columns, doors, or sinks. But it also supports undefined objects, which are given the generic BuildingElementProxy type. This test will check that all objects have a defined type.</p><p><br/></p><p>Note that failing this test is not necessarily bad, as you might specifically want some object to not have any defined type. In some cases, this might even give better results, as some applications like Revit might add possibly unwanted additional constraints or transformations to some known types such as structural elements (beams or columns). Exporting them as BuildingElementProxies will prevent that.</p></body></html> + <html><head/><body><p>El format IFC proporciona un tipus definit per a la majoria dels objectes que componen una construcció, per exemple, murs, columnes, portes o piques. Però també admet objectes no definits, als quals se'ls dona el tipus genèric BuildingElementProxy. Aquesta prova comprovarà que tots els objectes tenen un tipus definit.</p><p><br/></p><p>Tingueu en compte que fallar aquesta prova no és necessàriament dolent, ja que potser voldreu específicament que algun objecte no tingui cap tipus definit. En alguns casos, fins i tot això pot donar millors resultats, ja que algunes aplicacions com Revit poden afegir restriccions o transformacions addicionals possiblement no desitjades a alguns tipus coneguts, com ara elements estructurals (bigues o columnes). Exportar-los com a BuildingElementProxies evitarà això.</p></body></html> Are all BIM objects of a defined IFC type? - Are all BIM objects of a defined IFC type? + Tots els objectes BIM són d'un tipus definit d'IFC? @@ -1862,97 +1862,97 @@ Utilitats -> Crea un projecte IFC <html><head/><body><p>Classification systems, such as UniClass or MasterFormat, or even your own custom system, are in some cases an important part of a building project. This test will ensure that all BIM objects and materials found in the model have their standard code property dutifully filled.</p></body></html> - <html><head/><body><p>Classification systems, such as UniClass or MasterFormat, or even your own custom system, are in some cases an important part of a building project. This test will ensure that all BIM objects and materials found in the model have their standard code property dutifully filled.</p></body></html> + <html><head/><body><p>Els sistemes de classificació, com UniClass o MasterFormat, o fins i tot el vostre propi sistema personalitzat, són en alguns casos una part important d'un projecte de construcció. Aquesta prova garantirà que tots els objectes i materials BIM que es troben al model tinguin la seva propietat de codi estàndard emplenada de manera obligatòria.</p></body></html> Do all BIM objects and materials have a standard classification code defined? - Do all BIM objects and materials have a standard classification code defined? + Tots els objectes BIM i materials tenen un codi de classificació estàndard definit? <html><head/><body><p>The IFC standard offers standard, predefined property sets for many object types. for example, the property set Pset_WallCommon contains properties that the IFC standard thinks all walls should have. This test will check that all BIM objects have the right property set, if available.</p><p>Note that this is by no means a formal requirement, and these will inflate the size of your IFC file consequently. We suggest you add standard property sets only if you are actually using any of them.</p></body></html> - <html><head/><body><p>The IFC standard offers standard, predefined property sets for many object types. for example, the property set Pset_WallCommon contains properties that the IFC standard thinks all walls should have. This test will check that all BIM objects have the right property set, if available.</p><p>Note that this is by no means a formal requirement, and these will inflate the size of your IFC file consequently. We suggest you add standard property sets only if you are actually using any of them.</p></body></html> + <html><head/><body><p>L'estàndard IFC ofereix conjunts de propietats estàndard i predefinits per a molts tipus d'objectes. Per exemple, el conjunt de propietats Pset_WallCommon conté propietats que l'estàndard IFC creu que haurien de tenir tots els murs. Aquesta prova comprovarà que tots els objectes BIM tenen la propietat correcta, si està disponible.</p><p>Tingueu en compte que això no és en cap cas un requisit formal i, en conseqüència, augmentarà la mida del vostre fitxer IFC. Us suggerim que afegiu conjunts de propietats estàndard només si en feu servir algun d'ells.</p></body></html> Do all common IFC types have the corresponding Property Set? - Do all common IFC types have the corresponding Property Set? + Tots els tipus IFC comuns tenen el conjunt de propietats corresponent? <html><head/><body><p>IFC objects have a geometry representation, which defines the shape of the object, but can also have some or their dimensions, such as height, width or area, explicitly stated. This is very useful for BIM applications that don't process the geometry, such as spreadsheets. Those applications are still able to get and estimate quantities from IFC objects without the need to analyze the geometry.</p><p>It is also a possibility for errors (or even fraud), as nothing guarantees that those explicitly stated dimensions match what is inside the geometry.</p><p>This test will find any BIM object that has available dimension properties such as width or height, for example walls and structures, but such properties are not marked for explicit export to IFC.</p></body></html> - <html><head/><body><p>IFC objects have a geometry representation, which defines the shape of the object, but can also have some or their dimensions, such as height, width or area, explicitly stated. This is very useful for BIM applications that don't process the geometry, such as spreadsheets. Those applications are still able to get and estimate quantities from IFC objects without the need to analyze the geometry.</p><p>It is also a possibility for errors (or even fraud), as nothing guarantees that those explicitly stated dimensions match what is inside the geometry.</p><p>This test will find any BIM object that has available dimension properties such as width or height, for example walls and structures, but such properties are not marked for explicit export to IFC.</p></body></html> + <html><head/><body><p>Els objectes IFC tenen una representació geomètrica que defineix la forma de l'objecte, però també poden tenir algunes o les seves dimensions, com ara l'alçada, l'amplada o l'àrea, indicades explícitament. Això és molt útil per a aplicacions BIM que no processen la geometria, com ara fulls de càlcul. Aquestes aplicacions encara poden obtenir i estimar quantitats d'objectes IFC sense la necessitat d'analitzar la geometria.</p><p>També és possible que hi hagi errors (o fins i tot frau), ja que res no garanteix que aquestes dimensions indicades explícitament coincideixin amb el que hi ha dins de la geometria.</p><p>Aquesta prova trobarà qualsevol objecte BIM que tingui propietats de dimensions disponibles, com ara l'amplada o l'alçada, per exemple, murs i estructures, però aquestes propietats no estan marcades per a l'exportació explícita a IFC.</p></body></html> Do all geometric BIM objects have explicit dimensions set? - Do all geometric BIM objects have explicit dimensions set? + Tenen tots els objectes geomètrics una dimensió explícita definida? <html><head/><body><p>Although there is no requirement for IFC objects to have a material defined, in the real world, it is an important layer of information to be added to you model. This test will find BIM objects without a material defined.</p><p>If a BIM object is exported without a material, it will nevertheless be assigned an IfcSurfaceStyle, which will be created from the object color. Some BIM applications actually disregard materials, and only consider the surface style of an object. No IfcMaterial will be attributed to that object.</p><p>If a BIM object has a material defined, a surface style will still be created (an IfcMaterial too) but its surface style will take the same name and properties as the material, thus giving more consistency to your file, no matter what other BIM consider, surface style, material, or both.</p></body></html> - <html><head/><body><p>Although there is no requirement for IFC objects to have a material defined, in the real world, it is an important layer of information to be added to you model. This test will find BIM objects without a material defined.</p><p>If a BIM object is exported without a material, it will nevertheless be assigned an IfcSurfaceStyle, which will be created from the object color. Some BIM applications actually disregard materials, and only consider the surface style of an object. No IfcMaterial will be attributed to that object.</p><p>If a BIM object has a material defined, a surface style will still be created (an IfcMaterial too) but its surface style will take the same name and properties as the material, thus giving more consistency to your file, no matter what other BIM consider, surface style, material, or both.</p></body></html> + <html><head/><body><p>Tot i que no hi ha cap requisit perquè els objectes IFC tinguin un material definit, al món real, és una capa d'informació important que cal afegir al vostre model. Aquesta prova trobarà objectes BIM sense un material definit.</p><p>Si un objecte BIM s'exporta sense material, se li assignarà un IfcSurfaceStyle, que es crearà a partir del color de l'objecte. Algunes aplicacions BIM en realitat ignoren els materials i només tenen en compte l'estil superficial d'un objecte. No s'atribuirà cap IfcMaterial a aquest objecte.</p><p>Si un objecte BIM té un material definit, encara es crearà un estil de superfície (també un IfcMaterial), però el seu estil de superfície tindrà el mateix nom i propietats que el material, donant així més consistència al vostre fitxer, independentment del que considerin els altres elements BIM, estil de superfície, material o tots dos.</p></body></html> Do all BIM objects have a material? - Do all BIM objects have a material? + Tots els objectes BIM tenen un material? <html><head/><body><p>Even if a BIM object has a standard property set for its type attributed, there is no guarantee that this property set still contains or only contains all the properties that the IFC standard has defined for that set. They might have been modified after the property set has been added.</p><p>This test will check that all standard property sets found throughout the model contain all and only the properties specified in the standard definition.</p></body></html> - <html><head/><body><p>Even if a BIM object has a standard property set for its type attributed, there is no guarantee that this property set still contains or only contains all the properties that the IFC standard has defined for that set. They might have been modified after the property set has been added.</p><p>This test will check that all standard property sets found throughout the model contain all and only the properties specified in the standard definition.</p></body></html> + <html><head/><body><p>Fins i tot, si un objecte BIM té atribuïda una propietat estàndard per al seu tipus, no hi ha cap garantia que aquest conjunt de propietats contingui o només contingui totes les propietats que l'estàndard IFC ha definit per a aquest conjunt. És possible que s'hagin modificat després que s'hagi afegit el conjunt de propietats.</p><p>Aquesta prova comprovarà que tots els conjunts de propietats estàndard que es troben al model contenen totes i només les propietats especificades a la definició estàndard.</p></body></html> Do all standard Property Set contain the correct properties? - Do all standard Property Set contain the correct properties? + Tots els conjunts de propietats estàndard contenen les propietats correctes? Optional/Compatibility - Optional/Compatibility + Opcional/Compatibilitat <html><head/><body><p>The geometry of IFC objects can be defined in a large number of ways, such as extrusions, subtractions, revolutions, or even faceted objects.</p><p>However, extrusions of flat shapes, which is the most basic and common type, often offer advantages over other types in other BIM applications.</p><p>This test will find any object that cannot be exported to IFC as an extrusion, or as a shared extrusion (clone).</p></body></html> - <html><head/><body><p>The geometry of IFC objects can be defined in a large number of ways, such as extrusions, subtractions, revolutions, or even faceted objects.</p><p>However, extrusions of flat shapes, which is the most basic and common type, often offer advantages over other types in other BIM applications.</p><p>This test will find any object that cannot be exported to IFC as an extrusion, or as a shared extrusion (clone).</p></body></html> + <html><head/><body><p>La geometria dels objectes IFC es pot definir de moltes maneres, com ara amb extrusions, restes, revolucions o fins i tot objectes facetats.</p><p>Tanmateix, les extrusions de formes planes, que és el tipus més bàsic i comú, sovint ofereixen avantatges sobre altres tipus en altres aplicacions BIM.</p><p>Aquesta prova trobarà qualsevol objecte que no es pugui exportar a IFC com a extrusió o com a extrusió compartida (clon).</p></body></html> Are all object exportable as extrusions? - Are all object exportable as extrusions? + Es poden exportar tots els objectes com a extrusions? <html><head/><body><p>Walls, columns and beams in FreeCAD can be constructed in a wide number of ways. But some simpler BIM applications might have difficulties with walls that are not of the most simple type, that is, a single, straight piece of wall (which correspond to the IfcWallStandardCase type) or beams and columns that are not based on a straight extrusion of a flat profile (BeamStandardCase, ColumnStandardCase)</p><p>This test will find any wall which is not such a standard case.</p><p><span style=" font-weight:600;">Note</span>: At the moment, BIM objects that meet the requirements to be of a standard case, are still exported as IfcWall, IfcBeam, IfcColumn.</p></body></html> - <html><head/><body><p>Walls, columns and beams in FreeCAD can be constructed in a wide number of ways. But some simpler BIM applications might have difficulties with walls that are not of the most simple type, that is, a single, straight piece of wall (which correspond to the IfcWallStandardCase type) or beams and columns that are not based on a straight extrusion of a flat profile (BeamStandardCase, ColumnStandardCase)</p><p>This test will find any wall which is not such a standard case.</p><p><span style=" font-weight:600;">Note</span>: At the moment, BIM objects that meet the requirements to be of a standard case, are still exported as IfcWall, IfcBeam, IfcColumn.</p></body></html> + <html><head/><body><p>Els murs, columnes i bigues a FreeCAD es poden construir de moltes maneres. Però algunes aplicacions BIM més senzilles poden tenir dificultats amb murs que no són del tipus més simple, és a dir, una única peça de mur recte (que correspon al tipus IfcWallStandardCase) o bigues i columnes que no es basen en una extrusió recta d'un perfil pla (BeamStandardCase, ColumnStandardCase)</p><p>Aquesta prova trobarà qualsevol mur que no sigui un cas tan estàndard.</p><p><span style=" font-weight:600;">Nota</span>: De moment, els objectes BIM que compleixen els requisits per ser d'un cas estàndard, encara s'exporten com a IfcWall, IfcBeam, IfcColumn.</p></body></html> Are all walls, beams and columns based on a single line or profile (standard case)? - Are all walls, beams and columns based on a single line or profile (standard case)? + Tots els murs, bigues i columnes estan basades en una única línia o perfil (cas estàndard)? <html><head/><body><p>Revit discards all objects that contain lines smaller than 1/32 inch (0.8mm). This test will find any object containing lines smaller than that value.</p></body></html> - <html><head/><body><p>Revit discards all objects that contain lines smaller than 1/32 inch (0.8mm). This test will find any object containing lines smaller than that value.</p></body></html> + <html><head/><body><p>Revit descarta tots els objectes que continguin línies amb longitud inferior a 1/32 polzades (0,8 mm). Aquesta prova trobarà tots els objectes qui continguin línies amb una longitud inferior que aquest valor.</p></body></html> Are all lines bigger than 1/32 inches (minimum accepted by Revit)? - Are all lines bigger than 1/32 inches (minimum accepted by Revit)? + Totes les línies tenen una longitud superior a 1/32 polzades (mínim acceptat per Revit)? <html><head/><body><p>When exporting a model to IFC, all BIM objects that are an extrusion of a rectangular profile will use an IfcRectangleProfileDef entity as their extrusion profile. However, Revit won't import these correctly. If you are going to use the IFC file in Revit, we recommend you to disable this behavior by checking the option under menu <span style=" font-weight:600;">Edit -&gt; Preferences -&gt; BIM -&gt; NativeIFC -&gt; Disable IfcRectangularProfileDef</span>.</p><p>When that option is checked, all extrusion profiles will be exported as generic IfcArbitraryProfileDef entities, regardless of if they are rectangular or not, which will contain a little less information, but will open correctly in Revit.</p></body></html> - <html><head/><body><p>When exporting a model to IFC, all BIM objects that are an extrusion of a rectangular profile will use an IfcRectangleProfileDef entity as their extrusion profile. However, Revit won't import these correctly. If you are going to use the IFC file in Revit, we recommend you to disable this behavior by checking the option under menu <span style=" font-weight:600;">Edit -&gt; Preferences -&gt; BIM -&gt; NativeIFC -&gt; Disable IfcRectangularProfileDef</span>.</p><p>When that option is checked, all extrusion profiles will be exported as generic IfcArbitraryProfileDef entities, regardless of if they are rectangular or not, which will contain a little less information, but will open correctly in Revit.</p></body></html> + <html><head/><body><p>En exportar un model a IFC, tots els objectes que són extrusions d'un perfil rectangular utilitzaran l'entitat IfcRectangleProfileDef com al seu perfil d'extrusió. Tot i això, Revit no ho importarà correctament. Si utilitzaràs el fitxer IFC a Revit, us recomanem que deshabiliteu aquest comportament marcant l'opció sota el menú <span style=" font-weight:600;">Editar -&gt; Preferències -&gt; BIM -&gt; NativeIFC -&gt; Deshabilitar IfcRectangularProfileDef</span>.</p><p>Quan aquesta opció estigui marcada, tots els perfils d'extrusió s'exportaran com a entitats genèriques IfcArbitraryProfieDef, independentment de si són rectangulars o no, que contindran menys informació, però s'obriran correctament amb Revit.</p></body></html> Is IfcRectangleProfileDef export disabled? (Revit only) - Is IfcRectangleProfileDef export disabled? (Revit only) + L'exportació IfcRectangleProfileDef està deshabilitada? (Només per a Revit) @@ -1963,12 +1963,12 @@ Utilitats -> Crea un projecte IFC Drag items to reorder then press OK to accept - Drag items to reorder then press OK to accept + Arrossegueu elements per reordenar-los, i premeu OK per a acceptar-los Order alphabetically - Order alphabetically + Ordenar alfabèticament @@ -1986,25 +1986,25 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this is the first time you are using the tutorial, this can take a while, since we need to download many images. On next runs, this will be faster as the images are cached locally.</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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When the tutorial is fully written, we'll think of a faster system to avoid this annoying loading time. Please bear with us in the meantime! ;)</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Fira Sans'; font-size:9pt; 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;">Loading tutorials contents from the FreeCAD wiki. Please wait...</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Carregant continguts de tutorials del wiki FreeCAD. Si us plau, esperi...</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;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this is the first time you are using the tutorial, this can take a while, since we need to download many images. On next runs, this will be faster as the images are cached locally.</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Si aquesta és la primera vegada que utilitzeu el tutorial, això podrà tardar una estona, ja que necessitem baixar unes quantes imatges. En les pròximes execucions, serà més ràpid, ja que les imatges són emmagatzemades localment.</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;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When the tutorial is fully written, we'll think of a faster system to avoid this annoying loading time. Please bear with us in the meantime! ;)</p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Quan el tutorial estigui completament escrit, pensarem algun sistema més ràpid per evitar aquest temps de càrrega molest. Si us plau, mentrestant tingues paciència amb nosaltres!;)</p></body></html> Tasks to complete: - Tasks to complete: + Tasques que cal completar: Goal1 - Goal1 + Objectiu1 @@ -2015,22 +2015,22 @@ p, li { white-space: pre-wrap; } Goal2 - Goal2 + Objectiu2 << Previous - << Previous + << Anterior Next >> - Next >> + Següent >> Element - Element + Element @@ -2040,22 +2040,22 @@ p, li { white-space: pre-wrap; } Doors and windows - Doors and windows + Portes i finestres This screen lists all the windows of the current document. You can modify them individually or together - This screen lists all the windows of the current document. You can modify them individually or together + Aquesta pantalla llista totes les finestres del document actual. Podeu modificar-les individualment o conjuntament Group by: - Group by: + Agrupar per: Do not group - Do not group + No ho agrupis @@ -2072,7 +2072,7 @@ p, li { white-space: pre-wrap; } Tag - Tag + Etiqueta @@ -2114,12 +2114,12 @@ p, li { white-space: pre-wrap; } Spaces - Spaces + Espais NativeIFC - NativeIFC + NativeIFC @@ -2159,12 +2159,12 @@ p, li { white-space: pre-wrap; } The type of object created at import. Coin only is much faster, but you don't get the full shape information. You can convert between the two anytime by right-clicking the object tree - The type of object created at import. Coin only is much faster, but you don't get the full shape information. You can convert between the two anytime by right-clicking the object tree + El tipus de l'objecte creat durant la importació. Coin és molt més ràpid, però no obtindràs la informació completa de la forma. Pots fer una conversió entre ambdues en qualsevol moment fent clic dret a l'arbre d'objectes Load full shape (slower) - Load full shape (slower) + Carregar la forma completa (més lent) @@ -2179,17 +2179,17 @@ p, li { white-space: pre-wrap; } If this is checked, the BIM workbench will be loaded after import - If this is checked, the BIM workbench will be loaded after import + Si està marcat, el banc de treball de BIM es carregarà després de la importació Switch to BIM workbench after import - Switch to BIM workbench after import + Canvia al banc de treball BIM després de la importació Load all property sets automatically when opening an IFC file - Load all property sets automatically when opening an IFC file + Carregar automàticament tots els conjunts de propietats en obrir fitxers IFC @@ -2199,7 +2199,7 @@ p, li { white-space: pre-wrap; } Load all materials automatically when opening an IFC file - Load all materials automatically when opening an IFC file + Carregar automàticament tots els materials en obrir fitxers IFC @@ -2209,7 +2209,7 @@ p, li { white-space: pre-wrap; } Load all layers automatically when opening an IFC file - Load all layers automatically when opening an IFC file + Carregar automàticament totes les capes en obrir fitxers IFC @@ -2219,42 +2219,42 @@ p, li { white-space: pre-wrap; } When enabling this, the original version of objects dropped onto an IFC project tree will not be deleted. - When enabling this, the original version of objects dropped onto an IFC project tree will not be deleted. + En habilitar-ho, la versió original dels objectes afegits en un arbre del projecte IFC no s'esborrarà. Keep original version of aggregated objects - Keep original version of aggregated objects + Mantenir versió original d'objectes agregats If this is checked, a dialog will be shown at each import - If this is checked, a dialog will be shown at each import + Si està marcat, es mostrarà un diàleg en cada importació Show options dialog when importing - Show options dialog when importing + Mostrar diàleg d'opcions durant la importació Export - Export + Exportar Show warning when saving - Show warning when saving + Mostrar advertència en desar New document - New document + Document nou Always lock new documents - Always lock new documents + Bloquejar sempre els documents nous @@ -2265,22 +2265,22 @@ p, li { white-space: pre-wrap; } New project - New project + Projecte nou If this is checked, when creating a new projects, a default structure (site, building and storey) will be added under the project - If this is checked, when creating a new projects, a default structure (site, building and storey) will be added under the project + Si està marcat, en crear projectes nous, s'afegirà una estructura predeterminada (lloc, construcció i planta) al projecte Create a default structure - Create a default structure + Crear una estructura predeterminada Check this to ask the above question every time a project is created - Check this to ask the above question every time a project is created + Marca-ho per a fer la pregunta anterior cada vegada que es crea un projecte @@ -2408,17 +2408,17 @@ p, li { white-space: pre-wrap; } Join base sketches of walls if possible - Join base sketches of walls if possible + Unir croquis base de murs, si és possible Remove external geometry of base sketches if needed - Remove external geometry of base sketches if needed + Suprimeix la geometria externa dels croquis base, si és necessari Do not compute areas for objects with more than - Do not compute areas for objects with more than + No calcular àrees pels objectes amb més de @@ -2490,27 +2490,27 @@ to projections of hidden objects. Scaling factor for patterns used by objects that have a Footprint display mode - Scaling factor for patterns used by objects that have -a Footprint display mode + Factor d'escala per als patrons utilitzats pels objectes que tenen +un mode de visualització basat en l'empremta BIM server - BIM server + Servidor BIM 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. + L'URL d'un servidor BIM (www.bimserver.org) al qual connectar-se. If this is selected, the "Open BIM Server in browser" button will open the BIM Server interface in an external browser instead of the FreeCAD web workbench - If this is selected, the "Open BIM Server in browser" -button will open the BIM Server interface in an external browser -instead of the FreeCAD web workbench + Si aquesta opció està seleccionada, el botó "Obri el servidor BIM en el navegador" +obrirà la interfície del servidor BIM en un navegador extern +en lloc d'un banc de treball web de FreeCAD @@ -2560,22 +2560,22 @@ instead of the FreeCAD web workbench Wall color - Wall color + Color del mur Structure color - Structure color + Color de l'estructura Rebar color - Rebar color + Color de rebar Window glass transparency - Window glass transparency + Transparència del vidre de les finestres @@ -2586,27 +2586,27 @@ instead of the FreeCAD web workbench Window glass color - Window glass color + Color del vidre de les finestres Panel color - Panel color + Color del panell Helper color (grids, axes, etc.) - Helper color (grids, axes, etc.) + Color de les ajudes (quadrícules, eixos, etc.) Space transparency - Space transparency + Transparència de l'espai Space line style - Space line style + Estil de línia d'espaiat @@ -2631,7 +2631,7 @@ instead of the FreeCAD web workbench Space line color - Space line color + Color de línia d'espaiat @@ -2641,37 +2641,37 @@ instead of the FreeCAD web workbench Use sketches for walls - Use sketches for walls + Utilitzar croquis per als murs Pipe diameter - Pipe diameter + Diàmetre dels tubs Rebar diameter - Rebar diameter + Diàmetre de rebar Rebar offset - Rebar offset + Equidistància de rebar Stair length - Stair length + Longitud d'esglaó Stair width - Stair width + Amplada d'esglaó Stair height - Stair height + Alçada d'esglaó @@ -2754,13 +2754,13 @@ Limiteu-lo a 1 per a utilitzar el mode multi-nucli en mode nucli únic; Parametric BIM objects - Parametric BIM objects + Objectes BIM paramètrics Non-parametric BIM objects - Non-parametric BIM objects + Objectes BIM no paramètrics @@ -2915,15 +2915,15 @@ FreeCAD object properties objects that are usually found in an IFC file are not imported, and all objects are placed in a 'Group' instead. 'Buildings' and 'Storeys' are still imported if there is more than one. - Si aquesta opció està marcada, per defecte els objectes 'Projecte', 'Lloc', 'Construcció' i 'Pisos' + Si aquesta opció està marcada, per defecte els objectes 'Projecte', 'Lloc', 'Construcció' i 'Plantes' que normalment es troben en un fitxer IFC no s'importen i tots els objectes es col·loquen en un grup. -'Construcció' i 'Pisos' continuen important-se si n'hi ha més d'un. +'Construcció' i 'Plantes' continuen important-se si n'hi ha més d'un. Replace 'Project', 'Site', 'Building', and 'Storey' with 'Group' - Substitueix 'Projecte', 'Lloc', 'Construcció' i 'Pis' per 'Grup' + Substitueix 'Projecte', 'Lloc', 'Construcció' i 'Planta' per 'Grup' @@ -2975,7 +2975,7 @@ If using Netgen, make sure that it is available. Builtin and Mefisto mesher options - Builtin and Mefisto mesher options + Opcions dels generadors de malla integrat i Mefisto @@ -3213,23 +3213,22 @@ If this is your case, you can disable this and then all profiles will be exporte Some IFC types such as IfcWall or IfcBeam have special standard versions like IfcWallStandardCase or IfcBeamStandardCase. If this option is turned on, FreeCAD will automatically export such objects as standard cases when the necessary conditions are met. - Some IFC types such as IfcWall or IfcBeam have special standard versions like IfcWallStandardCase or IfcBeamStandardCase. If this option is turned on, FreeCAD will automatically export such objects -as standard cases when the necessary conditions are met. + Alguns tipus d'IFC com ara IfcWall o IfcBeam, tenen versions estàndards especials com IfcWallStandardCase o IfcBeamStandardCase. Si aquesta opció està activada, FreeCAD exportarà automàticament aquests objectes com a casos estàndards quan es compleixin les condicions necessàries. Add default building if one is not found in the document - Add default building if one is not found in the document + Afegeix una construcció predeterminada si no se'n troba cap en el document In FreeCAD, it is possible to nest groups inside buildings or storeys. If this option is disabled, FreeCAD groups will be saved as IfcGroups and aggregated to the building structure. Aggregating non-building elements such as IfcGroups is however not recommended by the IFC standards. It is therefore also possible to export these groups as IfcElementAssemblies, which produces an IFC-compliant file. However, at FreeCAD, we believe nesting groups inside structures should be possible, and this option is there to have a chance to demonstrate our point of view. - In FreeCAD, it is possible to nest groups inside buildings or storeys. If this option is disabled, FreeCAD groups will be saved as IfcGroups and aggregated to the building structure. Aggregating non-building elements such as IfcGroups is however not recommended by the IFC standards. It is therefore also possible to export these groups as IfcElementAssemblies, which produces an IFC-compliant file. However, at FreeCAD, we believe nesting groups inside structures should be possible, and this option is there to have a chance to demonstrate our point of view. + A FreeCAD, és possible nidar grups dins construccions o plantes. Si aquesta opció està desactivada, els grups de FreeCAD es desaran com a IfcGroups i s'agregaran a l'estructura de la construcció. Tanmateix, els estàndards IFC no recomanen l'agregació d'elements no constructius com IfcGroups. Per tant, també és possible exportar aquests grups com IfcElementAssemblies, que produeix un fitxer compatible amb IFC. Tanmateix, a FreeCAD, creiem que la nidificació dels grups dins d'estructures haurien de ser possibles, i aquesta opció està allà per tenir l'oportunitat de demostrar el nostre punt de vista. Export nested groups as assemblies - Export nested groups as assemblies + Exporta grups niats com a muntatges @@ -3251,12 +3250,12 @@ A site is not mandatory but a common practice is to have at least one in the fil Check also NativeIFC-specific preferences under BIM -> NativeIFC - Check also NativeIFC-specific preferences under BIM -> NativeIFC + També comprova les preferències específiques de NativeIFC a BIM -> NativeIFC IFC standard compliance - IFC standard compliance + Compliment de l'estàndard IFC @@ -3269,12 +3268,12 @@ However, at FreeCAD, we believe having a building should not be mandatory, and t If no building storey is found in the FreeCAD document, a default one will be added. A building storey is not mandatory but a common practice to have at least one in the file. - Si no es troba cap pis de construcció en el document FreeCAD, se n'afegirà un per defecte. Un pis de construcció no és obligatori, però una pràctica habitual és tenir-ne almenys un al fitxer. + Si no es troba cap pis de construcció en el document FreeCAD, se n'afegirà un per defecte. Una planta de construcció no és obligatori, però una pràctica habitual és tenir-ne almenys un al fitxer. Add default building storey if one is not found in the document - Afegeix un pis de construcció per defecte si no se'n troba cap en el document + Afegeix una planta de construcció per defecte si no se'n troba cap en el document @@ -3386,7 +3385,7 @@ De totes maneres, algunes aplicacions BIM utilitzen aquest factor per escollir q - + Preset @@ -3419,17 +3418,17 @@ De totes maneres, algunes aplicacions BIM utilitzen aquest factor per escollir q Parameters of the structure - Parameters of the structure + Paràmetres de l'estructura Switch Length/Height - Switch Length/Height + Intercanviar Longitud/Alçada Switch Length/Width - Switch Length/Width + Intercanviar Longitud/Amplada @@ -3651,7 +3650,7 @@ De totes maneres, algunes aplicacions BIM utilitzen aquest factor per escollir q - + Reorder children alphabetically Reorganitza els fills alfabèticament @@ -3783,22 +3782,22 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Opening - Opening + Obertura Select two objects, an object to be cut and an object defining a cutting plane, in that order - Select two objects, an object to be cut and an object defining a cutting plane, in that order + Seleccioneu dos objectes, un objecte per tallar, i un objecte que defineix un pla de tall, en aquest ordre The first object does not have a shape - The first object does not have a shape + El primer objecte no té una forma The second object does not define a plane - The second object does not define a plane + El segon objecte no defineix un pla @@ -3818,12 +3817,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Which side to cut - Which side to cut + Quin costat tallar Behind - Behind + Darrere @@ -3833,22 +3832,22 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s External Reference - External Reference + Referència externa TransientReference property to ReferenceMode - TransientReference property to ReferenceMode + Propietat TransistentReference a ReferenceMode Upgrading - Upgrading + Actualitzant Part not found in file - Part not found in file + No s'ha trobat la peça al fitxer @@ -3856,12 +3855,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s NativeIFC not available - unable to process IFC files - NativeIFC not available - unable to process IFC files + NativeIFC no està disponible - no es poden processar els fitxers IFC Error removing splitter - Error removing splitter + Error en eliminar el separador @@ -3876,13 +3875,13 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Unable to get lightWeight node for object referenced in - Unable to get lightWeight node for object referenced in + No s'ha pogut obtenir el node lightWeight de l'objecte referenciat a Invalid lightWeight node for object referenced in - Invalid lightWeight node for object referenced in + Node lightWeight invàlid de l'objecte referenciat a @@ -3890,17 +3889,17 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Invalid root node in - Invalid root node in + Node arrel invàlid a External reference - External reference + Referència externa External file - External file + Fitxer extern @@ -3910,28 +3909,28 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Part to use: - Part to use: + Peça a utilitzar: Choose file... - Choose file... + Trieu el fitxer... None (Use whole object) - None (Use whole object) + Cap (Utilitzar l'objecte sencer) Reference files - Reference files + Fitxers de referència Choose reference file - Choose reference file + Trieu un fitxer de referència @@ -3941,7 +3940,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Frame - Frame + Marc @@ -3951,57 +3950,57 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Crossing point not found in profile. - Crossing point not found in profile. + No s'ha trobat el punt d'encreuament al perfil. Shapes elevation - Shapes elevation + Elevació de les formes Choose which field provides shapes elevations: - Choose which field provides shapes elevations: + Escull quin camp proporciona l'elevació de les formes: No shape found in this file - No shape found in this file + No s'ha trobat cap forma en aquest fitxer Shapefile module not found - Shapefile module not found + No s'ha trobat el mòdul Shapefile The shapefile Python library was not found on your system. Would you like to download it now from %1? It will be placed in your macros folder. - The shapefile Python library was not found on your system. Would you like to download it now from %1? It will be placed in your macros folder. + La biblioteca de Python de shapefile no s'ha trobat al sistema. Vols descarregar-la ara des de %1? Es col·locarà a la teva carpeta de macros. Error: Unable to download from %1 - Error: Unable to download from %1 + S'ha produït un error: No es pot baixar des de %1 Could not download shapefile module. Aborting. - Could not download shapefile module. Aborting. + No s'ha pogut descarregar el mòdul shapefile. Avortant. Shapefile module not downloaded. Aborting. - Shapefile module not downloaded. Aborting. + No s'ha descarregat el mòdul Shapefile. Avortant. Shapefile module not found. Aborting. - Shapefile module not found. Aborting. + No s'ha trobat el mòdul Shapefile. Avortant. The shapefile library can be downloaded from the following URL and installed in your macros folder: - The shapefile library can be downloaded from the following URL and installed in your macros folder: + La biblioteca de Shapefile es pot descarregar a la següent URL i instal·lar a la teva carpeta de macros: @@ -4011,56 +4010,56 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s - + Create Window Crea una finestra Choose a face on an existing object or select a preset - Choose a face on an existing object or select a preset + Trieu una cara d'un objecte existent o seleccioneu una preselecció - + Window not based on sketch. Window not aligned or resized. - Window not based on sketch. Window not aligned or resized. + La finestra no està basada en un croquis. La finestra no està alineada o redimensionada. - + No Width and/or Height constraint in window sketch. Window not resized. - No Width and/or Height constraint in window sketch. Window not resized. + No hi ha cap restricció d'Amplada/Alçada a la finestra del croquis. No s'ha redimensionat la finestra. - + No window found. Cannot continue. - No window found. Cannot continue. + No s'ha trobat cap finestra. No es pot continuar. - + Window options - Window options + Opcions de finestra - + Auto include in host object - Auto include in host object + Inclou automàticament a l'objecte amfitrió - + Sill height - Sill height + Alçada de suport This window has no defined opening - This window has no defined opening + Aquesta finestra no té obertura definida Get selected edge - Get selected edge + Obtingui la vora seleccionada @@ -4070,17 +4069,17 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Window elements - Window elements + Elements de finestra Hole wire - Hole wire + Nombre de fils The number of the wire that defines a hole in the host object. A value of zero will automatically adopt the largest wire - The number of the wire that defines a hole in the host object. A value of zero will automatically adopt the largest wire + El nombre de fils que defineixen un forat en l'objecte amfitrió. Un valor de zero automàticament adoptarà el fil més gran @@ -4112,8 +4111,8 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s - - + + @@ -4130,13 +4129,13 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Base 2D object - Base 2D object + Objecte base 2D Wires - Wires + Filferros @@ -4151,8 +4150,8 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s - - + + Name Nom @@ -4166,8 +4165,8 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s - - + + Thickness Gruix @@ -4176,50 +4175,50 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Offset - Equidistancia (ofset) + Equidistància Hinge - Hinge + Frontissa Opening mode - Opening mode + Mode d'obertura + default - + default + + predeterminat If this is checked, the default Frame value of this window will be added to the value entered here - If this is checked, the default Frame value of this window will be added to the value entered here + Si està marcat, el valor predeterminat del marc d'aquesta finestra s'afegirà al valor introduït aquí If this is checked, the default Offset value of this window will be added to the value entered here - If this is checked, the default Offset value of this window will be added to the value entered here + Si està marcat, el valor predeterminat de l'equidistància d'aquesta finestra s'afegirà al valor introduït aquí Press to retrieve the selected edge - Press to retrieve the selected edge + Premeu-ho per a recuperar la vora seleccionada Invert opening direction - Invert opening direction + Invertir direcció d'obertura Invert hinge position - Invert hinge position + Invertir posició de la frontissa @@ -4229,7 +4228,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Only axes must be selected - Only axes must be selected + Només es poden seleccionar eixos @@ -4239,7 +4238,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Please select at least one axis - Please select at least one axis + Si us plau, selecciona almenys un eix @@ -4247,12 +4246,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Axes - Axes + Eixos Axis system components - Axis system components + Components del sistema d'eixos @@ -4260,7 +4259,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Successfully written - Successfully written + S'ha escrit correctament @@ -4271,7 +4270,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Please select only one base object or none - Please select only one base object or none + Si us plau, seleccioneu només un objecte base, o cap @@ -4281,27 +4280,27 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Couldn't locate IfcOpenShell - Couldn't locate IfcOpenShell + No s'ha pogut localitzar IfcOpenShell IfcOpenShell not found or disabled, falling back on internal parser. - IfcOpenShell not found or disabled, falling back on internal parser. + No s'ha trobat IfcOpenShell o està inhabilitat, s'utilitzarà l'analitzador intern. IFC Schema not found, IFC import disabled. - IFC Schema not found, IFC import disabled. + No s'ha trobat l'Esquema IFC, s'ha desactivat la importació IFC. Error: IfcOpenShell is not installed - Error: IfcOpenShell is not installed + Error: IfcOpenShell no està instal·lat Error: your IfcOpenShell version is too old - Error: your IfcOpenShell version is too old + Error: la versió d'IfcOpenShell és massa antiga @@ -4316,7 +4315,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Railing - Railing + Barana @@ -4326,12 +4325,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s removed properties 'OutlineWireLeft' and 'OutlineWireRight', and added properties 'RailingLeft' and 'RailingRight' - removed properties 'OutlineWireLeft' and 'OutlineWireRight', and added properties 'RailingLeft' and 'RailingRight' + s'han eliminat les propietats 'OutlineWireLeft' i 'OutlineWireRight', i s'han afegit les propietats 'RailingLeft' i 'RailingRight' changed the type of properties 'RailingLeft' and 'RailingRight' - changed the type of properties 'RailingLeft' and 'RailingRight' + s'ha canviat el tipus de les propietats 'RailingLeft' i 'RailingRight' @@ -4346,11 +4345,11 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Merge duplicates - Merge duplicates + Fusiona els duplicats - - + + Material Material @@ -4358,38 +4357,38 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s MultiMaterial - MultiMaterial + Multimaterial - + New layer - New layer + Capa nova - + Total thickness Grossària total - + depends on the object - depends on the object + depèn de l'objecte This exporter can currently only export one site object - This exporter can currently only export one site object + Actualment, aquest exportador només pot exportar un objecte lloc Error: Space '%s' has no Zone. Aborting. - Error: Space '%s' has no Zone. Aborting. + Error: l'espai '%s' no té zona. Operació avortada. pycollada not found, collada support is disabled. - pycollada not found, collada support is disabled. + No s'ha trobat el mòdul «pycollada», el suport per a «collada» està inhabilitat. @@ -4404,22 +4403,22 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Auto height is larger than height - Auto height is larger than height + L'alçada automàtica és més gran que l'alçada Total row size is larger than height - Total row size is larger than height + La mida total de la fila és més gran que l'alçada Auto width is larger than width - Auto width is larger than width + L'amplada automàtica és més gran que l'amplada Total column size is larger than width - Total column size is larger than width + La mida total de la columna és més gran que l'amplada @@ -4430,7 +4429,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Total width - Total width + Amplada total @@ -4455,7 +4454,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Del column - Del column + Suprimeix la columna @@ -4465,12 +4464,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Remove span - Remove span + Suprimeix l'extensió Rows - Rows + Files @@ -4480,12 +4479,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Precast elements - Precast elements + Elements prefabricats Slab type - Slab type + Tipus de llosa @@ -4495,22 +4494,22 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Dent length - Dent length + Longitud de l'aleta Dent width - Dent width + Amplada de l'aleta Dent height - Dent height + Alçada de l'aleta Slab base - Slab base + Base de llosa @@ -4520,17 +4519,17 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Major diameter of holes - Major diameter of holes + Diàmetre major dels forats Minor diameter of holes - Minor diameter of holes + Diàmetre menor dels forats Spacing between holes - Spacing between holes + Espaiat entre forats @@ -4540,17 +4539,17 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Depth of grooves - Depth of grooves + Profunditat de les ranures Height of grooves - Height of grooves + Alçada de les ranures Spacing between grooves - Spacing between grooves + Espaiat entre ranures @@ -4560,42 +4559,42 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Length of down floor - Length of down floor + Longitud de la planta baixa Height of risers - Height of risers + Alçada de les contrapetges Depth of treads - Depth of treads + Profunditat de les esteses Precast options - Precast options + Opcions de prefabricats Dents list - Dents list + Llista d'aletes Add dent - Add dent + Afegeix una aleta Remove dent - Remove dent + Elimina l'aleta Slant - Slant + Inclinació @@ -4611,7 +4610,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Panel - Panel + Panell @@ -4621,7 +4620,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s PanelSheet - PanelSheet + Full de planells @@ -4632,7 +4631,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Panel options - Panel options + Opcions de planell @@ -4672,7 +4671,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Curtain Wall - Curtain Wall + Mur cortina @@ -4688,7 +4687,7 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Connector - Connector + Connector @@ -4699,12 +4698,12 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Please select exactly 2 or 3 Pipe objects - Please select exactly 2 or 3 Pipe objects + Seleccioneu exactament 2 o 3 objectes Tub Please select only Pipe objects - Please select only Pipe objects + Seleccioneu només objectes Tub @@ -4714,124 +4713,124 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Unable to build the base path - Unable to build the base path + No s'ha pogut construir el camí de base Unable to build the profile - Unable to build the profile + No s'ha pogut construir el perfil Unable to build the pipe - Unable to build the pipe + No s'ha pogut construir el tub The base object is not a Part - The base object is not a Part + L'objecte base no és una Peça Too many wires in the base shape - Too many wires in the base shape + Hi ha massa filferros a la forma base The base wire is closed - The base wire is closed + El filferro base està tancat The profile is not a 2D Part - The profile is not a 2D Part + El perfil no és una Peça 2D The profile is not closed - The profile is not closed + El perfil no està tancat Only the 3 first wires will be connected - Only the 3 first wires will be connected + Només es connectaran els 3 primers filferros Common vertex not found - Common vertex not found + No s'ha trobat el vèrtex comú Pipes are already aligned - Pipes are already aligned + Els tubs ja estan alineats Unable to revolve this connector - Unable to revolve this connector + No s'ha pogut efectuar la revolució d'aquest connector At least 2 pipes must align - At least 2 pipes must align + S'han d'alinear com a mínim 2 tubs removed property 'Result', and added property 'AutoUpdate' - removed property 'Result', and added property 'AutoUpdate' + s'ha eliminat la propietat 'Result', i s'ha afegit la propietat 'AutoUpdate' added property 'Schedule' - added property 'Schedule' + s'ha afegit la propietat 'Schedule' Unable to retrieve value from object - Unable to retrieve value from object + No s'ha pogut recuperar el valor d'aquest objecte Remove spreadsheet - Remove spreadsheet + Esborrar full de càlcul Attach spreadsheet - Attach spreadsheet + Adjuntar full de càlcul - + Import CSV file - Import CSV file + Importar fitxer CSV - + Export CSV file - Export CSV file + Exportar fitxer CSV Export CSV File - Export CSV File + Exportar fitxer CSV - + Unable to recognize that file type - Unable to recognize that file type + No es pot reconèixer el tipus de fitxer - - + + Description Descripció - - + + @@ -4839,16 +4838,16 @@ Si Distància = 0 aleshores la distància es calcula de manera que l'alçària s Valor - - + + Unit Unitat - + Schedule - Schedule + Guió @@ -4859,22 +4858,22 @@ Floor object is not allowed to accept Site, Building, or Floor objects. Site, Building, and Floor objects will be removed from the selection. You can change that in the preferences. - You can put anything but the following objects: Site, Building, and Floor - in a Floor object. + Podeu col·locar qualsevol cosa en un objecte Planta excepte els objectes Lloc, Construcció i Planta. -Floor object is not allowed to accept Site, Building, or Floor objects. +L'objecte Planta no accepta els Objectes Lloc, Construcció i Planta. -Site, Building, and Floor objects will be removed from the selection. +Els objectes Lloc, Construcció i Planta s'eliminaran de la selecció. -You can change that in the preferences. +Podeu canviar això en les preferències. There is no valid object in the selection. Floor creation aborted. - There is no valid object in the selection. + No hi ha cap objecte vàlid en la selecció. -Floor creation aborted. +S'interromp la creació de la planta. @@ -4889,7 +4888,7 @@ Floor creation aborted. Distances (mm) and angles (deg) between axes - Distances (mm) and angles (deg) between axes + Distàncies (mm) i angles (graus) entre eixos @@ -4914,27 +4913,27 @@ Floor creation aborted. Found a shape containing curves, triangulating - Found a shape containing curves, triangulating + S'ha trobat una forma que conté corbes, s'està triangulant Successfully imported - Successfully imported + S'ha importat correctament Error computing the shape of this object - Error computing the shape of this object + S'ha produït un error en calcular la forma d'aquest objecte has no solid - has no solid + no té cap sòlid has an invalid shape - has an invalid shape + té una forma invàlida @@ -4945,44 +4944,44 @@ Floor creation aborted. has a null shape - has a null shape + té una forma nul·la Toggle subcomponents - Toggle subcomponents + Alternar els subcomponents Closing Sketch edit - Closing Sketch edit + S'està tancant l'edició del Croquis Component - Component + Component Components of this object - Components of this object + Components d'aquest objecte Base component - Base component + Component base Additions - Additions + Addicions Subtractions - Subtractions + Subtraccions @@ -4992,7 +4991,7 @@ Floor creation aborted. Fixtures - Fixtures + Accessoris @@ -5012,7 +5011,7 @@ Floor creation aborted. Edit standard code - Edit standard code + Editar codi estàndard @@ -5023,12 +5022,12 @@ Floor creation aborted. Add property... - Add property... + Afegeix propietat... Add property set... - Add property set... + Afegeix conjunt de propietats... @@ -5039,13 +5038,13 @@ Floor creation aborted. New property - New property + Propietat nova New property set - New property set + Conjunt de propietats nou @@ -5061,7 +5060,7 @@ Floor creation aborted. Please select a base face on a structural object - Please select a base face on a structural object + Seleccioneu una cara base en un objecte d'estructura @@ -5076,17 +5075,17 @@ Floor creation aborted. Toggle Cutview - Toggle Cutview + Alterna la vista de tall Section plane settings - Section plane settings + Configuració del pla de secció Remove highlighted objects from the list above - Remove highlighted objects from the list above + Elimina els objectes ressaltats de la llista anterior @@ -5096,57 +5095,57 @@ Floor creation aborted. Add selected object(s) to the scope of this section plane - Add selected object(s) to the scope of this section plane + Afegeix l'objecte o els objectes seleccionats a l'àmbit d'aquest pla de secció Objects seen by this section plane: - Objects seen by this section plane: + Objectes vists per aquest pla de secció: Section plane placement: - Section plane placement: + Posicionament del pla de secció: Rotate X - Rotate X + Rotar X Rotates the plane along the X axis - Rotates the plane along the X axis + Gira el pla al llarg de l'eix X Rotate Y - Rotate Y + Rotar Y Rotates the plane along the Y axis - Rotates the plane along the Y axis + Gira el pla al llarg de l'eix Y Rotate Z - Rotate Z + Rotar Z Rotates the plane along the Z axis - Rotates the plane along the Z axis + Gira el pla al llarg de l'eix Z Resize - Resize + Redimensionar Resizes the plane to fit the objects in the list above - Resizes the plane to fit the objects in the list above + Redimensiona el pla per a ajustar els objectes de la llista anterior @@ -5157,7 +5156,7 @@ Floor creation aborted. Centers the plane on the objects in the list above - Centers the plane on the objects in the list above + Centra el pla sobre els objectes de la llista anterior @@ -5174,28 +5173,28 @@ Building object is not allowed to accept Site and Building objects. Site and Building objects will be removed from the selection. You can change that in the preferences. - You can put anything but Site and Building objects in a Building object. + Podeu col·locar qualsevol cosa en un objecte Construcció excepte els objectes en un objecte Construcció. -Building object is not allowed to accept Site and Building objects. +L'objecte Construcció no permet acceptar els objectes Lloc i Construcció. -Site and Building objects will be removed from the selection. +Els objectes Lloc i Construcció s'eliminaran de la selecció. -You can change that in the preferences. +Podeu canviar això en les preferències. There is no valid object in the selection. Building creation aborted. - There is no valid object in the selection. + No hi ha cap objecte vàlid en la selecció. -Building creation aborted. +S'avorta la creació de la construcció. Create Building - Crea un edifici + Crea una construcció @@ -5210,12 +5209,12 @@ Building creation aborted. Set text position - Set text position + Estableix la posició del text Space boundaries - Space boundaries + Límits de l'espai @@ -5225,7 +5224,7 @@ Building creation aborted. Walls can only be based on Part or Mesh objects - Walls can only be based on Part or Mesh objects + Els murs només es poden crear a partir d'objectes Peça o Malla @@ -5237,7 +5236,7 @@ Building creation aborted. First point of wall - First point of wall + Primer punt del mur @@ -5247,7 +5246,7 @@ Building creation aborted. Wall Presets... - Wall Presets... + Valors predeterminats de Mur... @@ -5277,29 +5276,29 @@ Building creation aborted. The selected wall contains no subwall to merge - The selected wall contains no subwall to merge + El mur seleccionat no conté cap submur per a fusionar Please select only wall objects - Please select only wall objects + Seleccioneu només objectes mur Merge Walls - Merge Walls + Fusiona els murs Cannot compute blocks for wall - Cannot compute blocks for wall + No es poden calcular els blocs pel mur Error: Unable to modify the base object of this wall - Error: Unable to modify the base object of this wall + Error: No es pot modificar l'objecte base d'aquest mur @@ -5309,7 +5308,7 @@ Building creation aborted. Invalid cut plane - Invalid cut plane + Pla de tall invàlid @@ -5324,17 +5323,17 @@ Building creation aborted. doesn't contain any solid - doesn't contain any solid + no conté cap sòlid contains a non-closed solid - contains a non-closed solid + conté un sòlid no tancat contains faces that are not part of any solid - contains faces that are not part of any solid + conté cares que no formen part de cap sòlid @@ -5344,7 +5343,7 @@ Building creation aborted. Set description - Set description + Estableix una descripció @@ -5364,7 +5363,7 @@ Building creation aborted. Export CSV - Export CSV + Exporta CSV @@ -5379,18 +5378,18 @@ Building creation aborted. Object doesn't have settable IFC attributes - Object doesn't have settable IFC attributes + L'objecte no té atributs d'IFC configurables Disabling B-rep force flag of object - Disabling B-rep force flag of object + Desactiva l'indicador de B-rep forçat de l'objecte Enabling B-rep force flag of object - Enabling B-rep force flag of object + Activa l'indicador de B-rep forçat de l'objecte @@ -5400,27 +5399,27 @@ Building creation aborted. Grouping - Grouping + Agrupar Remove space boundary - Remove space boundary + Suprimeix el límit d'espai Ungrouping - Ungrouping + Desagrupar Split Mesh - Split Mesh + Divideix la malla Mesh to Shape - Mesh to Shape + De malla a forma @@ -5436,7 +5435,7 @@ Building creation aborted. Key - Key + Clau @@ -5451,17 +5450,17 @@ Building creation aborted. Create Level - Create Level + Crear un nivell Create Fence - Create Fence + Crear una tanca Create Box - Create Box + Crear una caixa @@ -5469,12 +5468,12 @@ Building creation aborted. Multiple Structures - Multiple Structures + Estructures múltiples Create multiple BIM Structures from a selected base, using each selected edge as an extrusion path - Create multiple BIM Structures from a selected base, using each selected edge as an extrusion path + Crea múltiples estructures BIM a partir d'una base seleccionada, utilitzant cada vora seleccionada com a camí d'extrusió @@ -5487,7 +5486,7 @@ Building creation aborted. Create a structural system from a selected structure and axis - Create a structural system from a selected structure and axis + Crea un sistema estructural a partir d'una estructura i un eix seleccionats @@ -5500,7 +5499,7 @@ Building creation aborted. Creates a structure from scratch or from a selected object (sketch, wire, face or solid) - Creates a structure from scratch or from a selected object (sketch, wire, face or solid) + Crea una estructura des de zero o d'un objecte seleccionat (croquis, filferro, cara o sòlid) @@ -5509,37 +5508,37 @@ Building creation aborted. An optional extrusion path for this element - An optional extrusion path for this element + Un camí d'extrusió opcional per a aquest element The computed length of the extrusion path - The computed length of the extrusion path + La longitud calculada del camí d'extrusió Start offset distance along the extrusion path (positive: extend, negative: trim) - Start offset distance along the extrusion path (positive: extend, negative: trim) + Distància de l'equidistància inicial al llarg del camí d'extrusió (positiva: allarga, negativa: escurça) End offset distance along the extrusion path (positive: extend, negative: trim) - End offset distance along the extrusion path (positive: extend, negative: trim) + Distància de l'equidistància final al llarg del camí d'extrusió (positiva: allarga, negativa: escurça) Automatically align the Base of the Structure perpendicular to the Tool axis - Automatically align the Base of the Structure perpendicular to the Tool axis + Alinea automàticament la base de l'estructura perpendicularment a l'eix d'eines X offset between the Base origin and the Tool axis (only used if BasePerpendicularToTool is True) - X offset between the Base origin and the Tool axis (only used if BasePerpendicularToTool is True) + Equidistància X entre l'origen de Base i l'eix d'eines (només es fa servir si BasePerpendicularToTool és Cert) Y offset between the Base origin and the Tool axis (only used if BasePerpendicularToTool is True) - Y offset between the Base origin and the Tool axis (only used if BasePerpendicularToTool is True) + Equidistància Y entre l'origen de Base i l'eix d'eines (només es fa servir si BasePerpendicularToTool és Cert) @@ -5655,7 +5654,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6592,43 +6591,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material El color d'aquest material - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -7881,7 +7880,7 @@ Building creation aborted. Frame - Frame + Marc @@ -8026,8 +8025,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -8141,7 +8140,7 @@ Building creation aborted. Curtain Wall - Curtain Wall + Mur cortina @@ -8189,7 +8188,7 @@ Building creation aborted. Schedule - Schedule + Guió @@ -8295,7 +8294,7 @@ Building creation aborted. Merge Walls - Merge Walls + Fusiona els murs @@ -8334,7 +8333,7 @@ Building creation aborted. Split Mesh - Split Mesh + Divideix la malla @@ -8347,7 +8346,7 @@ Building creation aborted. Mesh to Shape - Mesh to Shape + De malla a forma @@ -8412,7 +8411,7 @@ Building creation aborted. Component - Component + Component @@ -8451,7 +8450,7 @@ Building creation aborted. Toggle subcomponents - Toggle subcomponents + Alternar els subcomponents @@ -8774,12 +8773,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Add property... - Add property... + Afegeix propietat... Add property set... - Add property set... + Afegeix conjunt de propietats... @@ -8804,7 +8803,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet New property set - New property set + Conjunt de propietats nou @@ -9044,7 +9043,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Merge duplicates - Merge duplicates + Fusiona els duplicats @@ -9288,7 +9287,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Axes - Axes + Eixos @@ -9371,12 +9370,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9501,7 +9500,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets @@ -10142,12 +10141,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Offset... - 2D Offset... ( Compensació)... + Equidistància 2D... Utility to offset planar shapes - Utilitat per a separar les formes d'un pla + Utilitat per a l'equidistància de les formes d'un pla diff --git a/src/Mod/BIM/Resources/translations/Arch_cs.qm b/src/Mod/BIM/Resources/translations/Arch_cs.qm index b679d01bfb..667c801b65 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_cs.qm and b/src/Mod/BIM/Resources/translations/Arch_cs.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_cs.ts b/src/Mod/BIM/Resources/translations/Arch_cs.ts index 442349f88f..57507625f2 100644 --- a/src/Mod/BIM/Resources/translations/Arch_cs.ts +++ b/src/Mod/BIM/Resources/translations/Arch_cs.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Architektonický materiál + BIM material + BIM material @@ -3412,7 +3412,7 @@ bude pracovat při otevírání souboru. - + Preset @@ -3677,7 +3677,7 @@ bude pracovat při otevírání souboru. - + Reorder children alphabetically Změnit pořadí potomků abecedně @@ -4037,7 +4037,7 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati - + Create Window Vytvořit okno @@ -4047,32 +4047,32 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati Vyberte plochu na existujícím objektu nebo vyberte přednastavení - + Window not based on sketch. Window not aligned or resized. Okno není založeno na náčrtu. Okno není zarovnané nebo změněné. - + No Width and/or Height constraint in window sketch. Window not resized. Žádná šířka a/nebo Výška omezení v náčrtu okna. Okno nebylo změněno. - + No window found. Cannot continue. Nebylo nalezeno žádné okno. Nelze pokračovat. - + Window options Volby okna - + Auto include in host object Automaticky zahrnout do hostitelského objektu - + Sill height Výška parapetu @@ -4138,8 +4138,8 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati - - + + @@ -4177,8 +4177,8 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati - - + + Name Jméno @@ -4192,8 +4192,8 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati - - + + Thickness Tloušťka @@ -4375,8 +4375,8 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati Sloučit duplikáty - - + + Material Materiál @@ -4387,17 +4387,17 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati MultiMaterial - + New layer Nová vrstva - + Total thickness Celková tloušťka - + depends on the object záleží na objektu @@ -4829,12 +4829,12 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4844,20 +4844,20 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Popis - - + + @@ -4865,14 +4865,14 @@ Je-li Run = 0, pak se běh vypočítá tak, aby výška byla stejná jako relati Hodnota - - + + Unit Jednotka - + Schedule Schedule @@ -5681,7 +5681,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6618,43 +6618,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Barva tohoto materiálu - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8052,8 +8052,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9397,12 +9397,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. Je potřeba IfcOpenShell k importu a exportu IFC souborů. Zdá se, že ve vašem systému chybí. Chcete jej stáhnout a nainstalovat nyní? Bude nainstalován v adresáři maker FreeCADu. @@ -9527,7 +9527,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_da.qm b/src/Mod/BIM/Resources/translations/Arch_da.qm index 559a46a48d..0066462db8 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_da.qm and b/src/Mod/BIM/Resources/translations/Arch_da.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_da.ts b/src/Mod/BIM/Resources/translations/Arch_da.ts index 4aade2525e..9a5583efd3 100644 --- a/src/Mod/BIM/Resources/translations/Arch_da.ts +++ b/src/Mod/BIM/Resources/translations/Arch_da.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arch-materiale + BIM material + BIM material @@ -3414,7 +3414,7 @@ unit to work with when opening the file. - + Preset @@ -3679,7 +3679,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4039,7 +4039,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4049,32 +4049,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4140,8 +4140,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4179,8 +4179,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Navn @@ -4194,8 +4194,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Tykkelse @@ -4204,7 +4204,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Offset - Offset + Forskydning @@ -4377,8 +4377,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Materiel @@ -4389,17 +4389,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Total thickness - + depends on the object depends on the object @@ -4831,12 +4831,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Vedhæft regneark - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4846,20 +4846,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Beskrivelse - - + + @@ -4867,14 +4867,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Værdi - - + + Unit Enhed - + Schedule Schedule @@ -5683,7 +5683,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6620,43 +6620,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Farven på dette materiale - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8054,8 +8054,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9399,12 +9399,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9529,7 +9529,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets @@ -10046,7 +10046,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Leader - Leader + Leder diff --git a/src/Mod/BIM/Resources/translations/Arch_de.qm b/src/Mod/BIM/Resources/translations/Arch_de.qm index d84332f76f..8757fa1283 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_de.qm and b/src/Mod/BIM/Resources/translations/Arch_de.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_de.ts b/src/Mod/BIM/Resources/translations/Arch_de.ts index 65a1d75eb9..ba1619c7b3 100644 --- a/src/Mod/BIM/Resources/translations/Arch_de.ts +++ b/src/Mod/BIM/Resources/translations/Arch_de.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arch-Material + BIM material + BIM-Material @@ -1971,7 +1971,7 @@ Ein FreeCAD-Dokument kann immer noch manuell in ein IFC-Dokument umgewandelt wer BIM tutorial - BIM-Tutorial + BIM-Anleitung @@ -1997,7 +1997,7 @@ p, li { white-space: pre-wrap ; } Tasks to complete: - Zu erledigende Aufträge: + Zu erledigende Aufgaben: @@ -3382,7 +3382,7 @@ unit to work with when opening the file. - + Preset @@ -3647,7 +3647,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Kinder alphabetisch neu ordnen @@ -4007,7 +4007,7 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel - + Create Window Fenster erzeugen @@ -4017,32 +4017,32 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel Wähle eine Fläche auf einem existierenden Objekt oder wähle eine Voreinstellung - + Window not based on sketch. Window not aligned or resized. Fenster basiert auf keiner Skizze. Fenster ist nicht ausgerichtet oder in der Größe angepasst. - + No Width and/or Height constraint in window sketch. Window not resized. Keine Breiten- und/oder Höhenbegrenzung in Fensterskizze. Fenster wird nicht verändert. - + No window found. Cannot continue. Kein Fenster gefunden. Kann nicht fortfahren. - + Window options Fensteroptionen - + Auto include in host object Automatisch in Host-Objekt einfügen - + Sill height Fensterbankhöhe @@ -4108,8 +4108,8 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel - - + + @@ -4147,8 +4147,8 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel - - + + Name Name @@ -4162,8 +4162,8 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel - - + + Thickness Dicke @@ -4345,8 +4345,8 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel Duplikate zusammenführen - - + + Material Material @@ -4357,17 +4357,17 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel VerschiedeneMaterialien - + New layer Neue Ebene - + Total thickness Gesamtdicke - + depends on the object hängt vom Objekt ab @@ -4799,12 +4799,12 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel Kalkulationstabelle anhängen - + Import CSV file CSV-Datei importieren - + Export CSV file CSV-Datei exportieren @@ -4814,20 +4814,20 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel CSV-Datei exportieren - + Unable to recognize that file type Dateityp nicht erkannt - - + + Description Beschreibung - - + + @@ -4835,14 +4835,14 @@ Wenn Länge = 0 dann wird die Länge so berechnet, dass die Höhe gleich dem rel Wert - - + + Unit Einheit - + Schedule Zeitplan @@ -5648,7 +5648,7 @@ Gebäudeerstellung abgebrochen. - + A standard code (MasterFormat, OmniClass,...) Ein Standardcode (MasterFormat, OmniClass,...) @@ -6585,43 +6585,43 @@ Gebäudeerstellung abgebrochen. Wenn wahr, wird der Zaun wie der ursprüngliche Pfosten und Abschnitt gefärbt. - - + + A description for this material Eine Beschreibung für dieses Material - + A URL where to find information about this material Eine URL wo Informationen zu diesem Material zu finden sind - + The transparency value of this material Der Transparenzwert dieses Materials - + The color of this material Die Farbe dieses Materials - + The color of this material when cut Die Farbe dieses Materials beim Schneiden - + The list of layer names Die Liste der Ebenen-Namen - + The list of layer materials Die Liste der Ebenen-Materialien - + The list of layer thicknesses Die Liste der Schichtdicken @@ -8019,8 +8019,8 @@ Gebäudeerstellung abgebrochen. - The sizes for rows - Die Größen der Zeilen + The sizes of rows + The sizes of rows @@ -9366,12 +9366,12 @@ STRG + / um zwischen automatischem und manuellem Mosus umzuschaltenEinheitensystem für alle geöffneten Dokumente aktualisiert - + IfcOpenShell not found IfcOpenShell nicht gefunden - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell wird benötigt, um IFC-Dateien zu importieren und zu exportieren. Es scheint auf dem System zu fehlen. Soll es jetzt heruntergeladen und installiert werden? Es wird im FreeCAD Makros Verzeichnis installiert. @@ -9413,7 +9413,7 @@ STRG + / um zwischen automatischem und manuellem Mosus umzuschalten BIM Tutorial - step - BIM-Tutorial - Schritt + BIM-Anleitung - Schritt @@ -9496,7 +9496,7 @@ STRG + / um zwischen automatischem und manuellem Mosus umzuschalten2D-Ansichten - + Sheets Blätter @@ -10314,7 +10314,7 @@ STRG + / um zwischen automatischem und manuellem Mosus umzuschalten Creates a new TechDraw page from a template - Erstellt eine neue TechDraw-Seite aus einer Vorlage + Erstellt ein neues TechDraw-Zeichnungsblatt aus einer Vorlage @@ -10374,12 +10374,12 @@ STRG + / um zwischen automatischem und manuellem Mosus umzuschalten BIM Tutorial - BIM-Tutorial + BIM-Anleitung Starts or continues the BIM in-game tutorial - Startet oder setzt das BIM-In-Game-Tutorial fort + Startet oder setzt die anwendungsinterne BIM-Anleitung fort diff --git a/src/Mod/BIM/Resources/translations/Arch_el.qm b/src/Mod/BIM/Resources/translations/Arch_el.qm index 2d977e0d73..e6af3ff3d2 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_el.qm and b/src/Mod/BIM/Resources/translations/Arch_el.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_el.ts b/src/Mod/BIM/Resources/translations/Arch_el.ts index 8ee40d5d20..2749e5bd4d 100644 --- a/src/Mod/BIM/Resources/translations/Arch_el.ts +++ b/src/Mod/BIM/Resources/translations/Arch_el.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Αρχιτεκτονικό υλικό + BIM material + BIM material @@ -3409,7 +3409,7 @@ unit to work with when opening the file. - + Preset @@ -3674,7 +3674,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4034,7 +4034,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4044,32 +4044,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4135,8 +4135,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4174,8 +4174,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Όνομα @@ -4189,8 +4189,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Πάχος @@ -4372,8 +4372,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Υλικό @@ -4384,17 +4384,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Συνολικό πάχος - + depends on the object depends on the object @@ -4826,12 +4826,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4841,20 +4841,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Περιγραφή - - + + @@ -4862,14 +4862,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Τιμή - - + + Unit Μονάδα - + Schedule Schedule @@ -5678,7 +5678,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6615,43 +6615,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Το χρώμα αυτού του υλικού - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8049,8 +8049,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9394,12 +9394,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9524,7 +9524,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_es-AR.qm b/src/Mod/BIM/Resources/translations/Arch_es-AR.qm index 7865ce6b6c..9e21d127b1 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_es-AR.qm and b/src/Mod/BIM/Resources/translations/Arch_es-AR.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_es-AR.ts b/src/Mod/BIM/Resources/translations/Arch_es-AR.ts index 1dd3d8af3b..d83cef30fc 100644 --- a/src/Mod/BIM/Resources/translations/Arch_es-AR.ts +++ b/src/Mod/BIM/Resources/translations/Arch_es-AR.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material arquitectónico + BIM material + Material BIM @@ -660,7 +660,7 @@ Utilidades -> Hacer proyecto IFC <html><head/><body><p>Checked quantities will be exported to IFC. Quantities marked with a warning sign indicate a zero value that you might need to check. Clicking a column header will apply to all selected items.</p><p><span style=" font-weight:600;">Warning</span>: Horizontal area is the area obtained when projecting the object on the ground (X,Y) plane, but vertical area is the sum of all areas of the faces that are vertical (orthogonal to the ground plane), so a wall will have its both faces counted.</p><p>Length, width and height values can be changed here, but beware, it might change the geometry!</p></body></html> - <html><head/><body><p>Las cantidades seleccionadas se exportarán a IFC. Las cantidades marcadas con un signo de advertencia indican un valor cero que podría necesitar verificar. Al hacer clic en el encabezado de una columna se aplicará a todos los elementos seleccionados.</p><p><span style=" font-weight:600;">Advertencia</span>: El área horizontal es el área obtenida al proyectar el objeto en el suelo (X,Y) plano, pero el área vertical es la suma de todas las áreas de las caras que son verticales (ortogonal al plano del suelo), así que una pared tendrá sus dos caras contadas.</p><p>Los valores de longitud, ancho y altura pueden ser cambiados aquí, pero ten cuidado, podría cambiar la geometría del elemento!</p></body></html> + <html><head/><body><p>Las cantidades seleccionadas se exportarán a IFC. Las cantidades marcadas con un signo de advertencia indican un valor cero que podría necesitar verificar. Al hacer clic en el encabezado de una columna se aplicará a todos los elementos seleccionados.</p><p><span style=" font-weight:600;">Advertencia</span>: El área horizontal es el área obtenida al proyectar el objeto en el suelo (X,Y) plano, pero el área vertical es la suma de todas las áreas de las caras que son verticales (ortogonal al plano del suelo), así que una pared tendrá sus dos caras contadas.</p><p>Los valores de longitud, ancho y altura pueden ser cambiados aquí, pero ¡ten cuidado, podría cambiar la geometría del elemento!</p></body></html> @@ -1118,7 +1118,7 @@ Utilidades -> Hacer proyecto IFC The above settings can be saved as a preset. Presets are stored as .txt files in your FreeCAD user folder - Los ajustes anteriores pueden guardarse como preajuste. Los preajustes se almacenan como archivos .txt en la carpeta de usuario de FreeCAD + Los ajustes anteriores pueden guardarse como preconfiguración. Las preconfiguraciones se almacenan como archivos .txt en la carpeta de usuario de FreeCAD @@ -2313,7 +2313,7 @@ p, li { white-space: pre-wrap; } If this is checked, when an object becomes Subtraction or Addition of an Arch object, it will receive the Draft Construction color. - Si esto está marcado, cuando un objeto se convierte en Sustracción o Adición de un objeto Arch, recibirá el color de Construcción de Draft. + Si esto está marcado, cuando un objeto se convierte en Sustracción o Adición de un objeto arquitectónico, recibirá el color de construcción Draft. @@ -2353,7 +2353,7 @@ p, li { white-space: pre-wrap; } If this is checked, when an Arch object has a material, the object will take the color of the material. This can be overridden for each object. - Si se selecciona esta opción, cuando un objeto Arco tiene un material, el objeto tomará el color del material. Esto se puede anular para cada objeto. + Si se selecciona esta opción, cuando un objeto arquitectónico tiene un material, el objeto tomará el color del material. Esto se puede anular para cada objeto. @@ -3402,7 +3402,7 @@ En cualquier caso, algunas aplicaciones BIM usarán este factor para elegir con - + Preset @@ -3667,7 +3667,7 @@ En cualquier caso, algunas aplicaciones BIM usarán este factor para elegir con - + Reorder children alphabetically Ordenar los valores alfabéticamente @@ -4027,7 +4027,7 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - + Create Window Crear ventana @@ -4037,32 +4037,32 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Elige una cara en un objeto existente o seleccione por defecto - + Window not based on sketch. Window not aligned or resized. Ventana no basada en un sketch. Ventana no alineada o redimensionada. - + No Width and/or Height constraint in window sketch. Window not resized. No hay restricciones de anchura y/o altura en el sketch de la ventana. La ventana no ha cambiado de tamaño. - + No window found. Cannot continue. No se ha encontrado ninguna ventana. No se puede continuar. - + Window options Opciones de ventana - + Auto include in host object Auto incluir en el objeto anfitrión - + Sill height Altura de alfeizar @@ -4128,8 +4128,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + @@ -4167,8 +4167,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + Name Nombre @@ -4182,8 +4182,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + Thickness Espesor @@ -4365,8 +4365,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Fusionar duplicados - - + + Material Material @@ -4377,17 +4377,17 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Multimaterial - + New layer Nueva capa - + Total thickness Espesor total - + depends on the object depende del objeto @@ -4819,12 +4819,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Adjuntar hoja de cálculo - + Import CSV file Importar archivo CSV - + Export CSV file Exportar archivo CSV @@ -4834,20 +4834,20 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Exportar archivo CSV - + Unable to recognize that file type No se puede reconocer ese tipo de archivo - - + + Description Descripción - - + + @@ -4855,14 +4855,14 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Valor - - + + Unit Unidad - + Schedule Tabla de Planificación @@ -5671,7 +5671,7 @@ Creación de Edificio cancelada. - + A standard code (MasterFormat, OmniClass,...) Un código estándar (MasterFormat, OmniClass,...) @@ -6608,43 +6608,43 @@ Creación de Edificio cancelada. Cuando es verdadero, la barandilla se coloreará como el poste original y la sección. - - + + A description for this material Una descripción de este material - + A URL where to find information about this material Una URL donde encontrar información sobre este material - + The transparency value of this material El valor de transparencia de este material - + The color of this material El color de este material - + The color of this material when cut El color de este material cuando se corta - + The list of layer names La lista de los nombres de capa - + The list of layer materials La lista de materiales de capa - + The list of layer thicknesses La lista de espesores de capa @@ -8042,7 +8042,7 @@ Creación de Edificio cancelada. - The sizes for rows + The sizes of rows Los tamaños de las filas @@ -8635,7 +8635,7 @@ CTRL+/ para alternar entre modo automático y manual Do you wish to colorize the objects that have moved in yellow in the other file (to serve as a diff)? - ¿Desea colorear en amarillo los objetos que se han movido en el otro archivo (para usar como diferencia)? + ¿Desea colorear en amarillo los objetos que se han movido en el otro archivo (para servir como diferencia)? @@ -9391,12 +9391,12 @@ CTRL+/ para alternar entre modo automático y manual Sistema de unidades actualizado para todos los documentos abiertos - + IfcOpenShell not found IfcOpenShell no encontrado - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell es necesario para importar y exportar archivos IFC. Parece que falta en su sistema. ¿Desea descargarlo e instalarlo ahora? Se instalará en el directorio de Macros de FreeCAD. @@ -9521,7 +9521,7 @@ CTRL+/ para alternar entre modo automático y manual Vistas 2D - + Sheets Hojas diff --git a/src/Mod/BIM/Resources/translations/Arch_es-ES.qm b/src/Mod/BIM/Resources/translations/Arch_es-ES.qm index 845861e556..686e020305 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_es-ES.qm and b/src/Mod/BIM/Resources/translations/Arch_es-ES.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_es-ES.ts b/src/Mod/BIM/Resources/translations/Arch_es-ES.ts index 6e5246f608..80b3899027 100644 --- a/src/Mod/BIM/Resources/translations/Arch_es-ES.ts +++ b/src/Mod/BIM/Resources/translations/Arch_es-ES.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material del banco de trabajo Arch + BIM material + Material BIM @@ -660,7 +660,7 @@ Utilidades -> Hacer proyecto IFC <html><head/><body><p>Checked quantities will be exported to IFC. Quantities marked with a warning sign indicate a zero value that you might need to check. Clicking a column header will apply to all selected items.</p><p><span style=" font-weight:600;">Warning</span>: Horizontal area is the area obtained when projecting the object on the ground (X,Y) plane, but vertical area is the sum of all areas of the faces that are vertical (orthogonal to the ground plane), so a wall will have its both faces counted.</p><p>Length, width and height values can be changed here, but beware, it might change the geometry!</p></body></html> - <html><head/><body><p>Las cantidades seleccionadas se exportarán a IFC. Las cantidades marcadas con un signo de advertencia indican un valor cero que podría necesitar verificar. Al hacer clic en el encabezado de una columna se aplicará a todos los elementos seleccionados.</p><p><span style=" font-weight:600;">Advertencia</span>: El área horizontal es el área obtenida al proyectar el objeto en el suelo (X,Y) plano, pero el área vertical es la suma de todas las áreas de las caras que son verticales (ortogonal al plano del suelo), así que una pared tendrá sus dos caras contadas.</p><p>Los valores de longitud, ancho y altura pueden ser cambiados aquí, pero ten cuidado, podría cambiar la geometría del elemento!</p></body></html> + <html><head/><body><p>Las cantidades seleccionadas se exportarán a IFC. Las cantidades marcadas con un signo de advertencia indican un valor cero que podría necesitar verificar. Al hacer clic en el encabezado de una columna se aplicará a todos los elementos seleccionados.</p><p><span style=" font-weight:600;">Advertencia</span>: El área horizontal es el área obtenida al proyectar el objeto en el suelo (X,Y) plano, pero el área vertical es la suma de todas las áreas de las caras que son verticales (ortogonal al plano del suelo), así que una pared tendrá sus dos caras contadas.</p><p>Los valores de longitud, ancho y altura pueden ser cambiados aquí, pero ¡ten cuidado, podría cambiar la geometría del elemento!</p></body></html> @@ -1118,7 +1118,7 @@ Utilidades -> Hacer proyecto IFC The above settings can be saved as a preset. Presets are stored as .txt files in your FreeCAD user folder - Los ajustes anteriores pueden guardarse como preajuste. Los preajustes se almacenan como archivos .txt en la carpeta de usuario de FreeCAD + Los ajustes anteriores pueden guardarse como preconfiguración. Las preconfiguraciones se almacenan como archivos .txt en la carpeta de usuario de FreeCAD @@ -2314,7 +2314,7 @@ p, li { white-space: pre-wrap; } If this is checked, when an object becomes Subtraction or Addition of an Arch object, it will receive the Draft Construction color. - Si esto está marcado, cuando un objeto se convierte en Sustracción o Adición de un objeto Arch, recibirá el color de Construcción de Draft. + Si esto está marcado, cuando un objeto se convierte en Sustracción o Adición de un objeto arquitectónico, recibirá el color de construcción Draft. @@ -2354,7 +2354,7 @@ p, li { white-space: pre-wrap; } If this is checked, when an Arch object has a material, the object will take the color of the material. This can be overridden for each object. - Si se selecciona esta opción, cuando un objeto Arco tiene un material, el objeto tomará el color del material. Esto se puede anular para cada objeto. + Si se selecciona esta opción, cuando un objeto arquitectónico tiene un material, el objeto tomará el color del material. Esto se puede anular para cada objeto. @@ -2626,7 +2626,7 @@ en lugar del banco de trabajo web FreeCAD Dashdot - DashDot + Línea y punto @@ -2778,7 +2778,7 @@ esto es más seguro si comienzas a obtener fallos cuando estableces múltiples n Do not import Arch objects - No importar arcos de objetos + No importar objetos arquitectónicos @@ -3404,7 +3404,7 @@ En cualquier caso, algunas aplicaciones BIM usarán este factor para elegir con - + Preset @@ -3669,7 +3669,7 @@ En cualquier caso, algunas aplicaciones BIM usarán este factor para elegir con - + Reorder children alphabetically Ordenar los valores alfabéticamente @@ -4029,7 +4029,7 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - + Create Window Crear ventana @@ -4039,32 +4039,32 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Elige una cara en un objeto existente o seleccione por defecto - + Window not based on sketch. Window not aligned or resized. Ventana no basada en un sketch. Ventana no alineada o redimensionada. - + No Width and/or Height constraint in window sketch. Window not resized. No hay restricciones de anchura y/o altura en el sketch de la ventana. La ventana no ha cambiado de tamaño. - + No window found. Cannot continue. No se ha encontrado ninguna ventana. No se puede continuar. - + Window options Opciones de ventana - + Auto include in host object Auto incluir en el objeto anfitrión - + Sill height Altura de alfeizar @@ -4130,8 +4130,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + @@ -4169,8 +4169,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + Name Nombre @@ -4184,8 +4184,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu - - + + Thickness Espesor @@ -4367,8 +4367,8 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Fusionar duplicados - - + + Material Material @@ -4379,17 +4379,17 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Multimaterial - + New layer Nueva capa - + Total thickness Espesor total - + depends on the object depende del objeto @@ -4821,12 +4821,12 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Adjuntar hoja de cálculo - + Import CSV file Importar archivo CSV - + Export CSV file Exportar archivo CSV @@ -4836,20 +4836,20 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Exportar archivo CSV - + Unable to recognize that file type No se puede reconocer ese tipo de archivo - - + + Description Descripción - - + + @@ -4857,14 +4857,14 @@ Si Distancia = 0 entonces la distancia es calcula de forma que la altura sea igu Valor - - + + Unit Unidad - + Schedule Tabla de Planificación @@ -5673,7 +5673,7 @@ Creación de Edificio cancelada. - + A standard code (MasterFormat, OmniClass,...) Un código estándar (MasterFormat, OmniClass,...) @@ -6610,43 +6610,43 @@ Creación de Edificio cancelada. Cuando es verdadero, la barandilla se coloreará como el poste original y la sección. - - + + A description for this material Una descripción de este material - + A URL where to find information about this material Una URL donde encontrar información sobre este material - + The transparency value of this material El valor de transparencia de este material - + The color of this material El color de este material - + The color of this material when cut El color de este material cuando se corta - + The list of layer names La lista de los nombres de capa - + The list of layer materials La lista de materiales de capa - + The list of layer thicknesses La lista de espesores de capa @@ -8044,7 +8044,7 @@ Creación de Edificio cancelada. - The sizes for rows + The sizes of rows Los tamaños de las filas @@ -8637,7 +8637,7 @@ CTRL+/ para alternar entre modo automático y manual Do you wish to colorize the objects that have moved in yellow in the other file (to serve as a diff)? - ¿Desea colorear en amarillo los objetos que se han movido en el otro archivo (para usar como diferencia)? + ¿Desea colorear en amarillo los objetos que se han movido en el otro archivo (para servir como diferencia)? @@ -9393,12 +9393,12 @@ CTRL+/ para alternar entre modo automático y manual Sistema de unidades actualizado para todos los documentos abiertos - + IfcOpenShell not found IfcOpenShell no encontrado - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell es necesario para importar y exportar archivos IFC. Parece que falta en su sistema. ¿Desea descargarlo e instalarlo ahora? Se instalará en el directorio de Macros de FreeCAD. @@ -9523,7 +9523,7 @@ CTRL+/ para alternar entre modo automático y manual Vistas 2D - + Sheets Hojas diff --git a/src/Mod/BIM/Resources/translations/Arch_eu.qm b/src/Mod/BIM/Resources/translations/Arch_eu.qm index 3c4e501f24..a26746daff 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_eu.qm and b/src/Mod/BIM/Resources/translations/Arch_eu.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_eu.ts b/src/Mod/BIM/Resources/translations/Arch_eu.ts index 4bb06a231f..1fbee3afb3 100644 --- a/src/Mod/BIM/Resources/translations/Arch_eu.ts +++ b/src/Mod/BIM/Resources/translations/Arch_eu.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arkitektura-materiala + BIM material + BIM material @@ -3411,7 +3411,7 @@ dute fitxategia irekitzean zein unitatetan egingo duten lan aukeratzeko. - + Preset @@ -3676,7 +3676,7 @@ dute fitxategia irekitzean zein unitatetan egingo duten lan aukeratzeko. - + Reorder children alphabetically Ordenatu haurrak alfabetikoki @@ -4036,7 +4036,7 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare - + Create Window Sortu leihoa @@ -4046,32 +4046,32 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Aukeratu lehendik dagoen objektu baten aurpegi bat edo hautatu aurrezarpen bat - + Window not based on sketch. Window not aligned or resized. Leihoa ez dago zirriborroan oinarrituta. Leihoa ez dago lerrokatuta edo ez da tamainaz aldatu. - + No Width and/or Height constraint in window sketch. Window not resized. Ez dago zabalerako eta/edo altuerako murrizketarik leiho-zirriborroan. Leihoa ez da tamainaz aldatu. - + No window found. Cannot continue. Ez da leihorik aurkitu. Ezin da jarraitu. - + Window options Leiho-aukerak - + Auto include in host object Auto besteak beste objektu gonbidatua - + Sill height Leiho-barrenaren altuera @@ -4137,8 +4137,8 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare - - + + @@ -4176,8 +4176,8 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare - - + + Name Izena @@ -4191,8 +4191,8 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare - - + + Thickness Lodiera @@ -4374,8 +4374,8 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Fusionatu bikoiztuak - - + + Material Materiala @@ -4386,17 +4386,17 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Material anitzekoa - + New layer Geruza berria - + Total thickness Lodiera osoa - + depends on the object objektuaren araberakoa da @@ -4828,12 +4828,12 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Erantsi kalkulu-orria - + Import CSV file Inportatu CSV fitxategia - + Export CSV file Esportatu CSV fitxategia @@ -4843,20 +4843,20 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Esportatu CSV fitxategia - + Unable to recognize that file type Ez da fitxategi mota hori ezagutzen - - + + Description Deskribapena - - + + @@ -4864,14 +4864,14 @@ Distantzia = 0 bada, orduan distantzia kalkulatzen da altuera profil erlatiboare Balioa - - + + Unit Unitatea - + Schedule Programazioa @@ -5680,7 +5680,7 @@ Eraikinaren sorrera utzi egin da. - + A standard code (MasterFormat, OmniClass,...) Kode estandarra (MasterFormat, OmniClass,...) @@ -6617,43 +6617,43 @@ Eraikinaren sorrera utzi egin da. Egia denean, hesia jatorrizko zutoina eta sekzioa bezala koloreztatuko da. - - + + A description for this material Material honen deskribapena - + A URL where to find information about this material Material honi buruzko informazioa aurkitzeko URL bat - + The transparency value of this material Material honen gardentasun-balioa - + The color of this material Material honen kolorea - + The color of this material when cut Material honen kolorea mozten denean - + The list of layer names Geruza-izenen zerrenda - + The list of layer materials Geruza-materialen zerrenda - + The list of layer thicknesses Geruza-lodieren zerrenda @@ -8051,8 +8051,8 @@ Eraikinaren sorrera utzi egin da. - The sizes for rows - Errenkaden tamainak + The sizes of rows + The sizes of rows @@ -9396,12 +9396,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9526,7 +9526,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_fi.qm b/src/Mod/BIM/Resources/translations/Arch_fi.qm index 9b521c89e4..d49db5393d 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_fi.qm and b/src/Mod/BIM/Resources/translations/Arch_fi.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_fi.ts b/src/Mod/BIM/Resources/translations/Arch_fi.ts index 8c1e44d3eb..0821429a63 100644 --- a/src/Mod/BIM/Resources/translations/Arch_fi.ts +++ b/src/Mod/BIM/Resources/translations/Arch_fi.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Kaaren materiaali + BIM material + BIM material @@ -3413,7 +3413,7 @@ unit to work with when opening the file. - + Preset @@ -3678,7 +3678,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4038,7 +4038,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Luo ikkuna @@ -4048,32 +4048,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4139,8 +4139,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4178,8 +4178,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Nimi @@ -4193,8 +4193,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Paksuus @@ -4376,8 +4376,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Materiaali @@ -4388,17 +4388,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Monimateriaali - + New layer New layer - + Total thickness Kokonaispaksuus - + depends on the object depends on the object @@ -4830,12 +4830,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4845,20 +4845,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Kuvaus - - + + @@ -4866,14 +4866,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Arvo - - + + Unit Yksikkö - + Schedule Schedule @@ -5682,7 +5682,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6619,43 +6619,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Tämän materiaalin väri - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8053,8 +8053,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9398,12 +9398,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9528,7 +9528,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_fr.qm b/src/Mod/BIM/Resources/translations/Arch_fr.qm index 8f49a54a38..0df40dd39b 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_fr.qm and b/src/Mod/BIM/Resources/translations/Arch_fr.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_fr.ts b/src/Mod/BIM/Resources/translations/Arch_fr.ts index 3348c6d139..bb564444e6 100644 --- a/src/Mod/BIM/Resources/translations/Arch_fr.ts +++ b/src/Mod/BIM/Resources/translations/Arch_fr.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Matériau l'atelier Arch + BIM material + Matériau BIM @@ -802,7 +802,7 @@ Les valeurs de longueur, de largeur et de hauteur peuvent être modifiées ici, If this is unchecked, these settings will be applied automatically next time. You can change this later under menu Edit -> Preferences -> BIM -> Native IFC - Si cette option n'est pas cochée, ces paramètres seront appliqués automatiquement la prochaine fois. Vous pourrez modifier ces paramètres ultérieurement dans le menu Édition → Préférences → BIM → Native IFC + Si cette option n'est pas cochée, ces paramètres seront appliqués automatiquement la prochaine fois. Vous pourrez modifier ces paramètres plus tard dans le menu : Édition → Préférences → BIM → NativeIFC @@ -3453,7 +3453,7 @@ travailler lors de l'ouverture du fichier. - + Preset @@ -3717,7 +3717,7 @@ travailler lors de l'ouverture du fichier. - + Reorder children alphabetically Réorganiser les enfants par ordre alphabétique @@ -4077,7 +4077,7 @@ Si Course = 0 alors la course est calculée de façon à ce que la hauteur du pr - + Create Window Créer une fenêtre @@ -4087,32 +4087,32 @@ Si Course = 0 alors la course est calculée de façon à ce que la hauteur du pr Choisir une face sur un objet existant ou sélectionner un préréglage - + Window not based on sketch. Window not aligned or resized. La fenêtre n'est pas basée sur une esquisse. La fenêtre n'est pas alignée ni redimensionnée. - + No Width and/or Height constraint in window sketch. Window not resized. Aucune contrainte de largeur et/ou de hauteur de la fenêtre. La fenêtre n'est pas redimensionnée. - + No window found. Cannot continue. Aucune fenêtre trouvée. Impossible de continuer. - + Window options Options de la fenêtre - + Auto include in host object Inclure automatiquement dans l'objet hôte - + Sill height Hauteur de l'allège @@ -4179,8 +4179,8 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. - - + + @@ -4218,8 +4218,8 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. - - + + Name Nom @@ -4233,8 +4233,8 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. - - + + Thickness Épaisseur @@ -4416,8 +4416,8 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. Fusionner les doublons - - + + Material Matériau @@ -4428,17 +4428,17 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. Matériaux multiples - + New layer Nouvelle couche - + Total thickness Épaisseur totale - + depends on the object dépend de l'objet @@ -4870,12 +4870,12 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. Joindre une feuille de calcul - + Import CSV file Importer un fichier CSV - + Export CSV file Exporter un fichier CSV @@ -4885,20 +4885,20 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. Exporter vers un fichier CSV - + Unable to recognize that file type Impossible de reconnaître ce type de fichier - - + + Description Description - - + + @@ -4906,14 +4906,14 @@ valeur de zéro adoptera automatiquement la ligne la plus grande. Valeur - - + + Unit Unité - + Schedule Nomenclature @@ -5714,7 +5714,7 @@ La création du bâtiment est annulée. - + A standard code (MasterFormat, OmniClass,...) Un code standard (MasterFormat, OmniClass,...) @@ -6652,43 +6652,43 @@ La création du bâtiment est annulée. Si mis à vrai, la clôture sera colorée comme le poteau et la section d'origine. - - + + A description for this material Une description pour ce matériau - + A URL where to find information about this material Une URL où trouver des informations pour ce matériau - + The transparency value of this material La transparence de ce matériau - + The color of this material La couleur de ce matériau - + The color of this material when cut La couleur de ce matériau lorsqu'il est coupé - + The list of layer names Liste des noms des couches - + The list of layer materials Liste des couches des matériaux - + The list of layer thicknesses Liste des épaisseurs des couches @@ -8096,8 +8096,8 @@ Attention : il n'y a pas "Toponaming-Tolerant" si Sketch est seulement utilisé. - The sizes for rows - Les tailles des lignes + The sizes of rows + La taille des lignes @@ -9445,12 +9445,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Système d'unités mis à jour pour tous les documents ouverts - + IfcOpenShell not found IfcOpenShell non trouvé - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell est requis pour importer et exporter les fichiers IFC. Il semble absent de votre système. Voulez-vous le télécharger et l'installer maintenant ? Il sera installé dans le répertoire Macros de FreeCAD. @@ -9575,7 +9575,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Vues 2D - + Sheets Feuilles diff --git a/src/Mod/BIM/Resources/translations/Arch_hr.qm b/src/Mod/BIM/Resources/translations/Arch_hr.qm index 9b7f6f9022..3ce1fbcae8 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_hr.qm and b/src/Mod/BIM/Resources/translations/Arch_hr.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_hr.ts b/src/Mod/BIM/Resources/translations/Arch_hr.ts index 903cefca7e..d72a94abd5 100644 --- a/src/Mod/BIM/Resources/translations/Arch_hr.ts +++ b/src/Mod/BIM/Resources/translations/Arch_hr.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arhitekt materijal + BIM material + BIM material @@ -3431,7 +3431,7 @@ jedinice s kojom treba raditi prilikom otvaranja datoteke. - + Preset @@ -3698,7 +3698,7 @@ jedinice s kojom treba raditi prilikom otvaranja datoteke. - + Reorder children alphabetically Promijenite redoslijed potomaka po abecedi @@ -4064,7 +4064,7 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn - + Create Window Napravi Prozor @@ -4074,34 +4074,34 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn Odaberite lice na postojećem objektu ili odaberite predložak - + Window not based on sketch. Window not aligned or resized. Prozor nije na temelju skice. Prozor nije poravnat ili veličina prozora nije promijenjena. - + No Width and/or Height constraint in window sketch. Window not resized. Nema ograničenja širine i/ili visine u skici prozora. Veličina prozora nije promijenjena. - + No window found. Cannot continue. Prozor nije pronađen. Ne može se nastaviti. - + Window options Opcije prozora - + Auto include in host object Automatski dodano u host (glavno računalo) objekt - + Sill height Visina prozorske klupčice @@ -4169,8 +4169,8 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn - - + + @@ -4208,8 +4208,8 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn - - + + Name Ime @@ -4223,8 +4223,8 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn - - + + Thickness Debljina @@ -4410,8 +4410,8 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn Spoji duplikate - - + + Material Materijal @@ -4422,17 +4422,17 @@ Ako je Run = 0, tada se proračun izračunava tako da je visina jednaka relativn Višeslojni Materijal - + New layer Novi sloj - + Total thickness Konačna debljina - + depends on the object ovisi o objektu @@ -4866,12 +4866,12 @@ Here is a breakdown of the translation: Pridruži proračunsku tablicu - + Import CSV file Uvoz CSV datoteke - + Export CSV file Izvoz CSV datoteke @@ -4881,20 +4881,20 @@ Here is a breakdown of the translation: Izvezi CSV datoteku - + Unable to recognize that file type Nije moguće prepoznati vrstu datoteke - - + + Description Opis - - + + @@ -4902,14 +4902,14 @@ Here is a breakdown of the translation: Vrijednost - - + + Unit Jedinica - + Schedule Raspored @@ -5722,7 +5722,7 @@ Stvaranje zgrade prekinuto. - + A standard code (MasterFormat, OmniClass,...) Standard kod (MasterFormat, OmniClass,...) @@ -6678,45 +6678,45 @@ Stvaranje zgrade prekinuto. Kad je istina, ograda će biti obojena poput originalnog stupa i odjeljka. - - + + A description for this material Opis za ovaj materijal - + A URL where to find information about this material URL gdje pronaći informacije za ovaj materijal - + The transparency value of this material Vrijednosti prozirnosti za ovaj materijal - + The color of this material Boja ovog materijala - + The color of this material when cut Boja ovog materijala pri rezanju - + The list of layer names Lista imena slojeva - + The list of layer materials Lista materijala sloja - + The list of layer thicknesses Lista debljina slojeva @@ -8121,8 +8121,8 @@ Stvaranje zgrade prekinuto. - The sizes for rows - Veličine redaka + The sizes of rows + The sizes of rows @@ -9468,12 +9468,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9598,7 +9598,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_hu.qm b/src/Mod/BIM/Resources/translations/Arch_hu.qm index 2419c6c92f..9d8d4ac517 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_hu.qm and b/src/Mod/BIM/Resources/translations/Arch_hu.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_hu.ts b/src/Mod/BIM/Resources/translations/Arch_hu.ts index 4726e6d552..c5b9c8640a 100644 --- a/src/Mod/BIM/Resources/translations/Arch_hu.ts +++ b/src/Mod/BIM/Resources/translations/Arch_hu.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Építészeti anyag + BIM material + BIM anyag @@ -3412,7 +3412,7 @@ kiválasszák a mértékegységet a fájl megnyitásakor. - + Preset @@ -3677,7 +3677,7 @@ kiválasszák a mértékegységet a fájl megnyitásakor. - + Reorder children alphabetically Alárendeltek ábécé szerinti újrarendezése @@ -4037,7 +4037,7 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m - + Create Window Ablak létrehozása @@ -4047,32 +4047,32 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m Válasszon egy felületet a meglévő tárgyon vagy válasszon egy előre beállítottat - + Window not based on sketch. Window not aligned or resized. Az ablak nem a vázlaton alapul. Az ablak nincs igazítva vagy átméretezve. - + No Width and/or Height constraint in window sketch. Window not resized. Nincs szélességi és/vagy magassági korlátozás az ablak vázlatában. Az ablak nincs átméretezve. - + No window found. Cannot continue. Nem található ablak. Nem folytatható. - + Window options Ablak beállítások - + Auto include in host object Kiszolgáló tárgy automatikus hozzáadása - + Sill height Könyöklő magassága @@ -4138,8 +4138,8 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m - - + + @@ -4177,8 +4177,8 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m - - + + Name Név @@ -4192,8 +4192,8 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m - - + + Thickness Vastagság @@ -4375,8 +4375,8 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m Ismétlődők egyesítése - - + + Material Anyag @@ -4387,17 +4387,17 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m Többféle anyagú - + New layer Új réteg - + Total thickness Teljes vastagság - + depends on the object az tárgytól függ @@ -4829,12 +4829,12 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m Számolótábla csatlakoztatása - + Import CSV file CSV fájl importálása - + Export CSV file CSV file exportálása @@ -4844,20 +4844,20 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m CSV fájl exportálás - + Unable to recognize that file type Ismeretlen file-típus - - + + Description Leírás - - + + @@ -4865,14 +4865,14 @@ Ha Futás = 0, akkor a futás kiszámítása úgy történik, hogy a magasság m Érték - - + + Unit Egység - + Schedule Ütemezés @@ -5681,7 +5681,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) Egy szabványos kód (MasterFormat, OmniClass,...) @@ -6618,43 +6618,43 @@ Building creation aborted. Ha igaz, a kerítés olyan színű lesz, mint az eredeti oszlop és a szakasz. - - + + A description for this material Egy leírás ehhez az anyaghoz - + A URL where to find information about this material Egy URL ahol megtalálom az információt erről az anyagról - + The transparency value of this material Az átlátszóság értéke ehhez az anyaghoz - + The color of this material Ennek az anyagnak a színe - + The color of this material when cut A színe ennek az anyagnak, ha vágott - + The list of layer names A réteg neveknek a listája - + The list of layer materials Réteg anyagok listája - + The list of layer thicknesses A réteg vastagságok listája @@ -8052,8 +8052,8 @@ Building creation aborted. - The sizes for rows - A sorok méretei + The sizes of rows + Sorok mérete @@ -9397,12 +9397,12 @@ CTRL+PgUp a nyújtás kiterjesztéséhezCTRL+PgDown a nyújtás zsugorításáho Mértékegységrendszer frissítve minden megnyitott dokumentumhoz - + IfcOpenShell not found IfcOpenShell nem található - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. Az IfcOpenShell szükséges az IFC fájlok importálásához és exportálásához. Úgy tűnik, hogy hiányzik az Ön rendszeréből. Szeretné letölteni és telepíteni most? A FreeCAD Makrók könyvtárába lesz telepítve. @@ -9527,7 +9527,7 @@ CTRL+PgUp a nyújtás kiterjesztéséhezCTRL+PgDown a nyújtás zsugorításáho 2D nézetek - + Sheets Burkoló lapok diff --git a/src/Mod/BIM/Resources/translations/Arch_it.qm b/src/Mod/BIM/Resources/translations/Arch_it.qm index 0ec7ecc513..601f7ac735 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_it.qm and b/src/Mod/BIM/Resources/translations/Arch_it.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_it.ts b/src/Mod/BIM/Resources/translations/Arch_it.ts index 42112d0382..086ec1e80f 100644 --- a/src/Mod/BIM/Resources/translations/Arch_it.ts +++ b/src/Mod/BIM/Resources/translations/Arch_it.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Materiale Arch + BIM material + Materiale BIM @@ -3401,7 +3401,7 @@ unit to work with when opening the file. - + Preset @@ -3666,7 +3666,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Riordina i figli alfabeticamente @@ -4026,7 +4026,7 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d - + Create Window Crea Finestra @@ -4036,32 +4036,32 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Scegli una faccia su un oggetto esistente o seleziona una preimpostazione - + Window not based on sketch. Window not aligned or resized. Finestra non basata sullo schizzo. Finestra non allineata o ridimensionata. - + No Width and/or Height constraint in window sketch. Window not resized. Nessun vincolo di larghezza e/o altezza nello schizzo della finestra. Finestra non ridimensionata. - + No window found. Cannot continue. Nessuna finestra trovata. Impossibile continuare. - + Window options Opzioni finestra - + Auto include in host object Includi automaticamente nell'oggetto ospite - + Sill height Altezza soglia @@ -4127,8 +4127,8 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d - - + + @@ -4166,8 +4166,8 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d - - + + Name Nome @@ -4181,8 +4181,8 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d - - + + Thickness Spessore @@ -4364,8 +4364,8 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Unisci i duplicati - - + + Material Materiale @@ -4376,17 +4376,17 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Multi materiale - + New layer Nuovo layer - + Total thickness Spessore totale - + depends on the object dipende dall'oggetto @@ -4818,12 +4818,12 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Allega foglio di calcolo - + Import CSV file Importa file CSV - + Export CSV file Esporta file CSV @@ -4833,20 +4833,20 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Esporta file CSV - + Unable to recognize that file type Impossibile riconoscere quel tipo di file - - + + Description Descrizione - - + + @@ -4854,14 +4854,14 @@ Se Base = 0 allora la Base viene calcolata in modo che l'altezza sia la stessa d Valore - - + + Unit Unità - + Schedule Pianificazione @@ -5670,7 +5670,7 @@ Creazione Edificio interrotta. - + A standard code (MasterFormat, OmniClass,...) Un codice standard (MasterFormat, OmniClass,...) @@ -6607,43 +6607,43 @@ Creazione Edificio interrotta. Quando è vero, la recinzione è colorata come il piantone e la campata originali. - - + + A description for this material Una descrizione per questo materiale - + A URL where to find information about this material Un URL dove trovare informazioni su questo materiale - + The transparency value of this material Il valore di trasparenza di questo materiale - + The color of this material Il colore di questo materiale - + The color of this material when cut Il colore di questo materiale quando tagliato - + The list of layer names L'elenco dei nomi dei livelli - + The list of layer materials L'elenco dei materiali dei livelli - + The list of layer thicknesses L'elenco degli spessori dei livelli @@ -8041,8 +8041,8 @@ Creazione Edificio interrotta. - The sizes for rows - Le dimensioni per le righe + The sizes of rows + Il numero di righe @@ -9386,12 +9386,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Sistema di unità aggiornato per tutti i documenti aperti - + IfcOpenShell not found IfcOpenShell non trovato - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell è necessario per importare ed esportare file IFC. Sembra mancare sul tuo sistema. Vuoi scaricarlo e installarlo ora? Sarà installato nella directory Macros di FreeCAD. @@ -9516,7 +9516,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Viste 2D - + Sheets Fogli diff --git a/src/Mod/BIM/Resources/translations/Arch_ja.qm b/src/Mod/BIM/Resources/translations/Arch_ja.qm index fd51f0a735..74bba6e9df 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ja.qm and b/src/Mod/BIM/Resources/translations/Arch_ja.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ja.ts b/src/Mod/BIM/Resources/translations/Arch_ja.ts index 9e85ad09af..f280106ca5 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ja.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ja.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - マテリアルの設定 + BIM material + BIM material @@ -3402,7 +3402,7 @@ unit to work with when opening the file. - + Preset @@ -3667,7 +3667,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4027,7 +4027,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window 窓の作成 @@ -4037,32 +4037,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4128,8 +4128,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4167,8 +4167,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name 名前 @@ -4182,8 +4182,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness 厚み @@ -4365,8 +4365,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material マテリアル @@ -4377,17 +4377,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 複合マテリアル - + New layer 新規レイヤー - + Total thickness 厚さの合計 - + depends on the object depends on the object @@ -4819,12 +4819,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file CSVファイルをインポート - + Export CSV file CSVファイルをエクスポート @@ -4834,20 +4834,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela CSVファイルをエクスポート - + Unable to recognize that file type Unable to recognize that file type - - + + Description 説明 - - + + @@ -4855,14 +4855,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Unit 単位 - + Schedule Schedule @@ -5671,7 +5671,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6608,43 +6608,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material このマテリアルの色 - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8042,8 +8042,8 @@ Building creation aborted. - The sizes for rows - 行サイズ + The sizes of rows + The sizes of rows @@ -9387,12 +9387,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell が見つかりませんでした - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9517,7 +9517,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2Dビュー - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_ka.qm b/src/Mod/BIM/Resources/translations/Arch_ka.qm index 11b9ffc38b..a686b80f70 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ka.qm and b/src/Mod/BIM/Resources/translations/Arch_ka.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ka.ts b/src/Mod/BIM/Resources/translations/Arch_ka.ts index 5b3e291fc6..5f51bad5f5 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ka.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ka.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - არქიტექტურული მასალა + BIM material + BIM მასალა @@ -3399,7 +3399,7 @@ unit to work with when opening the file. - + Preset @@ -3664,7 +3664,7 @@ unit to work with when opening the file. - + Reorder children alphabetically შვილების ანბანის მიხედვით დალაგება @@ -4024,7 +4024,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window ფანჯრის შექმნა @@ -4034,32 +4034,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela აირჩიეთ ზედაპირი არსებულ ობიექტზე ან აირჩიეთ პრესეტი - + Window not based on sketch. Window not aligned or resized. ფანჯარა არ ეყრდნობა ესკიზს. ფანჯარა არ სწორდება და არ შეიცვლის ზომებს. - + No Width and/or Height constraint in window sketch. Window not resized. ფანჯრის ესკიზსში სიგრძისა და სიმაღლის შეზღუდვები არ არსებობს. ფანჯრის ზომა არ შეიცვლება. - + No window found. Cannot continue. ფანჯარა ნაპოვნი არაა. გაგრძელება შეუძლებელია. - + Window options ფანჯრის მორგება - + Auto include in host object მასპინძელ ობიექტში ავტომატური ჩამატება - + Sill height რაფის სიმაღლე @@ -4125,8 +4125,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4164,8 +4164,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name სახელი @@ -4179,8 +4179,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness სისქე @@ -4362,8 +4362,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela დუბლიკატების შერწყმა - - + + Material მასალა @@ -4374,17 +4374,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela მულტიმასალა - + New layer ახალი ფენა - + Total thickness სრული სისქე - + depends on the object დამოკიდებულია ობიექტზე @@ -4816,12 +4816,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela ელცხრილის მიმაგრება - + Import CSV file CSV ფაილის შემოტანა - + Export CSV file CSV ფაილის გატანა @@ -4831,20 +4831,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela CSV ფაილის გატანა - + Unable to recognize that file type უცნობი ფაილის ტიპი - - + + Description აღწერა - - + + @@ -4852,14 +4852,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela მნიშვნელობა - - + + Unit საზომი ერთეულები - + Schedule დაგეგმვა @@ -5668,7 +5668,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) სტანდარტული კოდი (MasterFormat, OmniClass,...) @@ -6611,43 +6611,43 @@ Building creation aborted. თუ ჩართულია, ღობე შეიღებება საწყისი ბოძებისა და სექციების ფერად. - - + + A description for this material მასალის აღწერა - + A URL where to find information about this material URL, სადაც შეგიძლიათ იპოვოთ ინფორმაცია ამ მასალის შესახებ - + The transparency value of this material ამ მასალის გამჭვირვალობის მნიშვნელობა - + The color of this material მასალის ფერი - + The color of this material when cut დაჭრილი მასალის ფერი - + The list of layer names ფენების სახელების სია - + The list of layer materials ფენის მასალების სია - + The list of layer thicknesses ფენის სისქეების სია @@ -8045,7 +8045,7 @@ Building creation aborted. - The sizes for rows + The sizes of rows რიგების ზომა @@ -9390,12 +9390,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet ერთეულების სისტემა განახლდა ყველა ღია დოკუმენტისთვის - + IfcOpenShell not found IfcOpenShell ნაპოვნი არაა - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9520,7 +9520,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D ხედები - + Sheets გვერდები diff --git a/src/Mod/BIM/Resources/translations/Arch_ko.qm b/src/Mod/BIM/Resources/translations/Arch_ko.qm index 5fcd82b0a7..0eac1eebc0 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ko.qm and b/src/Mod/BIM/Resources/translations/Arch_ko.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ko.ts b/src/Mod/BIM/Resources/translations/Arch_ko.ts index 0b167ded6a..bfcc906261 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ko.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ko.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arch 재료 + BIM material + BIM material @@ -2530,12 +2530,12 @@ instead of the FreeCAD web workbench If this is checked, the text that gets placed in the clipboard will include the unit. Otherwise, it will be a simple number expressed in internal units (millimeters) - 이 옵션을 선택하면 클립보드에 있는 텍스트에 단위가 포함됩니다. 그렇지 않으면 내부 단위(밀리미터) 로 표시되는 단순한 숫자가 될 것입니다. + 이 것을 선택하면 오림판에 있는 문자에 단위가 포함됩니다. 그렇지 않으면 내부 단위(밀리미터) 로 표시되는 단순한 숫자가 될 것입니다. Include unit when sending measurements to clipboard - 측정값을 클립보드로 보낼 때 단위 포함 + 측정값을 오림판로 보낼 때 단위 포함 @@ -3400,7 +3400,7 @@ IFC 파일은 "항상" 메트릭 단위로 작성됩니다. 임페리얼 단위 - + Preset @@ -3665,7 +3665,7 @@ IFC 파일은 "항상" 메트릭 단위로 작성됩니다. 임페리얼 단위 - + Reorder children alphabetically Children 알파벳 순으로 재정렬 @@ -4025,7 +4025,7 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 - + Create Window 창 만들기 @@ -4035,32 +4035,32 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 기존 개체의 면을 선택하거나 프리셋을 선택하세요. - + Window not based on sketch. Window not aligned or resized. 창이 스케치에 기반하지 않았습니다. 창이 정렬되거나 크기가 조정되지 않았습니다. - + No Width and/or Height constraint in window sketch. Window not resized. 창 스케치에 너비 및/또는 높이 제약이 없습니다. 창 크기가 조정되지 않았습니다. - + No window found. Cannot continue. 창을 찾을 수 없습니다. 계속할 수 없습니다. - + Window options 창 옵션 - + Auto include in host object 호스트 객체에 자동 포함 - + Sill height 턱 높이 @@ -4126,8 +4126,8 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 - - + + @@ -4150,7 +4150,7 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 Wires - 와이어 + 철사 @@ -4165,8 +4165,8 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 - - + + Name 이름 @@ -4180,8 +4180,8 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 - - + + Thickness 두께 @@ -4363,8 +4363,8 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 중복 병합 - - + + Material 재료 @@ -4375,17 +4375,17 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 다중 재료 - + New layer 새 레이어 - + Total thickness 총 두께 - + depends on the object 객체에 따라 다릅니다 @@ -4817,12 +4817,12 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 스프레드시트 첨부 - + Import CSV file CSV 파일 가져오기 - + Export CSV file CSV 파일로 내보내기 @@ -4832,20 +4832,20 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 CSV 파일로 내보내기 - + Unable to recognize that file type 해당 파일 형식을 인식할 수 없음 - - + + Description 설명 - - + + @@ -4853,14 +4853,14 @@ Run = 0인 경우 Height가 상대 프로파일과 동일하도록 Run이 계산 - - + + Unit 단위 - + Schedule 일정 @@ -5166,7 +5166,7 @@ Floor creation aborted. Center - 센터 + 중심 @@ -5669,7 +5669,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) 표준 코드(MasterFormat, OmniClass,...) @@ -6606,43 +6606,43 @@ Building creation aborted. 참이면 울타리는 원래 기둥과 섹션처럼 색칠될 것입니다. - - + + A description for this material 이 재질에 대한 설명 - + A URL where to find information about this material 이 자료에 대한 정보를 찾을 수 있는 URL - + The transparency value of this material 이 재질의 투명도 - + The color of this material 색깔 - + The color of this material when cut 자를 때 이 재료의 색 - + The list of layer names 레이어 이름 목록 - + The list of layer materials 레이어 재료 목록 - + The list of layer thicknesses 레이어 두께 목록 @@ -8040,8 +8040,8 @@ Building creation aborted. - The sizes for rows - 행의 크기 + The sizes of rows + The sizes of rows @@ -9385,12 +9385,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9515,7 +9515,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_lt.qm b/src/Mod/BIM/Resources/translations/Arch_lt.qm index cef83a415e..e4bfe424ae 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_lt.qm and b/src/Mod/BIM/Resources/translations/Arch_lt.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_lt.ts b/src/Mod/BIM/Resources/translations/Arch_lt.ts index 63c2d7d9ad..27c709e2f2 100644 --- a/src/Mod/BIM/Resources/translations/Arch_lt.ts +++ b/src/Mod/BIM/Resources/translations/Arch_lt.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arch material + BIM material + BIM material @@ -3413,7 +3413,7 @@ unit to work with when opening the file. - + Preset @@ -3678,7 +3678,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4038,7 +4038,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4048,32 +4048,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4139,8 +4139,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4178,8 +4178,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Pavadinimas @@ -4193,8 +4193,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Storis @@ -4376,8 +4376,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Medžiaga @@ -4388,17 +4388,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Total thickness - + depends on the object depends on the object @@ -4830,12 +4830,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4845,20 +4845,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Aprašymas - - + + @@ -4866,14 +4866,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Reikšmė - - + + Unit Vienetas - + Schedule Schedule @@ -5682,7 +5682,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6619,43 +6619,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Šios medžiagos spalva - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8053,8 +8053,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9398,12 +9398,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9528,7 +9528,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_nl.qm b/src/Mod/BIM/Resources/translations/Arch_nl.qm index 72d197eb29..e8ef756c26 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_nl.qm and b/src/Mod/BIM/Resources/translations/Arch_nl.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_nl.ts b/src/Mod/BIM/Resources/translations/Arch_nl.ts index 1be765f8e0..a3f64598aa 100644 --- a/src/Mod/BIM/Resources/translations/Arch_nl.ts +++ b/src/Mod/BIM/Resources/translations/Arch_nl.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arch materiaal + BIM material + BIM material @@ -3407,7 +3407,7 @@ Echter, sommige BIM programma's zullen deze conversie factor gebruiken bij het k - + Preset @@ -3672,7 +3672,7 @@ Echter, sommige BIM programma's zullen deze conversie factor gebruiken bij het k - + Reorder children alphabetically Onderliggende objecten alfabetisch sorteren @@ -4032,7 +4032,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Venster maken @@ -4042,32 +4042,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. Geen raam gevonden. Kan niet doorgaan. - + Window options Vensteropties - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4133,8 +4133,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4172,8 +4172,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Naam @@ -4187,8 +4187,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Dikte @@ -4370,8 +4370,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Duplicaten samenvoegen - - + + Material Materiaal @@ -4382,17 +4382,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer Nieuwe laag - + Total thickness Totale dikte - + depends on the object afhankelijk van het object @@ -4824,12 +4824,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Rekenblad bijvoegen - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4839,20 +4839,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Exporteren CSV bestand - + Unable to recognize that file type Unable to recognize that file type - - + + Description Omschrijving - - + + @@ -4860,14 +4860,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Waarde - - + + Unit Eenheid - + Schedule Planning @@ -5676,7 +5676,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6613,43 +6613,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material De kleur van dit materiaal - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8047,8 +8047,8 @@ Building creation aborted. - The sizes for rows - De grootte van rijen + The sizes of rows + The sizes of rows @@ -9392,12 +9392,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9522,7 +9522,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Bladen diff --git a/src/Mod/BIM/Resources/translations/Arch_pl.qm b/src/Mod/BIM/Resources/translations/Arch_pl.qm index 6f9943409a..1e968b564c 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_pl.qm and b/src/Mod/BIM/Resources/translations/Arch_pl.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_pl.ts b/src/Mod/BIM/Resources/translations/Arch_pl.ts index 5584658506..0dd7c04982 100644 --- a/src/Mod/BIM/Resources/translations/Arch_pl.ts +++ b/src/Mod/BIM/Resources/translations/Arch_pl.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Materiał architektury + BIM material + Materiał BIM @@ -3470,7 +3470,7 @@ które pozwalają na wybór systemu miar przy otwieraniu pliku. - + Preset @@ -3735,7 +3735,7 @@ które pozwalają na wybór systemu miar przy otwieraniu pliku. - + Reorder children alphabetically Zmień kolejność podrzędnych alfabetycznie @@ -4096,7 +4096,7 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko - + Create Window Utwórz Okno @@ -4106,32 +4106,32 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Wybierz ścianę na istniejącym obiekcie lub wybierz ustawienie wstępne - + Window not based on sketch. Window not aligned or resized. Okno nie jest oparte na szkicu. Okno nie zostało wyrównane lub nie zmieniono jego rozmiaru. - + No Width and/or Height constraint in window sketch. Window not resized. Brak wiązania szerokości i / lub wysokości w szkicu okna. Rozmiar okna nie zostanie zmieniony. - + No window found. Cannot continue. Nie znaleziono okna. Kontynuacja nie jest możliwa. - + Window options Opcje okna - + Auto include in host object Przyłącz automatycznie do obiektu bazowego - + Sill height Wysokość parapetu @@ -4197,8 +4197,8 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko - - + + @@ -4236,8 +4236,8 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko - - + + Name Nazwa @@ -4251,8 +4251,8 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko - - + + Thickness Grubość @@ -4434,8 +4434,8 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Scal duplikaty - - + + Material Materiał @@ -4446,17 +4446,17 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Wielomateriałowy - + New layer Nowa warstwa - + Total thickness Grubość całkowita - + depends on the object Zależy od obiektu @@ -4888,12 +4888,12 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Dołącz arkusz kalkulacyjny - + Import CSV file Importuj plik CSV - + Export CSV file Eksportuj do pliku CSV @@ -4903,20 +4903,20 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Eksportuj plik CSV - + Unable to recognize that file type Nie można rozpoznać typu pliku - - + + Description Opis - - + + @@ -4924,14 +4924,14 @@ Jeśli Rozpiętość = 0, wówczas Rozpiętość jest obliczana tak, aby wysoko Wartość - - + + Unit Jednostka - + Schedule Obmiar @@ -5741,7 +5741,7 @@ Utwórz kilka, aby zdefiniować typy ścian. - + A standard code (MasterFormat, OmniClass,...) Kody standardowe (MasterFormat, OmniClass, ...) @@ -6681,43 +6681,43 @@ ma pierwszeństwo przed automatycznie generowaną objętością podrzędną.Jeśli to prawda, ogrodzenie będzie pokolorowane jak oryginalny słupek i przekrój. - - + + A description for this material Opis materiału - + A URL where to find information about this material Adres URL, pod którym można znaleźć informacje o tym materiale - + The transparency value of this material Wartość przeźroczystości tego materiału - + The color of this material Kolor tego materiału - + The color of this material when cut Kolor materiału w przekroju - + The list of layer names Lista nazw warstw - + The list of layer materials Lista materiałów warstw - + The list of layer thicknesses Lista grubości warstw @@ -8117,8 +8117,8 @@ Wyłączone i ignorowane, jeśli obiekt bazowy (ArchSketch) dostarcza informacji - The sizes for rows - Rozmiary dla wierszy + The sizes of rows + Rozmiar dla wierszy @@ -9485,12 +9485,12 @@ znajdującego się w menu: Zaktualizowano system jednostek dla wszystkich otwartych dokumentów - + IfcOpenShell not found Nie znaleziono IfcOpenShell - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell jest potrzebny do importowania i eksportowania plików IFC. Wygląda na to, że brakuje go w Twoim systemie. Czy chcesz pobrać i zainstalować teraz? Zostanie zainstalowany w katalogu FreeCAD. @@ -9615,7 +9615,7 @@ znajdującego się w menu: Widoki 2D - + Sheets Arkusze diff --git a/src/Mod/BIM/Resources/translations/Arch_pt-BR.qm b/src/Mod/BIM/Resources/translations/Arch_pt-BR.qm index 92929a7e09..84932e4957 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_pt-BR.qm and b/src/Mod/BIM/Resources/translations/Arch_pt-BR.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_pt-BR.ts b/src/Mod/BIM/Resources/translations/Arch_pt-BR.ts index 1b98db3cd8..0e47c99683 100644 --- a/src/Mod/BIM/Resources/translations/Arch_pt-BR.ts +++ b/src/Mod/BIM/Resources/translations/Arch_pt-BR.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material de arquitetura + BIM material + BIM material @@ -3392,7 +3392,7 @@ No entanto, alguns aplicativos BIM usarão este fator para escolher com qual uni - + Preset @@ -3656,7 +3656,7 @@ No entanto, alguns aplicativos BIM usarão este fator para escolher com qual uni - + Reorder children alphabetically Reorganizar dependentes em ordem alfabética @@ -4016,7 +4016,7 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per - + Create Window Criar uma janela @@ -4026,32 +4026,32 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per Selecione uma face em um objeto existente ou escolha uma predefinição - + Window not based on sketch. Window not aligned or resized. Esta janela não é baseada em esboço. Ela não será alinhada ou redimensionada. - + No Width and/or Height constraint in window sketch. Window not resized. Nenhuma restrição de largura e/ou altura no esboço da janela. A janela não será redimensionada. - + No window found. Cannot continue. Nenhuma janela encontrada. Não é possível continuar. - + Window options Opções da janela - + Auto include in host object Incluir automaticamente um hospedeiro no objeto - + Sill height Altura do peitoril @@ -4117,8 +4117,8 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per - - + + @@ -4156,8 +4156,8 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per - - + + Name Nome @@ -4171,8 +4171,8 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per - - + + Thickness Espessura @@ -4354,8 +4354,8 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per Mesclar duplicatas - - + + Material Material @@ -4366,17 +4366,17 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per MultiMaterial - + New layer Nova Camada - + Total thickness Espessura total - + depends on the object depende do objeto @@ -4808,12 +4808,12 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per Anexar planilha - + Import CSV file Importar arquivo CSV - + Export CSV file Exportar arquivo CSV @@ -4823,20 +4823,20 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per Exportar um arquivo CSV - + Unable to recognize that file type Não é possível reconhecer o tipo do arquivo - - + + Description Descrição - - + + @@ -4844,14 +4844,14 @@ Se a extensão = 0, ela será calculada de modo que a altura seja a mesma do per Valor - - + + Unit Unidade - + Schedule Agendar @@ -5646,7 +5646,7 @@ Criação de edifício abortada. - + A standard code (MasterFormat, OmniClass,...) Um código de classificação (MasterFormat, OmniClass,...) @@ -6583,43 +6583,43 @@ Criação de edifício abortada. Quando for verdadeiro, a cerca será colorida como os postes e as seções originais. - - + + A description for this material Uma descrição para este material - + A URL where to find information about this material Uma URL onde encontrar informações sobre este material - + The transparency value of this material O valor de transparência deste material - + The color of this material A cor deste material - + The color of this material when cut A cor deste material quando cortado - + The list of layer names A lista de nomes de camadas - + The list of layer materials A lista das camadas de materiais - + The list of layer thicknesses A lista de espessuras das camadas @@ -8017,7 +8017,7 @@ Criação de edifício abortada. - The sizes for rows + The sizes of rows O tamanho das linhas @@ -9362,12 +9362,12 @@ CTRL+PgUp para estender a extrusion, CTRL+PgDown para encolher a extrusion, CTRL Sistema unitário atualizado para todos os documentos abertos - + IfcOpenShell not found IfcOpenShell não foi encontrado - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell é necessário para importar e exportar arquivos IFC. Aparentemente não está instalado neste computador. Deseja baixar e instalar o IfcOpenShell agora? Será instalado na pasta de Macros do FreeCAD. @@ -9492,7 +9492,7 @@ CTRL+PgUp para estender a extrusion, CTRL+PgDown para encolher a extrusion, CTRL Vistas 2D - + Sheets Folhas diff --git a/src/Mod/BIM/Resources/translations/Arch_pt-PT.qm b/src/Mod/BIM/Resources/translations/Arch_pt-PT.qm index 3554817e64..12c8693c79 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_pt-PT.qm and b/src/Mod/BIM/Resources/translations/Arch_pt-PT.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_pt-PT.ts b/src/Mod/BIM/Resources/translations/Arch_pt-PT.ts index 6e97ef11e7..9e2b3fce57 100644 --- a/src/Mod/BIM/Resources/translations/Arch_pt-PT.ts +++ b/src/Mod/BIM/Resources/translations/Arch_pt-PT.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material de arquitetura + BIM material + BIM material @@ -3405,7 +3405,7 @@ No entanto, alguns aplicativos BIM usarão este fator para escolher com qual uni - + Preset @@ -3670,7 +3670,7 @@ No entanto, alguns aplicativos BIM usarão este fator para escolher com qual uni - + Reorder children alphabetically Reordenar dependentes alfabeticamente @@ -4030,7 +4030,7 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me - + Create Window Criar Janela @@ -4040,32 +4040,32 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me Escolha uma face em um objeto existente ou selecione uma predefinição - + Window not based on sketch. Window not aligned or resized. Janela não baseada no esboço. Janela não alinhada ou redimensionada. - + No Width and/or Height constraint in window sketch. Window not resized. Nenhuma restrição de largura e/ou altura no esboço da janela. Janela não redimensionada. - + No window found. Cannot continue. Nenhuma janela encontrada. Não é possível continuar. - + Window options Opções de janela - + Auto include in host object Incluir automaticamente no objeto de host - + Sill height Altura do peitoril @@ -4131,8 +4131,8 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me - - + + @@ -4170,8 +4170,8 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me - - + + Name Nome @@ -4185,8 +4185,8 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me - - + + Thickness Espessura @@ -4368,8 +4368,8 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me Unir duplicados - - + + Material Material @@ -4380,17 +4380,17 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me MultiMaterial - + New layer Nova camada - + Total thickness Espessura total - + depends on the object depende do objeto @@ -4822,12 +4822,12 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4837,20 +4837,20 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me Export CSV File - + Unable to recognize that file type Não é possível reconhecer o tipo de arquivo - - + + Description Descrição - - + + @@ -4858,14 +4858,14 @@ Se executar = 0, então a execução é calculada de modo que a altura seja a me Valor - - + + Unit Unidade - + Schedule Agendamento @@ -5674,7 +5674,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6611,43 +6611,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material A cor deste material - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8045,8 +8045,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9390,12 +9390,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9520,7 +9520,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_ro.qm b/src/Mod/BIM/Resources/translations/Arch_ro.qm index 5808b645dc..5c51dfc7c4 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ro.qm and b/src/Mod/BIM/Resources/translations/Arch_ro.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ro.ts b/src/Mod/BIM/Resources/translations/Arch_ro.ts index b932593182..0195bccd8d 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ro.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ro.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Matérial Arch + BIM material + BIM material @@ -3413,7 +3413,7 @@ unitate cu care să lucreze la deschiderea fișierului. - + Preset @@ -3677,7 +3677,7 @@ unitate cu care să lucreze la deschiderea fișierului. - + Reorder children alphabetically Reordonați valorile în ordine alfabetică @@ -4037,7 +4037,7 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s - + Create Window Creează fereastră @@ -4047,32 +4047,32 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Alegeți o față pe un obiect existent sau selectați o presetare - + Window not based on sketch. Window not aligned or resized. Fereastra nu este bazată pe schiță. Fereastra nu este aliniată sau redimensionată. - + No Width and/or Height constraint in window sketch. Window not resized. Fără constrângeri de lățime și/sau înălțime în schița ferestrei. Fereastra nu este redimensionată. - + No window found. Cannot continue. Nici o fereastră găsită. Nu se poate continua. - + Window options Opțiuni fereastră - + Auto include in host object Includere automată în obiectul gazdă - + Sill height Înălțime de umplere @@ -4138,8 +4138,8 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s - - + + @@ -4177,8 +4177,8 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s - - + + Name Nume @@ -4192,8 +4192,8 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s - - + + Thickness Grosime @@ -4375,8 +4375,8 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Îmbinare dubluri - - + + Material Materialul @@ -4387,17 +4387,17 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Multimaterial - + New layer Stratul nou - + Total thickness Grosimea totală - + depends on the object depinde de obiect @@ -4829,12 +4829,12 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Atașează foaie de calcul - + Import CSV file Importă fișier CSV - + Export CSV file Exportă fișierul CSV @@ -4844,20 +4844,20 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Exportă fișierul CSV - + Unable to recognize that file type Imposibil de recunoscut acest tip de fișier - - + + Description Descriere - - + + @@ -4865,14 +4865,14 @@ Dacă rulează = 0, atunci rularea este calculată astfel încât înălțimea s Valoare - - + + Unit Unitate - + Schedule Programare @@ -5681,7 +5681,7 @@ Crearea de construcții a fost întreruptă. - + A standard code (MasterFormat, OmniClass,...) Un cod standard (MasterFormat, OmniClass,...) @@ -6618,43 +6618,43 @@ Crearea de construcții a fost întreruptă. Când este adevărat, gardul va fi colorat ca postul şi secţiunea originale. - - + + A description for this material O descriere a acestui material - + A URL where to find information about this material Un URL unde se găsesc informații despre acest material - + The transparency value of this material Valoarea de transparență a acestui material - + The color of this material La couleur de ce matériau - + The color of this material when cut Culoarea acestui material când se taie - + The list of layer names Lista de nume de straturi - + The list of layer materials Lista de straturi de materiale - + The list of layer thicknesses Lista grosimii stratului @@ -8052,8 +8052,8 @@ Crearea de construcții a fost întreruptă. - The sizes for rows - Dimensiunile rândurilor + The sizes of rows + The sizes of rows @@ -9397,12 +9397,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9527,7 +9527,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_ru.qm b/src/Mod/BIM/Resources/translations/Arch_ru.qm index 2c8d556f7b..01e6561de4 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_ru.qm and b/src/Mod/BIM/Resources/translations/Arch_ru.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_ru.ts b/src/Mod/BIM/Resources/translations/Arch_ru.ts index 13a65a4103..303e6083ad 100644 --- a/src/Mod/BIM/Resources/translations/Arch_ru.ts +++ b/src/Mod/BIM/Resources/translations/Arch_ru.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Архитектурный Материал + BIM material + Материал BIM @@ -589,9 +589,8 @@ Leave blank to use all objects from the document and that document won't be turned into an IFC document automatically. You can still turn a FreeCAD document into an IFC document manually, using Utils -> Make IFC project - If this is checked, you won't be asked again when creating a new FreeCAD document, -and that document won't be turned into an IFC document automatically. -You can still turn a FreeCAD document into an IFC document manually, using + Если этот флажок установлен, вам не придется снова запрашивать этот параметр при создании нового документа FreeCAD, и этот документ не будет автоматически преобразован в документ IFC. +Вы по-прежнему можете вручную преобразовать документ FreeCAD в документ IFC, используя Utils -> Make IFC project @@ -603,39 +602,39 @@ Utils -> Make IFC project Default structure - Default structure + Структура по умолчанию Create a default structure (IfcProject, IfcSite, IfcBuilding and IfcBuildingStorey)? Replying "No" will only create an IfcProject. You can then add the structure manually later. - Create a default structure (IfcProject, IfcSite, IfcBuilding and IfcBuildingStorey)? Replying "No" will only create an IfcProject. You can then add the structure manually later. + Создать структуру по умолчанию (IfcProject, IfcSite, IfcBuilding и IfcBuildingStorey)? Ответ "Нет" создаст только IfcProject. Затем вы сможете добавить структуру вручную позже. One or more IFC documents contained in this FreeCAD document have been modified, but were not saved. They will automatically be saved now. - One or more IFC documents contained in this FreeCAD document have been modified, but were not saved. They will automatically be saved now. + Один или несколько IFC документов, содержащихся в этом документе FreeCAD, были изменены, но не были сохранены. Они будут автоматически сохранены. Ask me again next time - Ask me again next time + Спросить снова в следующий раз IFC Elements Manager - IFC Elements Manager + Менеджер IFC Элементов <html><head/><body><p>This dialog lets you change the IFC type and material associated with any BIM object in this document. Double-click the IFC type to change, or use the drop-down menu below the list.</p></body></html> - <html><head/><body><p>This dialog lets you change the IFC type and material associated with any BIM object in this document. Double-click the IFC type to change, or use the drop-down menu below the list.</p></body></html> + <html><head/><body><p>Этот диалог позволяет вам изменить тип IFC и материал, связанный с любым объектом BIM в этом документе. Дважды щелкните тип IFC, чтобы изменить его, или используйте раскрывающееся меню под списком.</p></body></html> only visible BIM objects - only visible BIM objects + только видимые BIM объекты @@ -655,12 +654,12 @@ Utils -> Make IFC project IFC Quantities Manager - IFC Quantities Manager + Менеджер количеств IFC <html><head/><body><p>Checked quantities will be exported to IFC. Quantities marked with a warning sign indicate a zero value that you might need to check. Clicking a column header will apply to all selected items.</p><p><span style=" font-weight:600;">Warning</span>: Horizontal area is the area obtained when projecting the object on the ground (X,Y) plane, but vertical area is the sum of all areas of the faces that are vertical (orthogonal to the ground plane), so a wall will have its both faces counted.</p><p>Length, width and height values can be changed here, but beware, it might change the geometry!</p></body></html> - <html><head/><body><p>Checked quantities will be exported to IFC. Quantities marked with a warning sign indicate a zero value that you might need to check. Clicking a column header will apply to all selected items.</p><p><span style=" font-weight:600;">Warning</span>: Horizontal area is the area obtained when projecting the object on the ground (X,Y) plane, but vertical area is the sum of all areas of the faces that are vertical (orthogonal to the ground plane), so a wall will have its both faces counted.</p><p>Length, width and height values can be changed here, but beware, it might change the geometry!</p></body></html> + <html><head/><body><p>Проверенные величины будут экспортированы в IFC. Величины, отмеченные предупреждающим знаком, указывают на нулевое значение, которое вам может потребоваться проверить. Щелчок по заголовку столбца применится ко всем выбранным элементам.</p><p><span style=" font-weight:600;">Предупреждение</span>: Горизонтальная площадь — это площадь, полученная при проецировании объекта на плоскость земли (X, Y), но вертикальная площадь — это сумма всех площадей граней, которые являются вертикальными (ортогональными к плоскости земли), поэтому у стены будут учитываться обе грани.</p><p>Здесь можно изменить значения длины, ширины и высоты, но будьте осторожны, это может изменить геометрию!</p></body></html> @@ -671,122 +670,122 @@ Utils -> Make IFC project IFC import options - IFC import options + Опции импорта IFC How the IFC file will initially be imported: Only one object, only project structure, or all individual objects. - How the IFC file will initially be imported: Only one object, only project structure, or all individual objects. + Как первоначально будет импортирован файл IFC: только один объект, только структура проекта, или все отдельные объекты. Only root object (default) - Only root object (default) + Только корневой объект (по умолчанию) Project structure (levels) - Project structure (levels) + Структура проекта (уровни) All individual IFC objects - All individual IFC objects + Все индивидуальные объекты IFC Initial import - Initial import + Начальный импорт This defines how the IFC data is stored in the FreeCAD document. 'Single IFC document' means that the FreeCAD document is the IFC document, anything you create in it belongs to the IFC document too. 'Use IFC document object' means that an object will be created inside the FreeCAD document to represent the IFC document. You will be able to add non-IFC objects alongside. - This defines how the IFC data is stored in the FreeCAD document. 'Single IFC document' means that the FreeCAD document is the IFC document, anything you create in it belongs to the IFC document too. 'Use IFC document object' means that an object will be created inside the FreeCAD document to represent the IFC document. You will be able to add non-IFC objects alongside. + Это определяет, как данные IFC хранятся в документе FreeCAD. «Отдельный документ IFC» означает, что документ FreeCAD является документом IFC, все, что вы создаете в нем, также относится к документу IFC. «Использовать объект документа IFC» означает, что внутри документа FreeCAD будет создан объект для представления документа IFC. Вы сможете добавлять объекты, не относящиеся к IFC. Locked (IFC objects only) - Locked (IFC objects only) + Заблокировано (только IFC объекты) Unlocked (non-IFC objects permitted) - Unlocked (non-IFC objects permitted) + Разблокирован (разрешены не-IFC объекты) Lock document - Lock document + Заблокировать документ Representation type - Representation type + Тип представления The type of object created at import. Mesh is faster, but Shapes are more precise. You can convert between the two anytime by right-clicking the object tree - The type of object created at import. Mesh is faster, but Shapes are more precise. You can convert between the two anytime by right-clicking the object tree + Тип объекта, созданного при импорте. Mesh быстрее, но фигуры точнее. Вы можете конвертировать данные между ними в любое время, щелкнув правой кнопкой мыши на дереве объектов Load the shape (slower) - Load the shape (slower) + Загрузить форму (медленнее) Load 3D representation only, no shape (default) - Load 3D representation only, no shape (default) + Загрузить только 3D-представление, без формы (по умолчанию) No 3D representation at all - No 3D representation at all + Нет 3D представления вовсе If this is checked, the workbench specified in Start preferences will be loaded after import - If this is checked, the workbench specified in Start preferences will be loaded after import + Если этот флажок установлен, указанный в стартовой настройке после импорта будет загружен Switch workbench after import - Switch workbench after import + Сменить верстак после импорта Preload property sets of all objects. It is advised to leave this unchecked and load property sets later, only when needed - Preload property sets of all objects. It is advised to leave this unchecked and load property sets later, only when needed + Предварительно загрузить наборы свойств всех объектов. Рекомендуется оставить этот флажок и загрузочных свойств позже, только при необходимости Preload property sets - Preload property sets + Предварительная загрузка наборов свойств Preload all materials fo the file. It is advised to leave this unchecked and load materials later, only when needed - Preload all materials fo the file. It is advised to leave this unchecked and load materials later, only when needed + Предварительно загрузите все материалы fo файл. Рекомендуется оставить этот флажок и загрузить позже только при необходимости Preload materials - Preload materials + Предзагрузка материалов Preload all layers of the file. It is advised to leave this unchecked and load layers later, only when needed - Preload all layers of the file. It is advised to leave this unchecked and load layers later, only when needed + Предварительно загрузить все слои файла. Рекомендуется оставить этот флажок и загрузить слои позже, только при необходимости Preload layers - Preload layers + Предварительная загрузка слоев If this is unchecked, these settings will be applied automatically next time. You can change this later under menu Edit -> Preferences -> BIM -> Native IFC - If this is unchecked, these settings will be applied automatically next time. You can change this later under menu Edit -> Preferences -> BIM -> Native IFC + Если этот флажок не установлен, эти настройки будут применяться автоматически в следующий раз. Вы можете изменить это позже в меню Изменить -> Настройки -> BIM -> Native IFC @@ -822,7 +821,7 @@ Utils -> Make IFC project Assign selected objects to the selected layer - Assign selected objects to the selected layer + Назначить выбранные объекты выбранному слою @@ -856,12 +855,12 @@ Utils -> Make IFC project New nudge value: - New nudge value: + Новое значение смещения: Below are the phases currently configured for this model: - Below are the phases currently configured for this model: + Ниже приведены фазы, настроенные для этой модели: @@ -891,7 +890,7 @@ Utils -> Make IFC project This screen allows you to configure a new BIM project in FreeCAD. - This screen allows you to configure a new BIM project in FreeCAD. + Этот экран позволяет настроить новый проект BIM в FreeCAD. @@ -911,12 +910,12 @@ Utils -> Make IFC project Loads the contents of a FCStd file into the active document, applying all the BIM settings stored in it if any - Loads the contents of a FCStd file into the active document, applying all the BIM settings stored in it if any + Загружает содержимое файла FCStd в активный документ, применяя все сохраненные в нем параметры BIM, если таковые имеются Load template... - Load template... + Загрузить шаблон... @@ -941,27 +940,27 @@ Utils -> Make IFC project If this is checked, a human figure will be added, which helps greatly to give a sense of scale when viewing the model - If this is checked, a human figure will be added, which helps greatly to give a sense of scale when viewing the model + Если этот флажок установлен, то будет добавлена человеческая фигура, которая значительно помогает дать ощущение масштаба при просмотре модели Add a human figure - Add a human figure + Добавить фигуру человека The site object contains all the data relative to the project location. Later on, you can attach a physical object representing the terrain. - The site object contains all the data relative to the project location. Later on, you can attach a physical object representing the terrain. + Объект сайта содержит все данные относительно расположения проекта. Позже, вы можете прикрепить физический объект, представляющий местность. E - E + E Elevation - Elevation + Высота @@ -971,7 +970,7 @@ Utils -> Make IFC project Default Site - Default Site + Участок по умолчанию @@ -982,7 +981,7 @@ Utils -> Make IFC project ° - ° + ° @@ -1002,7 +1001,7 @@ Utils -> Make IFC project N - N + N @@ -1012,7 +1011,7 @@ Utils -> Make IFC project This will configure a single building for this project. If your project is made of several buildings, you can duplicate it after creation and update its properties. - This will configure a single building for this project. If your project is made of several buildings, you can duplicate it after creation and update its properties. + Это настраивает одно здание для этого проекта. Если Ваш проект состоит из нескольких зданий, Вы можете дублировать его после создания и обновления его свойств. @@ -1032,22 +1031,22 @@ Utils -> Make IFC project Number of H axes - Number of H axes + Количество осей Н Distance between H axes - Distance between H axes + Расстояние между осями Н Number of V axes - Number of V axes + Количество осей V Distance between V axes - Distance between V axes + Расстояние между осями V @@ -1061,17 +1060,17 @@ Utils -> Make IFC project 0 - 0 + 0 Axes line width - Axes line width + Ширина осевых линий Axes color - Axes color + Цвет осевых линий @@ -1081,22 +1080,22 @@ Utils -> Make IFC project Level height - Level height + Высота уровня Number of levels - Number of levels + Количество уровней Bind levels to vertical axes - Bind levels to vertical axes + Привязка уровней к вертикальным осям Define a working plane for each level - Define a working plane for each level + Определите рабочую плоскость для каждого уровня @@ -1116,7 +1115,7 @@ Utils -> Make IFC project The above settings can be saved as a preset. Presets are stored as .txt files in your FreeCAD user folder - The above settings can be saved as a preset. Presets are stored as .txt files in your FreeCAD user folder + Вышеуказанные настройки могут быть сохранены как пресет. Пресеты хранятся как файлы .txt в вашей папке пользователя FreeCAD @@ -1126,32 +1125,32 @@ Utils -> Make IFC project This screen lists all the components of the current document. You can select them to create a FreeCAD spreadsheet containing information from them. - This screen lists all the components of the current document. You can select them to create a FreeCAD spreadsheet containing information from them. + На этом экране перечислены все компоненты текущего документа. Вы можете выбрать их для создания электронной таблицы FreeCAD, содержащей информацию из них. This dialogue window will help you to generate list of components, dimensions, materials from a opened BIM file for Quantity Surveyor purposes. - This dialogue window will help you to generate list of components, dimensions, materials from a opened BIM file for Quantity Surveyor purposes. + Это диалоговое окно поможет Вам сгенерировать список компонентов, размеров, материалов из открытого файла BIM для целей Quantity Surveyor. Select from these options the values you want from each component. FreeCAD will generate a line in the spreadsheet with these values (if they are present). - Select from these options the values you want from each component. FreeCAD will generate a line in the spreadsheet with these values (if they are present). + Выберите из этих параметров значения, которые Вы хотите использовать из каждого компонента. FreeCAD генерирует строку в электронной таблице с этими значениями (если они имеются). object.Length - object.Length + object.Length Shape.Volume - Shape.Volume + Shape.Volume object.Label - object.Label + object.Label @@ -1161,22 +1160,22 @@ Utils -> Make IFC project Select these components from the list if you want to hide the rest of them and move to Survey mode. - Select these components from the list if you want to hide the rest of them and move to Survey mode. + Выберите эти компоненты из списка, если вы хотите скрыть остальные и перейти в режим обследования. Select these components from the list if you want to hide the rest of them and move to schedule definition mode. - Select these components from the list if you want to hide the rest of them and move to schedule definition mode. + Выберите эти компоненты из списка, если вы хотите скрыть остальные и перейти в режим определения расписания. Spaces manager - Spaces manager + Менеджер пространства This screen will allow you to check the spaces configuration of your project and change some attributes. - This screen will allow you to check the spaces configuration of your project and change some attributes. + Этот экран позволит вам проверить конфигурацию пространств вашего проекта и изменить некоторые атрибуты. @@ -1205,34 +1204,34 @@ Utils -> Make IFC project Occupants - Occupants + Жильцы 1.00 m² - 1.00 m² + 1.00 м² Electric consumption - Electric consumption + Энергопотребление 0 - 0 + 0 0 W - 0 W + 0 Вт Space information - Space information + Информация о пространстве @@ -1247,12 +1246,12 @@ Utils -> Make IFC project Level name - Level name + Название уровня W - W + W @@ -1262,12 +1261,12 @@ Utils -> Make IFC project IFC representation of - IFC representation of + Представление МФК (IFC) GroupBox - GroupBox + Групповой ящик @@ -1282,42 +1281,42 @@ Utils -> Make IFC project Welcome to the BIM workbench! - Welcome to the BIM workbench! + Добро пожаловать на верстак BIM! <html><head/><body><p>This appears to be the first time that you are using the BIM workbench. If you press OK, the next screen will propose you to set a couple of typical FreeCAD options that are suitable for BIM work. You can change these options anytime later under menu <span style=" font-weight:600;">Manage -&gt; BIM Setup...</span></p></body></html> - <html><head/><body><p>This appears to be the first time that you are using the BIM workbench. If you press OK, the next screen will propose you to set a couple of typical FreeCAD options that are suitable for BIM work. You can change these options anytime later under menu <span style=" font-weight:600;">Manage -&gt; BIM Setup...</span></p></body></html> + <html><head/><body><p>Похоже, вы впервые используете BIM workbench. Если вы нажмете OK, на следующем экране вам будет предложено установить несколько типичных параметров FreeCAD, подходящих для работы с BIM. Вы можете изменить эти параметры в любое время позже в меню <span style=" font-weight:600;">Управление -> Настройка BIM...</span></p></body></html> How to get started? - How to get started? + Как начать? FreeCAD is a complex application. If this is your first contact with FreeCAD, or you have never worked with 3D or BIM before, you might want to take our <a href="https://wiki.freecad.org/BIM_ingame_tutorial">BIM tutorial</a> first (Also available under menu <span style=" font-weight:600;">Help -&gt; BIM Tutorial</span>). - FreeCAD is a complex application. If this is your first contact with FreeCAD, or you have never worked with 3D or BIM before, you might want to take our <a href="https://wiki.freecad.org/BIM_ingame_tutorial">BIM tutorial</a> first (Also available under menu <span style=" font-weight:600;">Help -&gt; BIM Tutorial</span>). + FreeCAD — сложное приложение. Если это ваш первый контакт с FreeCAD или вы никогда раньше не работали с 3D или BIM, вам может быть полезно сначала ознакомиться с нашим <a href="https://wiki.freecad.org/BIM_ingame_tutorial">учебником BIM</a> (также доступным в меню <span style=" font-weight:600;">Справка -> Учебник BIM</span>). The BIM workbench also has a <a href="https://wiki.freecad.org/BIM_Workbench">complete documentation</a> available under the Help menu. The "what's this?" button will also open the help page of any tool from the toolbars. - The BIM workbench also has a <a href="https://wiki.freecad.org/BIM_Workbench">complete documentation</a> available under the Help menu. The "what's this?" button will also open the help page of any tool from the toolbars. + BIM workbench также имеет <a href="https://wiki.freecad.org/BIM_Workbench">полную документацию</a>, доступную в меню Help. Кнопка "что это?" также откроет страницу справки любого инструмента из панелей инструментов. A good way to start building a BIM model is by setting up basic characteristics of your project, under menu <span style=" font-weight:600;">Manage -&gt; Project setup</span>. You can also directly configure different floor plans for your project, under menu <span style=" font-weight:600;">Manage -&gt; Levels.</span> - A good way to start building a BIM model is by setting up basic characteristics of your project, under menu <span style=" font-weight:600;">Manage -&gt; Project setup</span>. You can also directly configure different floor plans for your project, under menu <span style=" font-weight:600;">Manage -&gt; Levels.</span> + Хороший способ начать создание модели BIM — настроить основные характеристики вашего проекта в меню <span style=" font-weight:600;">Управление -> Настройка проекта</span>. Вы также можете напрямую настроить различные планы этажей для вашего проекта в меню <span style=" font-weight:600;">Управление -> Уровни</span> There is no mandatory behaviour here though, and you can also start creating walls and columns directly, and care about organizing things in levels later. - There is no mandatory behaviour here though, and you can also start creating walls and columns directly, and care about organizing things in levels later. + Однако здесь нет обязательного поведения, и вы можете начать создавать стены и колонны напрямую, а об организации всего по уровням позаботиться позже. <html><head/><body><p>You might also want to start from an existing floor plan or 3D model made in another application. Under menu <span style=" font-weight:600;">File -&gt; Import</span>, you will find a wide range of file formats that can be imported into FreeCAD.</p></body></html> - <html><head/><body><p>You might also want to start from an existing floor plan or 3D model made in another application. Under menu <span style=" font-weight:600;">File -&gt; Import</span>, you will find a wide range of file formats that can be imported into FreeCAD.</p></body></html> + <html><head/><body><p>Вы также можете начать с существующего плана этажа или 3D-модели, созданной в другом приложении. В меню <span style=" font-weight:600;">Файл -> Импорт</span> вы найдете широкий спектр форматов файлов, которые можно импортировать в FreeCAD.</p></body></html> @@ -1386,7 +1385,7 @@ Utils -> Make IFC project Multi-material definition - Multi-material definition + Задание многослойного материала @@ -1533,7 +1532,7 @@ Utils -> Make IFC project classManager - classManager + менеджер классов @@ -1550,7 +1549,7 @@ Utils -> Make IFC project Custom properties - Custom properties + Пользовательские свойства @@ -1560,7 +1559,7 @@ Utils -> Make IFC project Can only contain alphanumerical characters and no spaces. Use CamelCase typing to define spaces automatically - Can only contain alphanumerical characters and no spaces. Use CamelCase typing to define spaces automatically + Может содержать только буквенно-цифровые символы без пробелов. Используйте CamelCase для автоматического определения пробелов @@ -1571,12 +1570,12 @@ Utils -> Make IFC project A description for this property, can be in any language. - A description for this property, can be in any language. + Описание этого свойства может быть на любом языке. The property will be hidden in the interface, and can only be modified via Python script - The property will be hidden in the interface, and can only be modified via Python script + Свойство будет скрыто в интерфейсе и может быть изменено только с помощью скрипта python @@ -1586,7 +1585,7 @@ Utils -> Make IFC project The property is visible but cannot be modified by the user - The property is visible but cannot be modified by the user + Свойство видимо, но не может быть изменено пользователем @@ -1606,7 +1605,7 @@ Utils -> Make IFC project Inserts the selected object in the current document - Inserts the selected object in the current document + Вставляет выбранный объект в текущий документ @@ -1616,12 +1615,12 @@ Utils -> Make IFC project or - or + или Links the selected object in the current document. Only works in Offline mode - Links the selected object in the current document. Only works in Offline mode + Ссылки на выбранный объект в текущем документе. Работает только в автономном режиме @@ -1656,7 +1655,7 @@ Utils -> Make IFC project If this is checked, the library doesn't need to be installed. Contents will be fetched online. - If this is checked, the library doesn't need to be installed. Contents will be fetched online. + Если этот флажок установлен, библиотеку устанавливать не нужно. Контент будет загружен через интернет. @@ -1666,12 +1665,12 @@ Utils -> Make IFC project Open the search results inside FreeCAD's web browser instead of the system browser - Open the search results inside FreeCAD's web browser instead of the system browser + Открыть результаты поиска в веб-браузере FreeCAD`а, а не в системном браузере Open search in FreeCAD web view - Open search in FreeCAD web view + Открыть поиск в веб просмотре FreeCAD @@ -1686,17 +1685,17 @@ Utils -> Make IFC project Show available alternative file formats for library items (STEP, IFC, etc...) - Show available alternative file formats for library items (STEP, IFC, etc...) + Показать доступные альтернативные форматы файлов для элементов библиотеки (STEP, IFC и т. д.) Display alternative formats - Display alternative formats + Показать альтернативные форматы Note: STEP and BREP files can be placed at custom location. FCStd and IFC files will be placed where objects are defined in the file. - Note: STEP and BREP files can be placed at custom location. FCStd and IFC files will be placed where objects are defined in the file. + Примечание. Файлы STEP и BREP можно разместить в произвольном месте. Файлы FCStd и IFC будут размещены там, где это определено в файле. @@ -1711,27 +1710,27 @@ Utils -> Make IFC project IFC Preflight - IFC Preflight + Предполётная проверка IFC <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> - <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> + <html><head/><body><p>Следующий тест проверит вашу модель или выбранные объекты и их дочерние элементы на соответствие некоторым стандартам IFC.</p><p><span style=" font-weight:600;">Важно</span>: Ни один из неудачных тестов ниже не помешает экспорту файлов IFC, и эти тесты не гарантируют, что ваши файлы IFC соответствуют каким-либо определенным требованиям к качеству или стандартам. Они предназначены для того, чтобы помочь вам оценить, что есть, а чего нет в вашем экспортированном файле. Вы можете выбрать, какой элемент важен для вас, а какой нет. Наведение мыши на каждое описание даст вам больше информации для принятия решения.</p><p>После запуска теста нажатие соответствующей кнопки даст вам больше информации, которая поможет вам устранить проблемы.</p><p><a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">официальный сайт IFC</span></a> содержит много полезной информации о стандартах IFC.</p></body></html> Warning, this can take some time! - Warning, this can take some time! + Внимание, это может занять некоторое время! Run all tests - Run all tests + Запустить все тесты Work on - Work on + Работа над @@ -1756,7 +1755,7 @@ Utils -> Make IFC project <html><head/><body><p>IFC export in FreeCAD is performed by an open-source third-party library called IfcOpenShell. To be able to export to the newer IFC4 standard, IfcOpenShell must have been compiled with IFC4 support enabled. This test will check if IFC4 support is available in your version of IfcOpenShell. If not, you will only be able to export IFC files in the older IFC2x3 standard. Note that some applications out there still have incomplete or inexistent IFC4 support, so in some cases IFC2x3 might still work better.</p></body></html> - <html><head/><body><p>IFC export in FreeCAD is performed by an open-source third-party library called IfcOpenShell. To be able to export to the newer IFC4 standard, IfcOpenShell must have been compiled with IFC4 support enabled. This test will check if IFC4 support is available in your version of IfcOpenShell. If not, you will only be able to export IFC files in the older IFC2x3 standard. Note that some applications out there still have incomplete or inexistent IFC4 support, so in some cases IFC2x3 might still work better.</p></body></html> + <html><head/><body><p>Экспорт IFC в FreeCAD выполняется сторонней библиотекой с открытым исходным кодом IfcOpenShell. Чтобы экспортировать в новый стандарт IFC4, IfcOpenShell должен быть скомпилирован с включенной поддержкой IFC4. Этот тест проверит, доступна ли поддержка IFC4 в вашей версии IfcOpenShell. Если нет, вы сможете экспортировать файлы IFC только в более старом стандарте IFC2x3. Обратите внимание, что некоторые приложения все еще имеют неполную или отсутствующую поддержку IFC4, поэтому в некоторых случаях IFC2x3 может работать лучше.</p></body></html> @@ -1791,27 +1790,27 @@ Utils -> Make IFC project <html><head/><body><p>All IfcBuildingStorey (levels) elements are required to be inside an IfcBuilding element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuilding will be created for all level objects (BuildingPart objects with their IFC role set as Building Storey) found that are not inside a Building. However, it is best if you create that building yourself, so you have more control over its name and properties. This test is here to help you to find those levels without buildings.</p></body></html> - <html><head/><body><p>All IfcBuildingStorey (levels) elements are required to be inside an IfcBuilding element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuilding will be created for all level objects (BuildingPart objects with their IFC role set as Building Storey) found that are not inside a Building. However, it is best if you create that building yourself, so you have more control over its name and properties. This test is here to help you to find those levels without buildings.</p></body></html> + <html><head/><body><p>Все элементы IfcBuildingStorey (уровни) должны находиться внутри элемента IfcBuilding. Это обязательное требование стандарта IFC. При экспорте модели FreeCAD в IFC для всех найденных объектов уровня (объектов BuildingPart с их ролью IFC, установленной как Building Storey) будет создан IfcBuilding по умолчанию, которые не находятся внутри здания. Однако лучше всего создать это здание самостоятельно, чтобы иметь больше контроля над его именем и свойствами. Этот тест поможет вам найти эти уровни без зданий.</p></body></html> Are all storeys part of a building? - Are all storeys part of a building? + Все ли этажи являются частью здания? <html><head/><body><p>All elements derived from IfcProduct (that is, all the BIM elements that compose your model) are required to be inside an IfcBuildingStorey (level) element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuildingStorey will be created for all BIM objects found that are not inside one already. However, it is best if you make sure yourself that all elements are correctly located inside a level, so you have more control over it. This test is here to help you to find those BIM objects without a level.</p></body></html> - <html><head/><body><p>All elements derived from IfcProduct (that is, all the BIM elements that compose your model) are required to be inside an IfcBuildingStorey (level) element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcBuildingStorey will be created for all BIM objects found that are not inside one already. However, it is best if you make sure yourself that all elements are correctly located inside a level, so you have more control over it. This test is here to help you to find those BIM objects without a level.</p></body></html> + <html><head/><body><p>Все элементы, полученные из IfcProduct (то есть все элементы BIM, составляющие вашу модель), должны находиться внутри элемента IfcBuildingStorey (уровень). Это обязательное требование стандарта IFC. При экспорте вашей модели FreeCAD в IFC будет создан IfcBuildingStorey по умолчанию для всех найденных объектов BIM, которые еще не находятся внутри одного. Однако лучше всего, если вы сами убедитесь, что все элементы правильно расположены внутри уровня, чтобы у вас было больше контроля над ним. Этот тест поможет вам найти те объекты BIM, у которых нет уровня.</p></body></html> Are all BIM objects part of a level? - Are all BIM objects part of a level? + Все ли BIM объекты являются частью уровня? <html><head/><body><p>All IfcBuilding elements are required to be inside an IfcSite element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcSite will be created for all Building objects found that are not inside a Site. However, it is best if you create that site yourself, so you have more control over its name and properties. This test is here to help you to find those buildings without sites.</p></body></html> - <html><head/><body><p>All IfcBuilding elements are required to be inside an IfcSite element. This is a mandatory requirement of the IFC standard. When exporting your FreeCAD model to IFC, a default IfcSite will be created for all Building objects found that are not inside a Site. However, it is best if you create that site yourself, so you have more control over its name and properties. This test is here to help you to find those buildings without sites.</p></body></html> + <html><head/><body><p>Все элементы IfcBuilding должны находиться внутри элемента IfcSite. Это обязательное требование стандарта IFC. При экспорте модели FreeCAD в IFC для всех найденных объектов Building, которые не находятся внутри Site, будет создан IfcSite по умолчанию. Однако лучше всего создать этот site самостоятельно, чтобы иметь больше контроля над его именем и свойствами. Этот тест поможет вам найти здания без sites.</p></body></html> @@ -1821,12 +1820,12 @@ Utils -> Make IFC project <html><head/><body><p>The IFC standard requires at least one site, one building and one level or building storey per project. This test will ensure that at least one object of each of these 3 types exists in the model.</p><p>Note that, as this is a mandatory requirement, FreeCAD will automatically add a default site, a default building and/or a default building storey if any of these is missing. So even if this test didn't pass, your exported IFC file will meet the requirements.</p><p>However, it is always better to create these objects yourself, as you get more control over naming and properties.</p></body></html> - <html><head/><body><p>The IFC standard requires at least one site, one building and one level or building storey per project. This test will ensure that at least one object of each of these 3 types exists in the model.</p><p>Note that, as this is a mandatory requirement, FreeCAD will automatically add a default site, a default building and/or a default building storey if any of these is missing. So even if this test didn't pass, your exported IFC file will meet the requirements.</p><p>However, it is always better to create these objects yourself, as you get more control over naming and properties.</p></body></html> + <html><head/><body><p>Стандарт IFC требует по крайней мере одну площадку, одно здание и один уровень или этаж здания на проект. Этот тест гарантирует, что по крайней мере один объект каждого из этих 3 типов существует в модели.</p><p>Обратите внимание, что, поскольку это обязательное требование, FreeCAD автоматически добавит площадку по умолчанию, здание по умолчанию и/или этаж здания по умолчанию, если что-либо из этого отсутствует. Таким образом, даже если этот тест не пройден, ваш экспортированный файл IFC будет соответствовать требованиям.</p><p>Однако всегда лучше создавать эти объекты самостоятельно, так как вы получаете больше контроля над именованием и свойствами.</p></body></html> Is there at least one site, one building and one level in the model? - Is there at least one site, one building and one level in the model? + Есть ли хотя бы один участок, одно здание и один уровень модели? @@ -1836,7 +1835,7 @@ Utils -> Make IFC project <html><head/><body><p>Although it is not a requirement for IFC objects to have fully clean and solid geometry (and you will more than often find IFC files with bad geometry out there, oh boy if you find!), it is of course better if they do. You will reduce chances of problems with other applications, and after all, in real life, all objects have solid shapes.</p><p>FreeCAD has a lot of tools to check for geometry quality, and most parametric objects, including BIM objects, will usually warn you if their geometry becomes unclean or not solid at some point. This test makes sure everything is OK.</p></body></html> - <html><head/><body><p>Although it is not a requirement for IFC objects to have fully clean and solid geometry (and you will more than often find IFC files with bad geometry out there, oh boy if you find!), it is of course better if they do. You will reduce chances of problems with other applications, and after all, in real life, all objects have solid shapes.</p><p>FreeCAD has a lot of tools to check for geometry quality, and most parametric objects, including BIM objects, will usually warn you if their geometry becomes unclean or not solid at some point. This test makes sure everything is OK.</p></body></html> + <html><head/><body><p>Хотя для объектов IFC не обязательно иметь полностью чистую и сплошную геометрию (и вы чаще всего будете находить файлы IFC с плохой геометрией, о боже, если найдете!), конечно, лучше, если они ее имеют. Вы уменьшите вероятность возникновения проблем с другими приложениями, и в конце концов, в реальной жизни все объекты имеют сплошные формы.</p><p>FreeCAD имеет множество инструментов для проверки качества геометрии, и большинство параметрических объектов, включая объекты BIM, обычно предупреждают вас, если их геометрия становится нечистой или несплошной в какой-то момент. Этот тест позволяет убедиться, что все в порядке.</p></body></html> @@ -1846,12 +1845,12 @@ Utils -> Make IFC project <html><head/><body><p>The IFC format provides a defined type for most of the objects that compose a building, for example walls, columns, doors, or sinks. But it also supports undefined objects, which are given the generic BuildingElementProxy type. This test will check that all objects have a defined type.</p><p><br/></p><p>Note that failing this test is not necessarily bad, as you might specifically want some object to not have any defined type. In some cases, this might even give better results, as some applications like Revit might add possibly unwanted additional constraints or transformations to some known types such as structural elements (beams or columns). Exporting them as BuildingElementProxies will prevent that.</p></body></html> - <html><head/><body><p>The IFC format provides a defined type for most of the objects that compose a building, for example walls, columns, doors, or sinks. But it also supports undefined objects, which are given the generic BuildingElementProxy type. This test will check that all objects have a defined type.</p><p><br/></p><p>Note that failing this test is not necessarily bad, as you might specifically want some object to not have any defined type. In some cases, this might even give better results, as some applications like Revit might add possibly unwanted additional constraints or transformations to some known types such as structural elements (beams or columns). Exporting them as BuildingElementProxies will prevent that.</p></body></html> + <html><head/><body><p>Формат IFC предоставляет определенный тип для большинства объектов, составляющих здание, например, стены, колонны, двери или раковины. Но он также поддерживает неопределенные объекты, которым присваивается общий тип BuildingElementProxy. Этот тест проверит, что все объекты имеют определенный тип.</p><p><br/></p><p>Обратите внимание, что провал этого теста не обязательно плох, так как вы можете специально захотеть, чтобы какой-то объект не имел никакого определенного типа. В некоторых случаях это может даже дать лучшие результаты, так как некоторые приложения, такие как Revit, могут добавлять, возможно, нежелательные дополнительные ограничения или преобразования к некоторым известным типам, таким как структурные элементы (балки или колонны). Экспорт их как BuildingElementProxies предотвратит это.</p></body></html> Are all BIM objects of a defined IFC type? - Are all BIM objects of a defined IFC type? + Все ли BIM объекты определенного типа IFC? @@ -1861,62 +1860,62 @@ Utils -> Make IFC project <html><head/><body><p>Classification systems, such as UniClass or MasterFormat, or even your own custom system, are in some cases an important part of a building project. This test will ensure that all BIM objects and materials found in the model have their standard code property dutifully filled.</p></body></html> - <html><head/><body><p>Classification systems, such as UniClass or MasterFormat, or even your own custom system, are in some cases an important part of a building project. This test will ensure that all BIM objects and materials found in the model have their standard code property dutifully filled.</p></body></html> + <html><head/><body><p>Системы классификации, такие как UniClass или MasterFormat, или даже ваша собственная система, в некоторых случаях являются важной частью строительного проекта. Этот тест гарантирует, что все объекты BIM и материалы, найденные в модели, имеют свое стандартное свойство кода, которое будет должным образом заполнено.</p></body></html> Do all BIM objects and materials have a standard classification code defined? - Do all BIM objects and materials have a standard classification code defined? + Во всех ли объектах и материалах BIM есть стандартный код классификации? <html><head/><body><p>The IFC standard offers standard, predefined property sets for many object types. for example, the property set Pset_WallCommon contains properties that the IFC standard thinks all walls should have. This test will check that all BIM objects have the right property set, if available.</p><p>Note that this is by no means a formal requirement, and these will inflate the size of your IFC file consequently. We suggest you add standard property sets only if you are actually using any of them.</p></body></html> - <html><head/><body><p>The IFC standard offers standard, predefined property sets for many object types. for example, the property set Pset_WallCommon contains properties that the IFC standard thinks all walls should have. This test will check that all BIM objects have the right property set, if available.</p><p>Note that this is by no means a formal requirement, and these will inflate the size of your IFC file consequently. We suggest you add standard property sets only if you are actually using any of them.</p></body></html> + <html><head/><body><p>Стандарт IFC предлагает стандартные, предопределенные наборы свойств для многих типов объектов. Например, набор свойств Pset_WallCommon содержит свойства, которые, по мнению стандарта IFC, должны иметь все стены. Этот тест проверит, что все объекты BIM имеют правильный набор свойств, если он доступен.</p><p>Обратите внимание, что это ни в коем случае не формальное требование, и они, соответственно, увеличат размер вашего файла IFC. Мы рекомендуем вам добавлять стандартные наборы свойств, только если вы фактически используете какой-либо из них.</p></body></html> Do all common IFC types have the corresponding Property Set? - Do all common IFC types have the corresponding Property Set? + Все типы IFC имеют соответствующий набор параметров? <html><head/><body><p>IFC objects have a geometry representation, which defines the shape of the object, but can also have some or their dimensions, such as height, width or area, explicitly stated. This is very useful for BIM applications that don't process the geometry, such as spreadsheets. Those applications are still able to get and estimate quantities from IFC objects without the need to analyze the geometry.</p><p>It is also a possibility for errors (or even fraud), as nothing guarantees that those explicitly stated dimensions match what is inside the geometry.</p><p>This test will find any BIM object that has available dimension properties such as width or height, for example walls and structures, but such properties are not marked for explicit export to IFC.</p></body></html> - <html><head/><body><p>IFC objects have a geometry representation, which defines the shape of the object, but can also have some or their dimensions, such as height, width or area, explicitly stated. This is very useful for BIM applications that don't process the geometry, such as spreadsheets. Those applications are still able to get and estimate quantities from IFC objects without the need to analyze the geometry.</p><p>It is also a possibility for errors (or even fraud), as nothing guarantees that those explicitly stated dimensions match what is inside the geometry.</p><p>This test will find any BIM object that has available dimension properties such as width or height, for example walls and structures, but such properties are not marked for explicit export to IFC.</p></body></html> + <html><head/><body><p>Объекты IFC имеют геометрическое представление, которое определяет форму объекта, но также могут иметь некоторые или их размеры, такие как высота, ширина или площадь, явно указанные. Это очень полезно для приложений BIM, которые не обрабатывают геометрию, таких как электронные таблицы. Эти приложения по-прежнему могут получать и оценивать количества из объектов IFC без необходимости анализа геометрии.</p><p>Также существует вероятность ошибок (или даже мошенничества), поскольку ничто не гарантирует, что эти явно указанные размеры соответствуют тому, что находится внутри геометрии.</p><p>Этот тест найдет любой объект BIM, который имеет доступные свойства размеров, такие как ширина или высота, например, стены и конструкции, но такие свойства не отмечены для явного экспорта в IFC.</p></body></html> Do all geometric BIM objects have explicit dimensions set? - Do all geometric BIM objects have explicit dimensions set? + Все геометрические объекты BIM имеют явный набор размеров? <html><head/><body><p>Although there is no requirement for IFC objects to have a material defined, in the real world, it is an important layer of information to be added to you model. This test will find BIM objects without a material defined.</p><p>If a BIM object is exported without a material, it will nevertheless be assigned an IfcSurfaceStyle, which will be created from the object color. Some BIM applications actually disregard materials, and only consider the surface style of an object. No IfcMaterial will be attributed to that object.</p><p>If a BIM object has a material defined, a surface style will still be created (an IfcMaterial too) but its surface style will take the same name and properties as the material, thus giving more consistency to your file, no matter what other BIM consider, surface style, material, or both.</p></body></html> - <html><head/><body><p>Although there is no requirement for IFC objects to have a material defined, in the real world, it is an important layer of information to be added to you model. This test will find BIM objects without a material defined.</p><p>If a BIM object is exported without a material, it will nevertheless be assigned an IfcSurfaceStyle, which will be created from the object color. Some BIM applications actually disregard materials, and only consider the surface style of an object. No IfcMaterial will be attributed to that object.</p><p>If a BIM object has a material defined, a surface style will still be created (an IfcMaterial too) but its surface style will take the same name and properties as the material, thus giving more consistency to your file, no matter what other BIM consider, surface style, material, or both.</p></body></html> + <html><head/><body><p>Хотя для объектов IFC не требуется определять материал, в реальном мире это важный слой информации, который необходимо добавить в вашу модель. Этот тест найдет объекты BIM без определенного материала.</p><p>Если объект BIM экспортируется без материала, ему, тем не менее, будет назначен IfcSurfaceStyle, который будет создан из цвета объекта. Некоторые приложения BIM фактически игнорируют материалы и учитывают только стиль поверхности объекта. Для этого объекта не будет назначен IfcMaterial.</p><p>Если для объекта BIM определен материал, стиль поверхности все равно будет создан (также IfcMaterial), но его стиль поверхности будет иметь то же имя и свойства, что и материал, что обеспечивает большую согласованность вашего файла, независимо от того, что учитывает другой BIM: стиль поверхности, материал или и то, и другое.</p></body></html> Do all BIM objects have a material? - Do all BIM objects have a material? + Все ли объекты BIM имеют материал? <html><head/><body><p>Even if a BIM object has a standard property set for its type attributed, there is no guarantee that this property set still contains or only contains all the properties that the IFC standard has defined for that set. They might have been modified after the property set has been added.</p><p>This test will check that all standard property sets found throughout the model contain all and only the properties specified in the standard definition.</p></body></html> - <html><head/><body><p>Even if a BIM object has a standard property set for its type attributed, there is no guarantee that this property set still contains or only contains all the properties that the IFC standard has defined for that set. They might have been modified after the property set has been added.</p><p>This test will check that all standard property sets found throughout the model contain all and only the properties specified in the standard definition.</p></body></html> + <html><head/><body><p>Даже если объект BIM имеет стандартный набор свойств для своего типа атрибута, нет гарантии, что этот набор свойств все еще содержит или содержит только все свойства, которые стандарт IFC определил для этого набора. Они могли быть изменены после добавления набора свойств.</p><p>Этот тест проверит, что все стандартные наборы свойств, найденные в модели, содержат все и только свойства, указанные в стандартном определении.</p></body></html> Do all standard Property Set contain the correct properties? - Do all standard Property Set contain the correct properties? + Все ли стандартные наборы свойств содержат правильные свойства? Optional/Compatibility - Optional/Compatibility + Необязательно/Совместимость <html><head/><body><p>The geometry of IFC objects can be defined in a large number of ways, such as extrusions, subtractions, revolutions, or even faceted objects.</p><p>However, extrusions of flat shapes, which is the most basic and common type, often offer advantages over other types in other BIM applications.</p><p>This test will find any object that cannot be exported to IFC as an extrusion, or as a shared extrusion (clone).</p></body></html> - <html><head/><body><p>The geometry of IFC objects can be defined in a large number of ways, such as extrusions, subtractions, revolutions, or even faceted objects.</p><p>However, extrusions of flat shapes, which is the most basic and common type, often offer advantages over other types in other BIM applications.</p><p>This test will find any object that cannot be exported to IFC as an extrusion, or as a shared extrusion (clone).</p></body></html> + <html><head/><body><p>Геометрия объектов IFC может быть определена большим количеством способов, таких как выдавливание, вычитание, вращение или даже граненые объекты.</p><p>Однако выдавливание плоских форм, которое является самым базовым и распространенным типом, часто имеет преимущества перед другими типами в других приложениях BIM.</p><p>Этот тест найдет любой объект, который не может быть экспортирован в IFC как выдавливание или как общее выдавливание (клон).</p></body></html> @@ -1926,32 +1925,32 @@ Utils -> Make IFC project <html><head/><body><p>Walls, columns and beams in FreeCAD can be constructed in a wide number of ways. But some simpler BIM applications might have difficulties with walls that are not of the most simple type, that is, a single, straight piece of wall (which correspond to the IfcWallStandardCase type) or beams and columns that are not based on a straight extrusion of a flat profile (BeamStandardCase, ColumnStandardCase)</p><p>This test will find any wall which is not such a standard case.</p><p><span style=" font-weight:600;">Note</span>: At the moment, BIM objects that meet the requirements to be of a standard case, are still exported as IfcWall, IfcBeam, IfcColumn.</p></body></html> - <html><head/><body><p>Walls, columns and beams in FreeCAD can be constructed in a wide number of ways. But some simpler BIM applications might have difficulties with walls that are not of the most simple type, that is, a single, straight piece of wall (which correspond to the IfcWallStandardCase type) or beams and columns that are not based on a straight extrusion of a flat profile (BeamStandardCase, ColumnStandardCase)</p><p>This test will find any wall which is not such a standard case.</p><p><span style=" font-weight:600;">Note</span>: At the moment, BIM objects that meet the requirements to be of a standard case, are still exported as IfcWall, IfcBeam, IfcColumn.</p></body></html> + <html><head/><body><p>Стены, колонны и балки в FreeCAD можно построить множеством способов. Но некоторые более простые приложения BIM могут испытывать трудности со стенами, которые не являются самым простым типом, то есть представляют собой один прямой кусок стены (соответствующий типу IfcWallStandardCase) или балки и колонны, которые не основаны на прямом выдавливании плоского профиля (BeamStandardCase, ColumnStandardCase)</p><p>Этот тест найдет любую стену, которая не является таким стандартным случаем.</p><p><span style=" font-weight:600;">Примечание</span>: в настоящее время объекты BIM, которые соответствуют требованиям стандартного случая, по-прежнему экспортируются как IfcWall, IfcBeam, IfcColumn.</p></body></html> Are all walls, beams and columns based on a single line or profile (standard case)? - Are all walls, beams and columns based on a single line or profile (standard case)? + Все ли стены, балки и колонны основаны на одной линии или профиле (стандартный случай)? <html><head/><body><p>Revit discards all objects that contain lines smaller than 1/32 inch (0.8mm). This test will find any object containing lines smaller than that value.</p></body></html> - <html><head/><body><p>Revit discards all objects that contain lines smaller than 1/32 inch (0.8mm). This test will find any object containing lines smaller than that value.</p></body></html> + <html><head/><body><p>Revit отбрасывает все объекты, содержащие линии меньше 1/32 дюйма (0,8 мм). Этот тест найдет любой объект, содержащий линии меньше этого значения.</p></body></html> Are all lines bigger than 1/32 inches (minimum accepted by Revit)? - Are all lines bigger than 1/32 inches (minimum accepted by Revit)? + Все ли линии больше 1/32 дюйма (минимальный размер, принимаемый Revit)? <html><head/><body><p>When exporting a model to IFC, all BIM objects that are an extrusion of a rectangular profile will use an IfcRectangleProfileDef entity as their extrusion profile. However, Revit won't import these correctly. If you are going to use the IFC file in Revit, we recommend you to disable this behavior by checking the option under menu <span style=" font-weight:600;">Edit -&gt; Preferences -&gt; BIM -&gt; NativeIFC -&gt; Disable IfcRectangularProfileDef</span>.</p><p>When that option is checked, all extrusion profiles will be exported as generic IfcArbitraryProfileDef entities, regardless of if they are rectangular or not, which will contain a little less information, but will open correctly in Revit.</p></body></html> - <html><head/><body><p>When exporting a model to IFC, all BIM objects that are an extrusion of a rectangular profile will use an IfcRectangleProfileDef entity as their extrusion profile. However, Revit won't import these correctly. If you are going to use the IFC file in Revit, we recommend you to disable this behavior by checking the option under menu <span style=" font-weight:600;">Edit -&gt; Preferences -&gt; BIM -&gt; NativeIFC -&gt; Disable IfcRectangularProfileDef</span>.</p><p>When that option is checked, all extrusion profiles will be exported as generic IfcArbitraryProfileDef entities, regardless of if they are rectangular or not, which will contain a little less information, but will open correctly in Revit.</p></body></html> + <html><head/><body><p>При экспорте модели в IFC все объекты BIM, являющиеся выдавливанием прямоугольного профиля, будут использовать сущность IfcRectangleProfileDef в качестве профиля выдавливания. Однако Revit не будет импортировать их правильно. Если вы собираетесь использовать файл IFC в Revit, мы рекомендуем вам отключить это поведение, отметив опцию в меню <span style=" font-weight:600;">Редактировать -> Настройки -> BIM -> NativeIFC -> Отключить IfcRectangularProfileDef</span>.</p><p>Когда эта опция отмечена, все профили выдавливания будут экспортированы как общие сущности IfcArbitraryProfileDef, независимо от того, являются ли они прямоугольными или нет, которые будут содержать немного меньше информации, но будут правильно открываться в Revit.</p></body></html> Is IfcRectangleProfileDef export disabled? (Revit only) - Is IfcRectangleProfileDef export disabled? (Revit only) + IfcRectangleProfileDef экспорт отключен? (Только Revit) @@ -1985,15 +1984,15 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this is the first time you are using the tutorial, this can take a while, since we need to download many images. On next runs, this will be faster as the images are cached locally.</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;"><br /></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When the tutorial is fully written, we'll think of a faster system to avoid this annoying loading time. Please bear with us in the meantime! ;)</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><style type="text/css"> p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'Fira Sans'; font-size:9pt; 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;">Loading tutorials contents from the FreeCAD wiki. Please wait...</p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Загрузка содержимого учебных пособий из вики FreeCAD. Пожалуйста, подождите...</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;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If this is the first time you are using the tutorial, this can take a while, since we need to download many images. On next runs, this will be faster as the images are cached locally.</p> +<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;"><br /></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When the tutorial is fully written, we'll think of a faster system to avoid this annoying loading time. Please bear with us in the meantime! ;)</p></body></html> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Когда руководство будет полностью написано, мы подумаем о более быстрой системе, чтобы избежать этого раздражающего времени загрузки. Пожалуйста, потерпите нас пока! ;)</p></body></html> @@ -2044,7 +2043,7 @@ p, li { white-space: pre-wrap; } This screen lists all the windows of the current document. You can modify them individually or together - This screen lists all the windows of the current document. You can modify them individually or together + На этом экране перечислены все окна текущего документа. Вы можете изменить их индивидуально или вместе @@ -2133,7 +2132,7 @@ p, li { white-space: pre-wrap; } How the IFC file will initially be imported: Only one object, only project structure, or all individual objects. - How the IFC file will initially be imported: Only one object, only project structure, or all individual objects. + Как первоначально будет импортирован файл IFC: только один объект, только структура проекта, или все отдельные объекты. @@ -2158,7 +2157,7 @@ p, li { white-space: pre-wrap; } The type of object created at import. Coin only is much faster, but you don't get the full shape information. You can convert between the two anytime by right-clicking the object tree - The type of object created at import. Coin only is much faster, but you don't get the full shape information. You can convert between the two anytime by right-clicking the object tree + Тип объекта, созданного при импорте. Только монета намного быстрее, но вы не получите полную информацию о форме. Вы можете конвертировать между ними в любое время, щелкнув правой кнопкой мыши по дереву объектов @@ -2178,17 +2177,17 @@ p, li { white-space: pre-wrap; } If this is checked, the BIM workbench will be loaded after import - If this is checked, the BIM workbench will be loaded after import + Если этот флажок установлен, после импорта будет загружена рабочая среда BIM Switch to BIM workbench after import - Switch to BIM workbench after import + Переключиться на BIM-верстак после импорта Load all property sets automatically when opening an IFC file - Load all property sets automatically when opening an IFC file + Автоматическая загрузка всех наборов свойств при открытии файла IFC @@ -2198,7 +2197,7 @@ p, li { white-space: pre-wrap; } Load all materials automatically when opening an IFC file - Load all materials automatically when opening an IFC file + Автоматическая загрузка всех материалов при открытии файла IFC @@ -2208,27 +2207,27 @@ p, li { white-space: pre-wrap; } Load all layers automatically when opening an IFC file - Load all layers automatically when opening an IFC file + Автоматическая загрузка всех слоев при открытии файла IFC Preload layers - Preload layers + Предварительная загрузка слоев When enabling this, the original version of objects dropped onto an IFC project tree will not be deleted. - When enabling this, the original version of objects dropped onto an IFC project tree will not be deleted. + При включении этой функции исходная версия объектов, перемещенных в дерево проекта IFC, не будет удалена. Keep original version of aggregated objects - Keep original version of aggregated objects + Сохранять исходную версию агрегированных объектов If this is checked, a dialog will be shown at each import - If this is checked, a dialog will be shown at each import + Если этот флажок установлен, при каждом импорте будет отображаться диалоговое окно @@ -2269,7 +2268,7 @@ p, li { white-space: pre-wrap; } If this is checked, when creating a new projects, a default structure (site, building and storey) will be added under the project - If this is checked, when creating a new projects, a default structure (site, building and storey) will be added under the project + Если этот флажок установлен, при создании новых проектов в проект будет добавлена ​​структура по умолчанию (участок, здание и этаж) @@ -2279,7 +2278,7 @@ p, li { white-space: pre-wrap; } Check this to ask the above question every time a project is created - Check this to ask the above question every time a project is created + Установите этот флажок, чтобы задавать указанный выше вопрос каждый раз при создании проекта @@ -2490,27 +2489,24 @@ to projections of hidden objects. Scaling factor for patterns used by objects that have a Footprint display mode - Scaling factor for patterns used by objects that have -a Footprint display mode + Коэффициент масштабирования для шаблонов, используемых объектами, имеющими режим отображения Footprint BIM server - BIM server + BIM сервер 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-адрес для подключения к BIM-серверу (www.bimserver.org). If this is selected, the "Open BIM Server in browser" button will open the BIM Server interface in an external browser instead of the FreeCAD web workbench - If this is selected, the "Open BIM Server in browser" -button will open the BIM Server interface in an external browser -instead of the FreeCAD web workbench + Если флажок установлен, кнопка «Открыть BimServe в браузереr» откроет интерфейс BIM-сервера во внешнем браузере вместо верстака Веб FreeCAD @@ -2755,13 +2751,13 @@ if you start getting crashes when you set multiple cores. Parametric BIM objects - Parametric BIM objects + Параметрические BIM объекты Non-parametric BIM objects - Non-parametric BIM objects + Непараметрические BIM объекты @@ -2978,7 +2974,7 @@ If using Netgen, make sure that it is available. Builtin and Mefisto mesher options - Builtin and Mefisto mesher options + Параметры Мефисто и встроенного генератора полигональной сетки @@ -3220,18 +3216,18 @@ If this is your case, you can disable this and then all profiles will be exporte Some IFC types such as IfcWall or IfcBeam have special standard versions like IfcWallStandardCase or IfcBeamStandardCase. If this option is turned on, FreeCAD will automatically export such objects as standard cases when the necessary conditions are met. - Some IFC types such as IfcWall or IfcBeam have special standard versions like IfcWallStandardCase or IfcBeamStandardCase. If this option is turned on, FreeCAD will automatically export such objects -as standard cases when the necessary conditions are met. + Некоторые типы IFC, такие как IfcWall или IfcBeam, имеют специальные стандартные версии типа IfcWallStandardCase или IfcBeamStandardCase. +Если эта опция включена, FreeCAD будет автоматически экспортировать такие объекты как стандартные при соблюдении необходимых условий. Add default building if one is not found in the document - Add default building if one is not found in the document + Добавить здание по умолчанию, если оно не найдено в документе In FreeCAD, it is possible to nest groups inside buildings or storeys. If this option is disabled, FreeCAD groups will be saved as IfcGroups and aggregated to the building structure. Aggregating non-building elements such as IfcGroups is however not recommended by the IFC standards. It is therefore also possible to export these groups as IfcElementAssemblies, which produces an IFC-compliant file. However, at FreeCAD, we believe nesting groups inside structures should be possible, and this option is there to have a chance to demonstrate our point of view. - In FreeCAD, it is possible to nest groups inside buildings or storeys. If this option is disabled, FreeCAD groups will be saved as IfcGroups and aggregated to the building structure. Aggregating non-building elements such as IfcGroups is however not recommended by the IFC standards. It is therefore also possible to export these groups as IfcElementAssemblies, which produces an IFC-compliant file. However, at FreeCAD, we believe nesting groups inside structures should be possible, and this option is there to have a chance to demonstrate our point of view. + В FreeCAD можно вкладывать группы внутри зданий или этажей. Если эта опция отключена, группы FreeCAD будут сохранены как IfcGroups и объединены в структуру здания. Однако объединение нестроительных элементов, таких как IfcGroups, не рекомендуется стандартами IFC. Поэтому также можно экспортировать эти группы как IfcElementAssemblies, что создает файл, совместимый с IFC. Однако в FreeCAD мы считаем, что вложение групп внутри структур должно быть возможным, и эта опция существует для того, чтобы иметь возможность продемонстрировать нашу точку зрения. @@ -3259,12 +3255,12 @@ A site is not mandatory but a common practice is to have at least one in the fil Check also NativeIFC-specific preferences under BIM -> NativeIFC - Check also NativeIFC-specific preferences under BIM -> NativeIFC + Проверьте также настройки, специфичные для NativeIFC, в разделе BIM -> NativeIFC IFC standard compliance - IFC standard compliance + Соблюдение стандартов IFC @@ -3396,7 +3392,7 @@ unit to work with when opening the file. - + Preset @@ -3429,17 +3425,17 @@ unit to work with when opening the file. Parameters of the structure - Parameters of the structure + Параметры структуры Switch Length/Height - Switch Length/Height + Переключить Длина/Высота Switch Length/Width - Switch Length/Width + Переключить Длина/Ширина @@ -3661,7 +3657,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Упорядочить дочерние элементы по алфавиту @@ -3798,17 +3794,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Select two objects, an object to be cut and an object defining a cutting plane, in that order - Select two objects, an object to be cut and an object defining a cutting plane, in that order + Выберите два объекта: объект, который нужно разрезать, и объект, определяющий плоскость разреза, в указанном порядке The first object does not have a shape - The first object does not have a shape + Первый объект не имеет формы The second object does not define a plane - The second object does not define a plane + Второй объект не определяет плоскость @@ -3986,12 +3982,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela The shapefile Python library was not found on your system. Would you like to download it now from %1? It will be placed in your macros folder. - The shapefile Python library was not found on your system. Would you like to download it now from %1? It will be placed in your macros folder. + ВашБиблиотека Python shapefile не найдена в вашей системе. Хотите загрузить ее сейчас с %1? Она будет помещена в папку с макросами. Error: Unable to download from %1 - Error: Unable to download from %1 + Ошибка: Не удалось загрузить с @@ -4021,7 +4017,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Добавить окно @@ -4031,32 +4027,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Выберите грань на существующем объекте или выберите преднастройку - + Window not based on sketch. Window not aligned or resized. Окно не основано на эскизе. Невозможно выровнять или изменить его размер. - + No Width and/or Height constraint in window sketch. Window not resized. В эскизе окна нет ограничений ширины и/или высоты. Окно не изменилось. - + No window found. Cannot continue. Окно не найдено. Невозможно продолжить. - + Window options Параметры окна - + Auto include in host object Автоматически добавлять в исходный объект - + Sill height Высота подоконника @@ -4122,8 +4118,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4161,8 +4157,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Название @@ -4176,8 +4172,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Толщина @@ -4359,8 +4355,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Объединить дубликаты - - + + Material Материал @@ -4371,17 +4367,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela МультиМатериал - + New layer Новый слой - + Total thickness Общая толщина - + depends on the object зависит от объекта @@ -4465,7 +4461,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Del column - Del column + Столбец Del @@ -4780,7 +4776,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Unable to revolve this connector - Unable to revolve this connector + Невозможно повернуть этот соединитель @@ -4813,12 +4809,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Приложить электронную таблицу - + Import CSV file Импорт CSV-файла - + Export CSV file Экспорт в. CSV @@ -4828,20 +4824,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Экспортировать файл CSV - + Unable to recognize that file type Не удается определить тип файла - - + + Description Описание - - + + @@ -4849,14 +4845,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Значение - - + + Unit Единица измерения - + Schedule Опись @@ -5319,7 +5315,7 @@ Building creation aborted. Invalid cut plane - Invalid cut plane + Неверная плоскость сечения @@ -5389,18 +5385,18 @@ Building creation aborted. Object doesn't have settable IFC attributes - Object doesn't have settable IFC attributes + Объект не имеет настраиваемых IFC-параметров Disabling B-rep force flag of object - Disabling B-rep force flag of object + Отключение флага силы B-rep объекта Enabling B-rep force flag of object - Enabling B-rep force flag of object + Включение флага силы B-rep объекта @@ -5484,7 +5480,7 @@ Building creation aborted. Create multiple BIM Structures from a selected base, using each selected edge as an extrusion path - Create multiple BIM Structures from a selected base, using each selected edge as an extrusion path + Создание нескольких структур BIM из выбранной базы, используя каждое выбранное ребро в качестве пути выдавливания @@ -5611,7 +5607,7 @@ Building creation aborted. Selected edges (or group of edges) of the base ArchSketch, to use in creating the shape of this BIM Structure (instead of using all the Base shape's edges by default). Input are index numbers of edges or groups. - Selected edges (or group of edges) of the base ArchSketch, to use in creating the shape of this BIM Structure (instead of using all the Base shape's edges by default). Input are index numbers of edges or groups. + Выбранные края (или группа краев) основного ArchSketch, для создания формы этой арки (вместо использования по умолчанию всех краев базовой фигуры). Введенные данные - это число краев или групп. @@ -5665,7 +5661,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) Стандартный код (MasterFormat, OmniClass,...) @@ -5729,7 +5725,7 @@ Building creation aborted. This property stores an OpenInventor representation for this object - This property stores an OpenInventor representation for this object + Это свойство хранит представление OpenInventor для этого объекта @@ -5820,12 +5816,12 @@ Building creation aborted. If this is enabled, the OpenInventor representation of this object will be saved in the FreeCAD file, allowing to reference it in other files in lightweight mode. - If this is enabled, the OpenInventor representation of this object will be saved in the FreeCAD file, allowing to reference it in other files in lightweight mode. + Если эта функция включена, представление этого объекта в OpenInventor будет сохранено в файле FreeCAD, что позволит ссылаться на него в других файлах в облегченном режиме. A slot to save the OpenInventor representation of this object, if enabled - A slot to save the OpenInventor representation of this object, if enabled + Слот для сохранения представления OpenInventor этого объекта, если включено @@ -6602,43 +6598,43 @@ Building creation aborted. Когда значение истинно, ограждение будет окрашено как первоначальная деталь и секция. - - + + A description for this material Описание материала - + A URL where to find information about this material URL-адрес, где можно найти информацию об этом материале - + The transparency value of this material Прозрачность материала - + The color of this material Цвет этого материала - + The color of this material when cut Цвет разреза этого материала - + The list of layer names Список имён слоёв - + The list of layer materials Список материалов слоя - + The list of layer thicknesses Список толщин слоя @@ -7058,7 +7054,7 @@ Building creation aborted. Input are index numbers of edges of Base ArchSketch/Sketch geometries (in Edit mode). Selected edges are used to create the shape of this Arch Curtain Wall (instead of using all edges by default). [ENHANCED by ArchSketch] GUI 'Edit Curtain Wall' Tool is provided in external Add-on ('SketchArch') to let users to select the edges interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. Property is ignored if Base ArchSketch provided the selected edges. - Input are index numbers of edges of Base ArchSketch/Sketch geometries (in Edit mode). Selected edges are used to create the shape of this Arch Curtain Wall (instead of using all edges by default). [ENHANCED by ArchSketch] GUI 'Edit Curtain Wall' Tool is provided in external Add-on ('SketchArch') to let users to select the edges interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. Property is ignored if Base ArchSketch provided the selected edges. + Входные данные — индексные номера ребер геометрии Base ArchSketch/Sketch (в режиме редактирования). Выбранные ребра используются для создания формы этой арочной навесной стены (вместо использования всех ребер по умолчанию). [УЛУЧШЕНО ArchSketch] Инструмент GUI «Редактировать навесную стену» предоставляется во внешнем дополнении («SketchArch»), чтобы позволить пользователям выбирать ребра в интерактивном режиме. «Toponaming-Tolerant», если ArchSketch используется в Base (и установлено дополнение SketchArch). Предупреждение: не «Toponaming-Tolerant», если используется только Sketch. Свойство игнорируется, если Base ArchSketch предоставил выбранные ребра. @@ -7068,12 +7064,12 @@ Building creation aborted. The width of this pipe, if not based on a profile - The width of this pipe, if not based on a profile + Ширина этой трубы, если она не основана на профиле The height of this pipe, if not based on a profile - The height of this pipe, if not based on a profile + Высота этой трубы, если она не основана на профиле @@ -7103,7 +7099,7 @@ Building creation aborted. If not based on a profile, this controls the profile of this pipe - If not based on a profile, this controls the profile of this pipe + Если не основано на профиле, то это управляет профилем этой трубы @@ -7158,7 +7154,7 @@ Building creation aborted. The BIM Schedule that uses this spreadsheet - The BIM Schedule that uses this spreadsheet + Расписание BIM, использующее эту электронную таблицу @@ -7472,7 +7468,7 @@ Building creation aborted. Identical to Horizontal Area - Identical to Horizontal Area + Идентично горизонтальной области @@ -7537,7 +7533,7 @@ Building creation aborted. Defines the calculation type for the horizontal area and its perimeter length - Defines the calculation type for the horizontal area and its perimeter length + Определяет тип расчета горизонтальной площади и длины ее периметра @@ -7602,32 +7598,32 @@ Building creation aborted. The width of this wall. Not used if this wall is based on a face. Disabled and ignored if Base object (ArchSketch) provides the information. - The width of this wall. Not used if this wall is based on a face. Disabled and ignored if Base object (ArchSketch) provides the information. + Ширина этой стены. Не используется, если эта стена основана на грани. Отключено и игнорируется, если базовый объект (ArchSketch) предоставляет информацию. This overrides Width attribute to set width of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Widths information, with getWidths() method (If a value is zero, the value of 'Width' will be followed). [ENHANCEMENT by ArchSketch] GUI 'Edit Wall Segment Width' Tool is provided in external SketchArch Add-on to let users to set the values interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. - This overrides Width attribute to set width of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Widths information, with getWidths() method (If a value is zero, the value of 'Width' will be followed). [ENHANCEMENT by ArchSketch] GUI 'Edit Wall Segment Width' Tool is provided in external SketchArch Add-on to let users to set the values interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. + Это переопределяет атрибут Width для установки ширины каждого сегмента стены. Отключено и игнорируется, если объект Base (ArchSketch) предоставляет информацию о ширине с помощью метода getWidths() (если значение равно нулю, будет использоваться значение «Ширина»). [УЛУЧШЕНИЕ от ArchSketch] Инструмент GUI «Изменить ширину сегмента стены» предоставляется во внешнем дополнении SketchArch, чтобы пользователи могли устанавливать значения в интерактивном режиме. «Toponaming-Tolerant», если ArchSketch используется в Base (и установлено дополнение SketchArch). Предупреждение: не «Toponaming-Tolerant», если используется только Sketch. This overrides Align attribute to set align of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Aligns information, with getAligns() method (If a value is not 'Left, Right, Center', the value of 'Align' will be followed). [ENHANCEMENT by ArchSketch] GUI 'Edit Wall Segment Align' Tool is provided in external SketchArch Add-on to let users to set the values interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. - This overrides Align attribute to set align of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Aligns information, with getAligns() method (If a value is not 'Left, Right, Center', the value of 'Align' will be followed). [ENHANCEMENT by ArchSketch] GUI 'Edit Wall Segment Align' Tool is provided in external SketchArch Add-on to let users to set the values interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. + Это переопределяет атрибут Align для установки выравнивания каждого сегмента стены. Отключено и игнорируется, если объект Base (ArchSketch) предоставляет информацию Aligns с методом getAligns() (если значение не равно «Left, Right, Center», будет использоваться значение «Align»). [УЛУЧШЕНИЕ от ArchSketch] Инструмент GUI «Изменить выравнивание сегмента стены» предоставляется во внешнем дополнении SketchArch, чтобы пользователи могли устанавливать значения в интерактивном режиме. «Toponaming-Tolerant», если ArchSketch используется в Base (и установлено дополнение SketchArch). Предупреждение: не «Toponaming-Tolerant», если используется только Sketch. This overrides Offset attribute to set offset of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Offsets information, with getOffsets() method (If a value is zero, the value of 'Offset' will be followed). [ENHANCED by ArchSketch] GUI 'Edit Wall Segment Offset' Tool is provided in external Add-on ('SketchArch') to let users to select the edges interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. Property is ignored if Base ArchSketch provided the selected edges. - This overrides Offset attribute to set offset of each segment of wall. Disabled and ignored if Base object (ArchSketch) provides Offsets information, with getOffsets() method (If a value is zero, the value of 'Offset' will be followed). [ENHANCED by ArchSketch] GUI 'Edit Wall Segment Offset' Tool is provided in external Add-on ('SketchArch') to let users to select the edges interactively. 'Toponaming-Tolerant' if ArchSketch is used in Base (and SketchArch Add-on is installed). Warning : Not 'Toponaming-Tolerant' if just Sketch is used. Property is ignored if Base ArchSketch provided the selected edges. + Это переопределяет атрибут Offset для установки смещения каждого сегмента стены. Отключено и игнорируется, если объект Base (ArchSketch) предоставляет информацию Offsets с методом getOffsets() (если значение равно нулю, будет использоваться значение 'Offset'). [УЛУЧШЕНО ArchSketch] Инструмент GUI 'Изменить смещение сегмента стены' предоставляется во внешнем дополнении ('SketchArch'), чтобы пользователи могли выбирать края в интерактивном режиме. 'Toponaming-Tolerant', если ArchSketch используется в Base (и установлено дополнение SketchArch). Предупреждение: не 'Toponaming-Tolerant', если используется только Sketch. Свойство игнорируется, если Base ArchSketch предоставил выбранные края. The alignment of this wall on its base object, if applicable. Disabled and ignored if Base object (ArchSketch) provides the information. - The alignment of this wall on its base object, if applicable. Disabled and ignored if Base object (ArchSketch) provides the information. + Выравнивание этой стены на ее базовом объекте, если применимо. Отключено и игнорируется, если базовый объект (ArchSketch) предоставляет информацию. The offset between this wall and its baseline (only for left and right alignments). Disabled and ignored if Base object (ArchSketch) provides the information. - The offset between this wall and its baseline (only for left and right alignments). Disabled and ignored if Base object (ArchSketch) provides the information. + Смещение между этой стеной и ее базовой линией (только для левого и правого выравнивания). Отключено и игнорируется, если объект Base (ArchSketch) предоставляет информацию. @@ -7672,7 +7668,7 @@ Building creation aborted. Use Base ArchSketch (if used) data (e.g. widths, aligns, offsets) instead of Wall's properties - Use Base ArchSketch (if used) data (e.g. widths, aligns, offsets) instead of Wall's properties + Использовать данные Base ArchSketch (если используются) (например, ширину, выравнивание, смещения) вместо свойств стены @@ -7723,7 +7719,7 @@ Building creation aborted. Drafting tools - Drafting tools + Инструменты черчения @@ -7733,7 +7729,7 @@ Building creation aborted. 3D/BIM tools - 3D/BIM tools + Инструменты 3D/BIM @@ -7743,7 +7739,7 @@ Building creation aborted. 2D modification tools - 2D modification tools + Инструменты модификации 2D @@ -7753,17 +7749,17 @@ Building creation aborted. General modification tools - General modification tools + Общие инструменты модификации Object modification tools - Object modification tools + Инструменты модификации объекта 3D modification tools - 3D modification tools + Инструменты модификации 3D @@ -8036,7 +8032,7 @@ Building creation aborted. - The sizes for rows + The sizes of rows Размеры строк @@ -8516,31 +8512,31 @@ Building creation aborted. Toggle report panels on/off (Ctrl+0) - Toggle report panels on/off (Ctrl+0) + Вкл/Выкл панели отчётов (Ctrl+0) Toggle BIM views panel on/off (Ctrl+9) - Toggle BIM views panel on/off (Ctrl+9) + Вкл/Выкл панель просмотров BIM (Ctrl+9) Toggle 3D view background between simple and gradient - Toggle 3D view background between simple and gradient + Переключить фон 3D вида между простым и градиентом The value of the nudge movement (rotation is always 45°).CTRL+arrows to move CTRL+, to rotate leftCTRL+. to rotate right CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch between auto and manual mode - The value of the nudge movement (rotation is always 45°).CTRL+arrows to move -CTRL+, to rotate leftCTRL+. to rotate right -CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch between auto and manual mode + Значение перемещения подталкивания (поворот всегда 45°).CTRL+стрелки для перемещения +CTRL+, для поворота влевоCTRL+. для поворота вправо +CTRL+PgUp для удлинения выдавливанияCTRL+PgDown для уменьшения выдавливанияCTRL+/ для переключения между автоматическим и ручным режимами The BIM workbench is used to model buildings - The BIM workbench is used to model buildings + Рабочий стол BIM используется для моделирования зданий @@ -8585,7 +8581,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Searches classes - Searches classes + Поиск классов @@ -8595,62 +8591,62 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet The document currently viewed must be your main one. The other contains newer objects that you wish to merge into this one. Make sure only the objects you wish to compare are visible in both. Proceed? - The document currently viewed must be your main one. The other contains newer objects that you wish to merge into this one. Make sure only the objects you wish to compare are visible in both. Proceed? + Просматриваемый документ должен быть основным. Другой документ содержит новые объекты, которые Вы хотите объединить в этот документ. Убедитесь, что только те объекты, которые Вы хотите сравнить, видны в обоих направлениях. Продолжить? objects still have the same shape but have a different material. Do you wish to update them in the main document? - objects still have the same shape but have a different material. Do you wish to update them in the main document? + объекты все еще имеют одинаковую форму, но имеют другой материал. Хотите обновить их в основном документе? objects have no IFC ID in the main document, but an identical object with an ID exists in the new document. Transfer these IDs to the original objects? - objects have no IFC ID in the main document, but an identical object with an ID exists in the new document. Transfer these IDs to the original objects? + объекты не имеют идентификатора IFC в основном документе, но в новом документе существует идентичный объект с идентификатором. Перенести эти идентификаторы на оригинальные объекты? objects had their name changed. Rename them? - objects had their name changed. Rename them? + объекты изменили свое название. Переименовать их? objects had their properties changed. Update? - objects had their properties changed. Update? + объекты изменились. Обновить? objects have their location changed. Move them to their new position? - objects have their location changed. Move them to their new position? + объекты изменили свое местоположение. Переместить их на новое место? Do you wish to colorize the objects that have moved in yellow in the other file (to serve as a diff)? - Do you wish to colorize the objects that have moved in yellow in the other file (to serve as a diff)? + Хотите ли вы окрасить перемещенные объекты в желтый цвет в другом файле (чтобы использовать их в качестве различий)? Do you wish to colorize the objects that have been modified in orange in the other file (to serve as a diff)? - Do you wish to colorize the objects that have been modified in orange in the other file (to serve as a diff)? + Вы хотите раскрасить изменённые объекты оранжевым цветом в другом файле (служит в качестве различия)? objects don't exist anymore in the new document. Move them to a 'To Delete' group? - objects don't exist anymore in the new document. Move them to a 'To Delete' group? + объекты не существуют в новом документе. Переместить их в группу Для удаления? Do you wish to colorize the objects that have been removed in red in the other file (to serve as a diff)? - Do you wish to colorize the objects that have been removed in red in the other file (to serve as a diff)? + Вы хотите раскрасить удалённые объекты красным цветом в другом файле (служит в качестве различия)? Do you wish to colorize the objects that have been added in green in the other file (to serve as a diff)? - Do you wish to colorize the objects that have been added in green in the other file (to serve as a diff)? + Вы хотите раскрасить добавленные объекты зелёным цветом в другом файле (служит в качестве различия)? You need two documents open to run this tool. One which is your main document, and one that contains new objects that you wish to compare against the existing one. Make sure only the objects you wish to compare in both documents are visible. - You need two documents open to run this tool. One which is your main document, and one that contains new objects that you wish to compare against the existing one. Make sure only the objects you wish to compare in both documents are visible. + Вам нужно открыть два документа, чтобы запустить этот инструмент. Один файл является Вашим основным документом и содержит новые объекты, которые Вы хотите сравнить с существующими. Убедитесь, что видны только те объекты, которые Вы хотите сравнить в обоих документах. @@ -8687,7 +8683,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet IfcOpenShell was not found on this system. IFC support is disabled - IfcOpenShell was not found on this system. IFC support is disabled + IfcOpenShell не найден в этой системе. Поддержка IFC отключена @@ -8804,12 +8800,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Warning: object %1 has old-styled IfcProperties and cannot be updated - Warning: object %1 has old-styled IfcProperties and cannot be updated + Предупреждение: Объект %1 имеет старые свойства IfcProperties и не может быть обновлен Please select or create a property set first in which the new property should be placed. - Please select or create a property set first in which the new property should be placed. + Пожалуйста, сначала выберите или создайте набор свойств, в котором должно быть размещено новое свойство. @@ -8834,7 +8830,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Vertical Area - Vertical Area + Вертикальная зона @@ -8844,7 +8840,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Cannot save quantities settings for object %1 - Cannot save quantities settings for object %1 + Невозможно сохранить настройки количества для объекта %1 @@ -8939,32 +8935,32 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet It is not possible to link because the main document is closed. - It is not possible to link because the main document is closed. + Ссылка невозможна, так как основной документ закрыт. No structure in cache. Please refresh. - No structure in cache. Please refresh. + Нет структуры в кэше. Пожалуйста обновите. It is not possible to insert this object because the document has been closed. - It is not possible to insert this object because the document has been closed. + Невозможно вставить этот объект, так как документ был закрыт. Error: Unable to import SAT files - InventorLoader or CadExchanger addon must be installed - Error: Unable to import SAT files - InventorLoader or CadExchanger addon must be installed + Ошибка: невозможно импортировать файлы SAT — необходимо установить дополнение InventorLoader или CadExchanger Error: Unable to download - Error: Unable to download + Ошибка: Не удалось загрузить Insertion point - Insertion point + Точка вставки @@ -8979,7 +8975,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Top center - Top center + Вверху в центре @@ -8989,17 +8985,17 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Middle left - Middle left + Посередине слева Middle center - Middle center + Посредине в центре Middle right - Middle right + Посередине справа @@ -9009,7 +9005,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Bottom center - Bottom center + Внизу по центру @@ -9019,27 +9015,27 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Cannot open URL - Cannot open URL + Невозможно открыть URL Could not fetch library contents - Could not fetch library contents + Не удалось получить содержимое библиотеки No results fetched from online library - No results fetched from online library + Нет результатов, полученных из онлайн библиотеки Warning, this can take several minutes! - Warning, this can take several minutes! + Внимание, это может занять несколько минут! Select material - Select material + Выбор материала @@ -9059,7 +9055,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Delete unused - Delete unused + Удалить неиспользуемое @@ -9075,7 +9071,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Merge to... - Merge to... + Объединить в... @@ -9087,22 +9083,22 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Merging duplicate material - Merging duplicate material + Объединение дублирующего материала Unable to delete material - Unable to delete material + Не удается удалить материал InList not empty - InList not empty + InList не пуст Deleting unused material - Deleting unused material + Удаление неиспользуемого материала @@ -9133,7 +9129,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet This test has failed. Press the button to know more - This test has failed. Press the button to know more + Этот тест не удался. Нажмите кнопку, чтобы узнать больше @@ -9143,127 +9139,127 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet ifcopenshell is not installed on your system or not available to FreeCAD. This library is responsible for IFC support in FreeCAD, and therefore IFC support is currently disabled. Check %1 to obtain more information. - ifcopenshell is not installed on your system or not available to FreeCAD. This library is responsible for IFC support in FreeCAD, and therefore IFC support is currently disabled. Check %1 to obtain more information. + ifcopenshell не установлен в вашей системе или недоступен для FreeCAD. Эта библиотека отвечает за поддержку IFC в FreeCAD, поэтому поддержка IFC в настоящее время отключена. Проверьте %1, чтобы получить дополнительную информацию. The following types were not found in the project: - The following types were not found in the project: + Следующие типы не найдены в проекте: The following Building objects have been found to not be included in any Site. You can resolve the situation by creating a Site object, if none is present in your model, and drag and drop the Building objects into it in the tree view: - The following Building objects have been found to not be included in any Site. You can resolve the situation by creating a Site object, if none is present in your model, and drag and drop the Building objects into it in the tree view: + Обнаружены следующие объекты Строения, которые не были включены ни в один из Участков. Вы можете разрешить ситуацию, создав объект Участок, если его нет в Вашей модели, и перетащите в него объекты строительства в вид дерева: The following Building Storey (BuildingParts with their IFC role set as "Building Storey") objects have been found to not be included in any Building. You can resolve the situation by creating a Building object, if none is present in your model, and drag and drop the Building Storey objects into it in the tree view: - The following Building Storey (BuildingParts with their IFC role set as "Building Storey") objects have been found to not be included in any Building. You can resolve the situation by creating a Building object, if none is present in your model, and drag and drop the Building Storey objects into it in the tree view: + Следующие объекты Building Storey (BuildingParts с их ролью IFC, установленной как "Building Storey"), не включены ни в одно здание. Вы можете разрешить ситуацию, создав объект Building, если таковой отсутствует в вашей модели, и перетащив в него объекты Building Storey в древовидной структуре: The following BIM objects have been found to not be included in any Building Storey (BuildingParts with their IFC role set as "Building Storey"). You can resolve the situation by creating a Building Storey object, if none is present in your model, and drag and drop these objects into it in the tree view: - The following BIM objects have been found to not be included in any Building Storey (BuildingParts with their IFC role set as "Building Storey"). You can resolve the situation by creating a Building Storey object, if none is present in your model, and drag and drop these objects into it in the tree view: + Следующие объекты BIM не были включены ни в один Building Storey (BuildingParts с их ролью IFC, установленной как "Building Storey"). Вы можете разрешить ситуацию, создав объект Building Storey, если таковой отсутствует в вашей модели, и перетащив эти объекты в него в древовидной структуре: The following BIM objects have the "Undefined" type: - The following BIM objects have the "Undefined" type: + Следующие BIM объекты имеют тип Undefined: The following objects are not BIM objects: - The following objects are not BIM objects: + Следующие объекты не являются объектами BIM: The version of Ifcopenshell installed on your system could not be parsed - The version of Ifcopenshell installed on your system could not be parsed + Не удалось проанализировать версию Ifcopenshell, установленную в вашей системе The version of Ifcopenshell installed on your system will produce files with this schema version: - The version of Ifcopenshell installed on your system will produce files with this schema version: + Версия Ifcopenshell, установленная в вашей системе, создаст файлы со следующей версией схемы: You can turn these objects into BIM objects by using the Modify -> Add Component tool. - You can turn these objects into BIM objects by using the Modify -> Add Component tool. + Эти объекты можно превратить в BIM объекты с помощью инструмента Модифицировать -> Добавить компонент. The following BIM objects have an invalid or non-solid geometry: - The following BIM objects have an invalid or non-solid geometry: + Следующие объекты BIM имеют недействительную или нетвёрдотельную геометрию: The objects below have Length, Width or Height properties, but these properties won't be explicitly exported to IFC. This is not necessarily an issue, unless you specifically want these quantities to be exported: - The objects below have Length, Width or Height properties, but these properties won't be explicitly exported to IFC. This is not necessarily an issue, unless you specifically want these quantities to be exported: + Объекты ниже имеют свойства Длина, Ширина или Высота, но эти свойства не будут явно экспортированы в IFC. Это не обязательно проблема, если только вы специально не хотите, чтобы эти величины были экспортированы: To enable exporting of these quantities, use the IFC quantities manager tool located under menu Manage -> Manage IFC Quantities... - To enable exporting of these quantities, use the IFC quantities manager tool located under menu Manage -> Manage IFC Quantities... + Для экспорта этих количеств используйте инструмент управления количествами IFC, расположенный в меню Управление - Управление IFC количествами... The objects below have a defined IFC type but do not have the associated common property set: - The objects below have a defined IFC type but do not have the associated common property set: + Объекты, указанные ниже, имеют определенный тип IFC, но не имеют соответствующего набора общих свойств: To add common property sets to these objects, use the IFC properties manager tool located under menu Manage -> Manage IFC Properties... - To add common property sets to these objects, use the IFC properties manager tool located under menu Manage -> Manage IFC Properties... + Для добавления общих наборов свойств этим объектам используйте инструмент управления свойствами IFC, расположенный в меню Управление - Управление IFC свойствами... The objects below have a common property set but that property set doesn't contain all the needed properties: - The objects below have a common property set but that property set doesn't contain all the needed properties: + Объекты ниже имеют общий набор свойств, но этот набор свойств не содержит всех необходимых свойств: Verify which properties a certain property set must contain on %1 - Verify which properties a certain property set must contain on %1 + Проверьте, какие свойства должен содержать определенный набор свойств на %1 To fix the property sets of these objects, use the IFC properties manager tool located under menu Manage -> Manage IFC Properties... - To fix the property sets of these objects, use the IFC properties manager tool located under menu Manage -> Manage IFC Properties... + Для исправления наборов свойств этих объектов используйте инструмент управления свойствами IFC, расположенный в меню Управление - Управление IFC свойствами... The following BIM objects have no material attributed: - The following BIM objects have no material attributed: + Следующие BIM объекты не имеют атрибутов материала: The following BIM objects have no defined standard code: - The following BIM objects have no defined standard code: + Следующие BIM объекты не имеют определенного стандартного кода: The following BIM objects are not extrusions: - The following BIM objects are not extrusions: + Следующие объекты BIM не являются выдавленными: The following BIM objects are not standard cases: - The following BIM objects are not standard cases: + Следующие BIM объекты не являются стандартными случаями: The objects below have lines smaller than 1/32 inch or 0.79 mm, which is the smallest line size that Revit accepts. These objects will be discarded when imported into Revit: - The objects below have lines smaller than 1/32 inch or 0.79 mm, which is the smallest line size that Revit accepts. These objects will be discarded when imported into Revit: + Объекты ниже имеют линии менее 1/32 дюйма или 0,79 мм, что является наименьшим размером линии, который принимает Revit. Эти объекты будут удалены при импорте в Revit: An additional object, called "TinyLinesResult" has been added to this model, and selected. It contains all the tiny lines found, so you can inspect them and fix the needed objects. Be sure to delete the TinyLinesResult object when you are done! - An additional object, called "TinyLinesResult" has been added to this model, and selected. It contains all the tiny lines found, so you can inspect them and fix the needed objects. Be sure to delete the TinyLinesResult object when you are done! + Дополнительный объект, названный TinyLinesResult был добавлен в эту модель и выбран. Он содержит все найденные крошечные линии, поэтому Вы можете проверить их и исправить необходимые объекты. Не забудьте удалить объект TinyLinesResult, когда закончите! Tip: The results are best viewed in Wireframe mode (menu Views -> Draw Style -> Wireframe) - Tip: The results are best viewed in Wireframe mode (menu Views -> Draw Style -> Wireframe) + Подсказка: Результаты лучше всего просматривать в режиме Wireframe (меню Вид - Стиль представления - Каркас) @@ -9328,7 +9324,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet User preset... - User preset... + Пользовательский пресет... @@ -9348,62 +9344,62 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Template successfully loaded into current document - Template successfully loaded into current document + Шаблон успешно загружен в текущий документ Error: Please select exactly one base face - Error: Please select exactly one base face + Ошибка: Выберите ровно одну базовую грань You must choose a group object before using this command - You must choose a group object before using this command + Перед использованием этой команды необходимо выбрать групповой объект Some additional workbenches are not installed, that extend BIM functionality: - Some additional workbenches are not installed, that extend BIM functionality: + Некоторые дополнительные верстаки, которые расширяют возможности BIM, не установлены: You can install them from menu Tools -> Addon manager. - You can install them from menu Tools -> Addon manager. + Вы можете установить их из меню Инструменты - Менеджер дополнений. Unit system updated for active document - Unit system updated for active document + Система единиц обновлена ​​для активного документа Unit system updated for all opened documents - Unit system updated for all opened documents + Система единиц измерения обновлена ​​для всех открытых документов - + IfcOpenShell not found - IfcOpenShell not found + IfcOpenShell не найден - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. - IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. + IfcOpenShell необходим для импорта и экспорта файлов IFC. Похоже, он отсутствует в вашей системе. Хотите загрузить и установить его сейчас? Он будет установлен в каталоге макросов FreeCAD. Select a planar object - Select a planar object + Выбрать плоский объект Slab - Slab + Плита Select page template - Select page template + Выберите шаблон страницы @@ -9413,12 +9409,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Trash - Trash + Корзина Unable to access the tutorial. Verify that you are online (This is needed only once). - Unable to access the tutorial. Verify that you are online (This is needed only once). + Не удалось получить доступ к учебнику. Убедитесь, что вы находитесь в сети (это необходимо только один раз). @@ -9428,32 +9424,32 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet BIM Tutorial - step - BIM Tutorial - step + Обучение BIM - шаг Draft Clones are not supported yet! - Draft Clones are not supported yet! + Клонирование черновиков пока не поддерживается! The selected object is not a clone - The selected object is not a clone + Выделенный объект не является клоном Please select exactly one object - Please select exactly one object + Пожалуйста, выберите только один объект Add level - Add level + Добавить уровень Add proxy - Add proxy + Добавить прокси @@ -9468,7 +9464,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Save view position - Save view position + Сохранить позицию просмотра @@ -9478,27 +9474,27 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a new Working Plane Proxy - Creates a new Working Plane Proxy + Создает новый прокси-сервер рабочей плоскости Deletes the selected item - Deletes the selected item + Удалить выбранные элементы Toggles selected items on/off - Toggles selected items on/off + Включить/выключить выбранные элементы Turns all items off except the selected ones - Turns all items off except the selected ones + Выключает все элементы, кроме выбранных Saves the current camera position to the selected items - Saves the current camera position to the selected items + Сохранить текущее положение камеры в выбранных элементах @@ -9508,12 +9504,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - 2D Views + 2D-виды - + Sheets - Sheets + "Листы" @@ -9523,7 +9519,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet The active document is already an IFC document - The active document is already an IFC document + Активный документ уже является документом IFC @@ -9533,67 +9529,67 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet IfcOpenShell update - IfcOpenShell update + Обновление IfcOpenShell The update is installed in your FreeCAD's user directory and won't affect the rest of your system. - The update is installed in your FreeCAD's user directory and won't affect the rest of your system. + Обновление установлено в пользовательском каталоге FreeCAD и не повлияет на остальную систему. An update to your installed IfcOpenShell version is available - An update to your installed IfcOpenShell version is available + Доступно обновление вашей версии IfcOpenShell Would you like to install that update? - Would you like to install that update? + Вы хотите установить это обновление? Your version of IfcOpenShell is already up to date - Your version of IfcOpenShell is already up to date + Ваша версия IfcOpenShell уже актуальна No existing IfcOpenShell installation found on this system. - No existing IfcOpenShell installation found on this system. + В этой системе не найдено ни одной установки IfcOpenShell. Would you like to install the most recent version? - Would you like to install the most recent version? + Вы хотите установить последнюю версию? IfcOpenShell is not installed, and FreeCAD failed to find a suitable version to install. You can still install IfcOpenShell manually, visit https://wiki.freecad.org/IfcOpenShell for further instructions. - IfcOpenShell is not installed, and FreeCAD failed to find a suitable version to install. You can still install IfcOpenShell manually, visit https://wiki.freecad.org/IfcOpenShell for further instructions. + IfcOpenShell не установлен, и FreeCAD не удалось найти подходящую версию для установки. Вы все еще можете установить IfcOpenShell вручную, посетите https://wiki.freecad.org/IfcOpenShell для получения дальнейших инструкций. IfcOpenShell update successfully installed. - IfcOpenShell update successfully installed. + Обновление IfcOpenShell успешно установлено. Unable to run pip. Please ensure pip is installed on your system. - Unable to run pip. Please ensure pip is installed on your system. + Не удается запустить pip. Убедитесь, что pip установлен в системе. Strict IFC mode is ON (all objects are IFC) - Strict IFC mode is ON (all objects are IFC) + Строгий режим IFC включен (все объекты IFC) Strict IFC mode is OFF (IFC and non-IFC objects allowed) - Strict IFC mode is OFF (IFC and non-IFC objects allowed) + Строгий режим IFC - выключен (разрешенны объекты IFC и неIFC) No section view or Draft objects selected, or no page selected, or no page found in document - No section view or Draft objects selected, or no page selected, or no page found in document + НетНе выбрано ни представление раздела, ни объекты черновика, или не выбрана страница, или в документе не найдено ни одной страницы @@ -9623,7 +9619,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Toggles the background of the 3D view between simple and gradient - Toggles the background of the 3D view between simple and gradient + Переключает фон 3D обзора между простым и градиентом @@ -9636,7 +9632,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a beam between two points - Creates a beam between two points + Создает луч между двумя точками @@ -9649,7 +9645,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Graphically creates a generic box in the current document - Graphically creates a generic box in the current document + Графически создает общую коробку в текущем документе @@ -9675,7 +9671,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a Building Part object that represents a level. - Creates a Building Part object that represents a level. + Создает объект «Часть здания», представляющий уровень. @@ -9683,12 +9679,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage classification... - Manage classification... + Управление классификацией... Manage how the different materials of this documents use classification systems - Manage how the different materials of this documents use classification systems + Управление различными материалами этих документов используя системы классификации @@ -9701,7 +9697,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Clones selected objects to another location - Clones selected objects to another location + Копировать выбранные объекты в другое расположение @@ -9714,7 +9710,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a column at a specified location - Creates a column at a specified location + Создает колонну в указанном месте @@ -9763,7 +9759,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Removes this object from its parent group - Removes this object from its parent group + Удаляет этот объект из его родительской группы @@ -9776,7 +9772,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Copies selected objects to another location - Copies selected objects to another location + Копировать выбранные объекты в другое расположение @@ -9789,7 +9785,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Make a difference between two shapes - Make a difference between two shapes + Сделать различие между двумя фигурами @@ -9797,12 +9793,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet IFC Diff - IFC Diff + Различия IFC Shows the difference between two IFC-based documents - Shows the difference between two IFC-based documents + Показывает разницу между двумя документами на основе IFC @@ -9810,12 +9806,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Aligned dimension - Aligned dimension + Выровненный размер Create an aligned dimension - Create an aligned dimension + Создать выровненное измерение @@ -9823,7 +9819,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Horizontal dimension - Horizontal dimension + Горизонтальные оси @@ -9869,7 +9865,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Deletes from the trash bin all objects that are not used by any other - Deletes from the trash bin all objects that are not used by any other + Удаляет из корзины все объекты, которые не используются другими @@ -9877,12 +9873,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet BIM Examples - BIM Examples + Примеры BIM Download examples of BIM files made with FreeCAD - Download examples of BIM files made with FreeCAD + Скачать примеры BIM файлов, созданных с FreeCAD @@ -9895,7 +9891,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Extrudes a selected 2D shape - Extrudes a selected 2D shape + Выдавливает выбранную 2D-фигуру @@ -9903,7 +9899,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Select a section, post and path in exactly this order to build a fence. - Select a section, post and path in exactly this order to build a fence. + Выберите секцию, пост и путь в точно таком порядке, чтобы построить забор. @@ -9924,12 +9920,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Glue - Glue + Клей Joins selected shapes into one non-parametric shape - Joins selected shapes into one non-parametric shape + Объединяет выбранные фигуры в одну непараметрическую форму @@ -9937,12 +9933,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet BIM Help - BIM Help + Помощь BIM Opens the BIM help page on the FreeCAD documentation website - Opens the BIM help page on the FreeCAD documentation website + Открывает страницу справки BIM на сайте документации FreeCAD @@ -9955,7 +9951,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage how the different elements of of your BIM project will be exported to IFC - Manage how the different elements of of your BIM project will be exported to IFC + Управление тем, как различные элементы Вашего BIM проекта будут экспортированы в IFC @@ -9981,7 +9977,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage the different IFC properties of your BIM objects - Manage the different IFC properties of your BIM objects + Управление различными свойствами IFC Ваших BIM объектов @@ -9989,12 +9985,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage IFC quantities... - Manage IFC quantities... + Управление количествами IFC... Manage how the quantities of different elements of of your BIM project will be exported to IFC - Manage how the quantities of different elements of of your BIM project will be exported to IFC + Управление количеством элементов Вашего BIM проекта, которые будут экспортированы в IFC @@ -10007,7 +10003,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a plane from an image - Creates a plane from an image + Создает плоскость из изображения @@ -10020,7 +10016,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Set/modify the different layers of your BIM project - Set/modify the different layers of your BIM project + Настроить/изменить различные уровни вашего проекта BIM @@ -10033,7 +10029,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a polyline with an arrow at its endpoint - Creates a polyline with an arrow at its endpoint + Создает полилинию со стрелкой в конечной точке @@ -10080,7 +10076,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Switch - Nudge Switch + Подтолкнуть в другую сторону @@ -10088,7 +10084,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Up - Nudge Up + Подтолкнуть вверх @@ -10096,7 +10092,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Down - Nudge Down + Толкнуть Вниз @@ -10104,7 +10100,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Left - Nudge Left + Толкнуть Налево @@ -10112,7 +10108,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Right - Nudge Right + Толкнуть Направо @@ -10120,7 +10116,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Extend - Nudge Extend + Толкнуть Наружу @@ -10128,7 +10124,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Shrink - Nudge Shrink + Толкнуть Нажатием @@ -10136,7 +10132,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Rotate Left - Nudge Rotate Left + Толкнуть Вращением Влево @@ -10144,7 +10140,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Nudge Rotate Right - Nudge Rotate Right + Толкнуть Вращением Вправо @@ -10165,12 +10161,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Preflight checks... - Preflight checks... + Предварительные проверки... Checks several characteristics of this model before exporting to IFC - Checks several characteristics of this model before exporting to IFC + Проверяет несколько характеристик этой модели перед экспортом в IFC @@ -10183,7 +10179,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Create an empty NativeIFC project - Create an empty NativeIFC project + Создать пустой проект NativeIFC @@ -10191,12 +10187,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage project... - Manage project... + Управление проектом... Setup your BIM project - Setup your BIM project + Настройте ваш проект BIM @@ -10204,12 +10200,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Reextrude - Reextrude + Повторная экструзия Recreates an extruded Structure from a selected face - Recreates an extruded Structure from a selected face + Восстанавливает экструзию из выбранной поверхности @@ -10217,12 +10213,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Reorder children - Reorder children + Упорядочить потомков Reorder children of selected object - Reorder children of selected object + Изменить порядок дочерних объектов выбранного объекта @@ -10230,12 +10226,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Reset colors - Reset colors + Сбросить цвета Resets the colors of this object from its cloned original - Resets the colors of this object from its cloned original + Сбросить цвета этого объекта из его клонированного оригинала @@ -10243,12 +10239,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Rewire - Rewire + Соединить заново Recreates wires from selected objects - Recreates wires from selected objects + Воссоздать ломаную линию из выбранных объектов @@ -10256,12 +10252,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet BIM Setup... - BIM Setup... + Настройка BIM... Set some common FreeCAD preferences for BIM workflow - Set some common FreeCAD preferences for BIM workflow + Установить общие настройки FreeCAD для рабочего процесса BIM @@ -10269,7 +10265,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Shape-based view - Shape-based view + Вид на основе формы @@ -10298,12 +10294,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Sketch - Sketch + Эскиз Creates a new sketch in the current working plane - Creates a new sketch in the current working plane + Создать новый эскиз в текущей рабочей плоскости @@ -10311,12 +10307,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Slab - Slab + Плита Creates a slab from a planar shape - Creates a slab from a planar shape + Создать перекрытие (плиту) из плоской формы @@ -10329,7 +10325,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a new TechDraw page from a template - Creates a new TechDraw page from a template + Создает новую страницу TechDraw из шаблона @@ -10342,7 +10338,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Creates a TechDraw view from a section plane or 2D objects - Creates a TechDraw view from a section plane or 2D objects + Создает представление TechDraw из плоскости сечения или 2D объектов @@ -10355,7 +10351,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Create a text in the current 3D view or TechDraw page - Create a text in the current 3D view or TechDraw page + Создать текст в текущем 3D-представлении или странице TechDraw @@ -10363,12 +10359,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Toggle bottom panels - Toggle bottom panels + Переключить нижние панели Toggle bottom dock panels on/off - Toggle bottom dock panels on/off + Включить/выключить нижние панели док-станции @@ -10394,7 +10390,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Starts or continues the BIM in-game tutorial - Starts or continues the BIM in-game tutorial + Запускает или продолжает внутриигровое обучение BIM @@ -10407,7 +10403,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Makes a selected clone object independent from its original - Makes a selected clone object independent from its original + Делает выбранный объект клонирования независимым от его оригинала @@ -10433,7 +10429,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Show the BIM workbench welcome screen - Show the BIM workbench welcome screen + Показать экран приветствия верстака BIM @@ -10441,12 +10437,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Manage doors and windows... - Manage doors and windows... + Управление дверями и окнами... Manage the different doors and windows of your BIM project - Manage the different doors and windows of your BIM project + Управлять различными дверьми и окнами проекта BIM @@ -10480,12 +10476,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Working Plane Top - Working Plane Top + Рабочая плоскость вид сверху Set the working plane to Top - Set the working plane to Top + Установить рабочую плоскость на вид сверху @@ -10493,12 +10489,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Working Plane View - Working Plane View + Вид рабочей плоскости Aligns the view on the current item in BIM Views window or on the current working plane - Aligns the view on the current item in BIM Views window or on the current working plane + Выравнивает вид текущего элемента в окне Виды BIM или на текущей рабочей плоскости @@ -10506,12 +10502,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Shows the current unsaved changes in the IFC file - Shows the current unsaved changes in the IFC file + Показывает текущие несохраненные изменения в файле IFC IFC Diff... - IFC Diff... + Различия IFC... @@ -10519,12 +10515,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Expands the children of the selected objects or document - Expands the children of the selected objects or document + Расширяет дочерние объекты или документ IFC Expand - IFC Expand + МФК (IFC) Расширить @@ -10532,7 +10528,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Converts the active document to an IFC document - Converts the active document to an IFC document + Преобразует активный документ в документ IFC @@ -10545,7 +10541,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Converts the current selection to an IFC project - Converts the current selection to an IFC project + Преобразует текущую выборку в проект IFC @@ -10584,12 +10580,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Shows a dialog to update IfcOpenShell - Shows a dialog to update IfcOpenShell + Показывает диалог для обновления IfcOpenShell IfcOpenShell update - IfcOpenShell update + Обновление IfcOpenShell @@ -10597,7 +10593,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet IFC diff - IFC diff + Разница IFC @@ -10605,17 +10601,17 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet BIM Setup - BIM Setup + Настройка BIM This dialog will help you to set FreeCAD up for efficient BIM workflow by setting a couple of typical FreeCAD options. This dialog can be accessed again anytime from menu Manage -> Setup, and more options are available under menu Edit -> Preferences. - This dialog will help you to set FreeCAD up for efficient BIM workflow by setting a couple of typical FreeCAD options. This dialog can be accessed again anytime from menu Manage -> Setup, and more options are available under menu Edit -> Preferences. + Это диалоговое окно поможет вам настроить FreeCAD для эффективной работы BIM, установив пару типичных параметров FreeCAD. Это диалоговое окно можно снова открыть в любое время из меню Управление - Настройка и дополнительные параметры доступны в меню Правка - Настройки. Hover your mouse on each setting for additional info. - Hover your mouse on each setting for additional info. + Наведите курсор на любой пункт, чтобы получить дополнительную информацию. @@ -10637,7 +10633,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 0 - 0 + 0 @@ -10667,17 +10663,17 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet <html><head/><body><p>Your name (optional). You can also add your email like this: John Doe &lt;john@doe.com&gt;. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Author name</span></p></body></html> - <html><head/><body><p>Your name (optional). You can also add your email like this: John Doe &lt;john@doe.com&gt;. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Author name</span></p></body></html> + <html><head/><body><p>Ваше имя (необязательно). Вы также можете добавить свой адрес электронной почты следующим образом: John Doe &lt;john@doe.com&gt;. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Документ &gt; Имя автора</span></p></body></html> Number of backup files - Number of backup files + Количество резервных копий <html><head/><body><p>Default line width. Location in preferences: <span style=" font-weight:600;">Display &gt; Part colors &gt; Default line width, Draft &gt; Visual settings &gt; Default line width</span></p></body></html> - <html><head/><body><p>Default line width. Location in preferences: <span style=" font-weight:600;">Display &gt; Part colors &gt; Default line width, Draft &gt; Visual settings &gt; Default line width</span></p></body></html> + <html><head/><body><p>Толщина линии по умолчанию. Расположение в настройках: <span style=" font-weight:600;">Отображение &gt; Цвета деталей &gt; Ширина линии по умолчанию, Черновик &gt; Визуальные настройки &gt; Ширина линии по умолчанию</span></p></body></html> @@ -10687,12 +10683,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Default font - Default font + Шрифт по умолчанию Auto (continuously adapts to the current view) - Auto (continuously adapts to the current view) + Автоматический (постоянно подстраивается под текущий вид) @@ -10712,32 +10708,32 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Default grid position - Default grid position + Положение сетки по умолчанию <html><head/><body><p>The number of decimals you wish to see used in the interface controls and measurements. Location in preferences: <span style=" font-weight:600;">General &gt; Units &gt; Number of decimals</span></p></body></html> - <html><head/><body><p>The number of decimals you wish to see used in the interface controls and measurements. Location in preferences: <span style=" font-weight:600;">General &gt; Units &gt; Number of decimals</span></p></body></html> + <html><head/><body><p>Количество знаков после запятой, которое вы хотите видеть в элементах управления и измерениях интерфейса. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Единицы &gt; Количество знаков после запятой</span></p></body></html> <html><head/><body><p>Default font. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Font family, TechDraw &gt; TechDraw 1 &gt; Label Font</span></p></body></html> - <html><head/><body><p>Default font. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Font family, TechDraw &gt; TechDraw 1 &gt; Label Font</span></p></body></html> + <html><head/><body><p>Шрифт по умолчанию. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Тексты и размеры &gt; Семейство шрифтов, TechDraw &gt; TechDraw 1 &gt; Шрифт этикетки</span></p></body></html> <html><head/><body><p>Default dimension arrow size. Location in preferences: <span style=" font-weight:600;">TechDraw &gt; TechDraw 2 &gt; Arrow size, Draft &gt; Texts and dimensions &gt; Arrow size</span></p></body></html> - <html><head/><body><p>Default dimension arrow size. Location in preferences: <span style=" font-weight:600;">TechDraw &gt; TechDraw 2 &gt; Arrow size, Draft &gt; Texts and dimensions &gt; Arrow size</span></p></body></html> + <html><head/><body><p>Размер стрелки размера по умолчанию. Расположение в настройках: <span style=" font-weight:600;">TechDraw &gt; TechDraw 2 &gt; Размер стрелки, черновик &gt; Тексты и размеры &gt; Размер стрелки</span></p></body></html> <html><head/><body><p>Default dimension style. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Arrow style, TechDraw &gt; TechDraw 2 &gt; Arrow Style</span></p></body></html> - <html><head/><body><p>Default dimension style. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Arrow style, TechDraw &gt; TechDraw 2 &gt; Arrow Style</span></p></body></html> + <html><head/><body><p>Стиль размера по умолчанию. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Тексты и размеры &gt; Стиль стрелки, TechDraw &gt; TechDraw 2 &gt; Стиль стрелки</span></p></body></html> dot - dot + точка @@ -10747,47 +10743,47 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet slash - slash + слэш thick slash - thick slash + толстый слэш Default author for new files - Default author for new files + Автор по умолчанию для новых файлов <html><head/><body><p>How many small squares between each main line of the grid. Location in preferences: <span style=" font-weight:600;">Draft &gt; Grid and snapping &gt; Main line every</span></p></body></html> - <html><head/><body><p>How many small squares between each main line of the grid. Location in preferences: <span style=" font-weight:600;">Draft &gt; Grid and snapping &gt; Main line every</span></p></body></html> + <html><head/><body><p>Сколько маленьких квадратов между каждой основной линией сетки. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Сетка и привязка &gt; Основная линия каждые</span></p></body></html> <html><head/><body><p>The unit you prefer to work with, that will be used everywhere: in dialogs, measurements and dimensions. However, you can enter any other unit anytime. For example, if you configured FreeCAD to work in millimeters, you can still enter measures as &quot;10m&quot; or &quot;5ft&quot;. You can also change the default unit system anytime without causing any modification to your model. Location in preferences: <span style=" font-weight:600;">General &gt; Default unit system</span></p></body></html> - <html><head/><body><p>The unit you prefer to work with, that will be used everywhere: in dialogs, measurements and dimensions. However, you can enter any other unit anytime. For example, if you configured FreeCAD to work in millimeters, you can still enter measures as &quot;10m&quot; or &quot;5ft&quot;. You can also change the default unit system anytime without causing any modification to your model. Location in preferences: <span style=" font-weight:600;">General &gt; Default unit system</span></p></body></html> + <html><head/><body><p>Единица измерения, с которой вы предпочитаете работать, которая будет использоваться везде: в диалогах, измерениях и размерах. Однако вы можете ввести любую другую единицу измерения в любое время. Например, если вы настроили FreeCAD для работы в миллиметрах, вы все равно можете вводить меры как «10 м» или «5 футов». Вы также можете изменить систему единиц измерения по умолчанию в любое время, не внося никаких изменений в вашу модель. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Система единиц измерения по умолчанию</span></p></body></html> square(s) - square(s) + квадрат(ы) <html><head/><body><p>The number of backup files to keep when saving a file. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Maximum number of backup files</span></p></body></html> - <html><head/><body><p>The number of backup files to keep when saving a file. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Maximum number of backup files</span></p></body></html> + <html><head/><body><p>Количество файлов резервных копий, которые нужно сохранить при сохранении файла. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Документ &gt; Максимальное количество файлов резервных копий</span></p></body></html> <html><head/><body><p>Optional license you wish to use for new files. Keep &quot;All rights reserved&quot; if you don't wish to use any particular license. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Default license</span></p></body></html> - <html><head/><body><p>Optional license you wish to use for new files. Keep &quot;All rights reserved&quot; if you don't wish to use any particular license. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Default license</span></p></body></html> + <html><head/><body><p>Дополнительная лицензия, которую вы хотите использовать для новых файлов. Оставьте «Все права защищены», если вы не хотите использовать какую-либо определенную лицензию. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Документ &gt; Лицензия по умолчанию</span></p></body></html> All rights reserved (no specific license) - All rights reserved (no specific license) + Все права защищены (нет конкретной лицензии) @@ -10827,17 +10823,17 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet <html><head/><body><p>This is the size of the smallest square of the grid. Location in preferences: <span style=" font-weight:600;">Draft &gt; Grid and snapping &gt; Grid spacing</span></p></body></html> - <html><head/><body><p>This is the size of the smallest square of the grid. Location in preferences: <span style=" font-weight:600;">Draft &gt; Grid and snapping &gt; Grid spacing</span></p></body></html> + <html><head/><body><p>Это размер наименьшего квадрата сетки. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Сетка и привязка &gt; Интервал сетки</span></p></body></html> <html><head/><body><p>The default color of construction geometry. Location in preferences: <span style=" font-weight:600;">Draft &gt; General &gt; Construction geometry color</span></p></body></html> - <html><head/><body><p>The default color of construction geometry. Location in preferences: <span style=" font-weight:600;">Draft &gt; General &gt; Construction geometry color</span></p></body></html> + <html><head/><body><p>Цвет конструктивной геометрии по умолчанию. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Общие &gt; Цвет конструктивной геометрии</span></p></body></html> <html><head/><body><p>The default color for helper objects such as grids and axes. Location in preferences: <span style=" font-weight:600;">BIM &gt; Defaults &gt; Helpers</span></p></body></html> - <html><head/><body><p>The default color for helper objects such as grids and axes. Location in preferences: <span style=" font-weight:600;">BIM &gt; Defaults &gt; Helpers</span></p></body></html> + <html><head/><body><p>Цвет по умолчанию для вспомогательных объектов, таких как сетки и оси. Расположение в настройках: <span style=" font-weight:600;">BIM &gt; Defaults &gt; Helpers</span></p></body></html> @@ -10847,7 +10843,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet <html><head/><body><p>The default size of texts and dimension texts. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Font size, TechDraw &gt; TechDraw 2 &gt; Font size</span></p></body></html> - <html><head/><body><p>The default size of texts and dimension texts. Location in preferences: <span style=" font-weight:600;">Draft &gt; Texts and dimensions &gt; Font size, TechDraw &gt; TechDraw 2 &gt; Font size</span></p></body></html> + <html><head/><body><p>Размер текстов и размерных текстов по умолчанию. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Тексты и размеры &gt; Размер шрифта, TechDraw &gt; TechDraw 2 &gt; Размер шрифта</span></p></body></html> @@ -10857,17 +10853,17 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Missing Workbenches - Missing Workbenches + Пропущенные верстаки Fill with default values - Fill with default values + Заполнить значениями по умолчанию Choose one of the presets in this list to fill all the settings below with predetermined values. Then, adjust to your likings - Choose one of the presets in this list to fill all the settings below with predetermined values. Then, adjust to your likings + Выберите один из пресетов в этом списке, чтобы заполнить все настройки ниже установленными значениями. Затем настройте по своему вкусу @@ -10892,22 +10888,22 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Default camera altitude - Default camera altitude + Высота камеры по умолчанию This is the altitude of the camera when you create a blank file. Good values are between 5 (view a few centimeters wide) and 5000 (view a few meters wide) - This is the altitude of the camera when you create a blank file. Good values are between 5 (view a few centimeters wide) and 5000 (view a few meters wide) + Это высота камеры при создании пустого файла. Хорошие значения от 5 (вид на несколько сантиметров в ширину) до 5000 (вид на несколько метров в ширину) <html><head/><body><p>Check this to make FreeCAD start with a new blank document. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Create new document at startup</span></p></body></html> - <html><head/><body><p>Check this to make FreeCAD start with a new blank document. Location in preferences: <span style=" font-weight:600;">General &gt; Document &gt; Create new document at startup</span></p></body></html> + <html><head/><body><p>Отметьте этот параметр, чтобы FreeCAD запускался с новым пустым документом. Расположение в настройках: <span style=" font-weight:600;">Общие &gt; Документ &gt; Создать новый документ при запуске</span></p></body></html> <html><head/><body><p>The default color of faces in the 3D view. Location in preferences: <span style=" font-weight:600;">Display &gt; Part Color &gt; Default shape color</span></p></body></html> - <html><head/><body><p>The default color of faces in the 3D view. Location in preferences: <span style=" font-weight:600;">Display &gt; Part Color &gt; Default shape color</span></p></body></html> + <html><head/><body><p>Цвет граней по умолчанию в 3D-виде. Расположение в настройках: <span style=" font-weight:600;">Отображение &gt; Цвет детали &gt; Цвет формы по умолчанию</span></p></body></html> @@ -10932,37 +10928,37 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet <html><head/><body><p>The default color of lines in the 3D view. Location in preferences: <span style=" font-weight:600;">Display &gt; Part Colors &gt; Default line color, Draft &gt; Visual settings &gt; Default line color</span></p></body></html> - <html><head/><body><p>The default color of lines in the 3D view. Location in preferences: <span style=" font-weight:600;">Display &gt; Part Colors &gt; Default line color, Draft &gt; Visual settings &gt; Default line color</span></p></body></html> + <html><head/><body><p>Цвет линий по умолчанию в 3D-виде. Расположение в настройках: <span style=" font-weight:600;">Отображение &gt; Цвета деталей &gt; Цвет линии по умолчанию, Черновик &gt; Визуальные настройки &gt; Цвет линии по умолчанию</span></p></body></html> Gradient top: - Gradient top: + Градиент сверху: <html><head/><body><p>The top color of the 3D view background gradient. Location in preferences: <span style=" font-weight:600;">Display &gt; Colors &gt; Color gradient</span></p></body></html> - <html><head/><body><p>The top color of the 3D view background gradient. Location in preferences: <span style=" font-weight:600;">Display &gt; Colors &gt; Color gradient</span></p></body></html> + <html><head/><body><p>Верхний цвет градиента фона 3D-вида. Расположение в настройках: <span style=" font-weight:600;">Дисплей &gt; Цвета &gt; Градиент цвета</span></p></body></html> Gradient bottom: - Gradient bottom: + Градиент снизу: <html><head/><body><p>The bottom color of the 3D view background gradient. Location in preferences: <span style=" font-weight:600;">Display &gt; Colors &gt; Color gradient</span></p></body></html> - <html><head/><body><p>The bottom color of the 3D view background gradient. Location in preferences: <span style=" font-weight:600;">Display &gt; Colors &gt; Color gradient</span></p></body></html> + <html><head/><body><p>Нижний цвет градиента фона 3D-вида. Расположение в настройках: <span style=" font-weight:600;">Отображение &gt; Цвета &gt; Градиент цвета</span></p></body></html> <html><head/><body><p>Where the grid appears at FreeCAD startup. Location in preferences: <span style=" font-weight:600;">Draft &gt; General &gt; Default working plane</span></p></body></html> - <html><head/><body><p>Where the grid appears at FreeCAD startup. Location in preferences: <span style=" font-weight:600;">Draft &gt; General &gt; Default working plane</span></p></body></html> + <html><head/><body><p>Где сетка появляется при запуске FreeCAD. Расположение в настройках: <span style=" font-weight:600;">Черновик &gt; Общие &gt; Рабочая плоскость по умолчанию</span></p></body></html> <html><head/><body><p><b>Tip</b>: You are currently using FreeCAD version %1. Consider using the <a href="https://github.com/FreeCAD/FreeCAD/releases"><span style=" text-decoration: underline; color:#0000ff;">latest development version %2</span></a>, which brings all the latest improvements to FreeCAD.</p></body></html> - <html><head/><body><p><b>Tip</b>: You are currently using FreeCAD version %1. Consider using the <a href="https://github.com/FreeCAD/FreeCAD/releases"><span style=" text-decoration: underline; color:#0000ff;">latest development version %2</span></a>, which brings all the latest improvements to FreeCAD.</p></body></html> + <html><head/><body><p><b>Совет</b>: в настоящее время вы используете FreeCAD версии %1. Рассмотрите возможность использования <a href="https://github.com/FreeCAD/FreeCAD/releases"><span style=" text-decoration: underline; color:#0000ff;">последней версии разработки %2</span></a>, которая содержит все последние улучшения FreeCAD.</p></body></html> @@ -10972,12 +10968,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet The background color when switched to simple color - The background color when switched to simple color + Цвет фона при переключении на простой цвет The color to use for texts and dimensions - The color to use for texts and dimensions + Шрифт для текстов и размеров @@ -10992,12 +10988,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet <html><head/><body><p><span style=" font-weight:600;">Tip</span>: You might also want to set the appropriate snapping modes on the Snapping toolbar. Enabling only the snap positions that you need will make drawing in FreeCAD considerably faster.</p></body></html> - <html><head/><body><p><span style=" font-weight:600;">Tip</span>: You might also want to set the appropriate snapping modes on the Snapping toolbar. Enabling only the snap positions that you need will make drawing in FreeCAD considerably faster.</p></body></html> + <html><head/><body><p><span style=" font-weight:600;">Совет</span>: Вы также можете установить соответствующие режимы привязки на панели инструментов привязки. Включение только нужных позиций привязки значительно ускорит рисование в FreeCAD.</p></body></html> <b>IfcOpenShell</b> is missing on your system. IfcOpenShell is needed to import or export IFC files to/from FreeCAD. Check <a href="https://www.freecadweb.org/wiki/Arch_IFC">this wiki page</a> to know more, or <a href="#install">download and install it</a> directly.</p> - <b>IfcOpenShell</b> is missing on your system. IfcOpenShell is needed to import or export IFC files to/from FreeCAD. Check <a href="https://www.freecadweb.org/wiki/Arch_IFC">this wiki page</a> to know more, or <a href="#install">download and install it</a> directly.</p> + <b>IfcOpenShell</b> отсутствует в вашей системе. IfcOpenShell необходим для импорта или экспорта файлов IFC в/из FreeCAD. Проверьте <a href="https://www.freecadweb.org/wiki/Arch_IFC">эту страницу вики</a>, чтобы узнать больше, или <a href="#install">загрузите и установите его</a> напрямую.</p> @@ -11005,12 +11001,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Remove Shape from BIM - Remove Shape from BIM + Удалить фигуру из BIM Removes cubic shapes from BIM components - Removes cubic shapes from BIM components + Удаляет кубические фигуры из компонентов Архитектуры @@ -11018,12 +11014,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Toggle IFC B-rep flag - Toggle IFC B-rep flag + Переключение IFC BREP-флага объекта Force an object to be exported as B-rep or not - Force an object to be exported as B-rep or not + Экспортировать как Brep-объект или нет diff --git a/src/Mod/BIM/Resources/translations/Arch_sl.qm b/src/Mod/BIM/Resources/translations/Arch_sl.qm index 7593945b7e..d1c6d45ae7 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_sl.qm and b/src/Mod/BIM/Resources/translations/Arch_sl.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_sl.ts b/src/Mod/BIM/Resources/translations/Arch_sl.ts index 0b5846870c..dc1bbd5512 100644 --- a/src/Mod/BIM/Resources/translations/Arch_sl.ts +++ b/src/Mod/BIM/Resources/translations/Arch_sl.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arhitekturni material + BIM material + BIM material @@ -3412,7 +3412,7 @@ da se pri odpiranju datoteke izbere delovne enote. - + Preset @@ -3677,7 +3677,7 @@ da se pri odpiranju datoteke izbere delovne enote. - + Reorder children alphabetically Razvrsti podrejenike po abecedi @@ -4037,7 +4037,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Ustvari okno @@ -4047,32 +4047,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Izberite ploskev na obstoječem predmetu ali izberite prednastavitev - + Window not based on sketch. Window not aligned or resized. Okno ne izhaja iz očrta. Okno ni priravnano ali prevelikosteno. - + No Width and/or Height constraint in window sketch. Window not resized. Okenski očrt nima širinskega in/ali višinskega omejila. Oknu ni spremenjena velikost. - + No window found. Cannot continue. Nobenega okna ni mogoče najti. Ni mogoče nadaljevati. - + Window options Možnosti okna - + Auto include in host object Samodejno vključi v gostiteljski predmet - + Sill height Višina okenske police @@ -4138,8 +4138,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4177,8 +4177,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Ime @@ -4192,8 +4192,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Debelina @@ -4375,8 +4375,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Združi podvojene - - + + Material Snov @@ -4387,17 +4387,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Plastovina - + New layer Nova plast - + Total thickness Skupna debelina - + depends on the object odvisen od predmeta @@ -4829,12 +4829,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Pripni preglednico - + Import CSV file Uvozi datoteko CSV - + Export CSV file Izvozi datoteko CSV @@ -4844,20 +4844,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Izvozi CSV datoteko - + Unable to recognize that file type Te vrste datoteke ni mogoče prepoznati - - + + Description Opis - - + + @@ -4865,14 +4865,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Vrednost - - + + Unit Enota - + Schedule Popis @@ -5679,7 +5679,7 @@ Ustvarjanj stavbe prekinjeno. - + A standard code (MasterFormat, OmniClass,...) Standardna koda (MasterFormat, OmniClass,...) @@ -6616,43 +6616,43 @@ Ustvarjanj stavbe prekinjeno. Če drži, bo ograja pobarvana kot izhodiščni steber in odsek. - - + + A description for this material Opis materiala - + A URL where to find information about this material Naslov spletne strani, kjer je mogoče najti podatke o tem materialu - + The transparency value of this material Vrednost prozornosti te snovi - + The color of this material Barva te snovi - + The color of this material when cut Barva tega meriala v prerezu - + The list of layer names Seznam imen plasti - + The list of layer materials Seznam materialov plasti - + The list of layer thicknesses Seznam debeline plasti @@ -8050,8 +8050,8 @@ Ustvarjanj stavbe prekinjeno. - The sizes for rows - Velikost vrstic + The sizes of rows + The sizes of rows @@ -9395,12 +9395,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell-a ni mogoče najti - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell je potreben pri uvažanju in izvažanju datotek IFC. Kaže, da ga ni na vašem sistemu. Ali ga želite sedaj prenesti in namestiti? Nameščen bo v mapo FreeCADovih makrov. @@ -9525,7 +9525,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_sr-CS.qm b/src/Mod/BIM/Resources/translations/Arch_sr-CS.qm index d6819aa30f..8abf6e733d 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_sr-CS.qm and b/src/Mod/BIM/Resources/translations/Arch_sr-CS.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_sr-CS.ts b/src/Mod/BIM/Resources/translations/Arch_sr-CS.ts index 23dc181534..99bd9afe2c 100644 --- a/src/Mod/BIM/Resources/translations/Arch_sr-CS.ts +++ b/src/Mod/BIM/Resources/translations/Arch_sr-CS.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Materijal BIM okruženja + BIM material + BIM material @@ -1717,7 +1717,7 @@ Utils -> Make IFC project <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> - <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> + <html><head/><body><p>Ovaj test služi za proveru da li su modeli, izabrani objekti i njihovi podređeni objekti u skladu sa određenim IFC standardima.</p><p><span style=" font -weight:600;">Važno</span>: Neuspešni testovi neće sprečiti izvoz IFC datoteka, niti garantuju da testirane IFC datoteke ispunjavaju neke specifične zahteve kvaliteta ili standarda. Oni su tu samo da omoguće procenu datoteke. Na tebi je da izabereš koja je stavka važna, a koja ne. Lebdenjem miša iznad svakog opisa pojaviće se više informacija.</p><p>Nakon pokretanja testa, klikom na odgovarajuće dugme na raspolaganju će ti biti više informacija za rešavanje problema.</p><p> <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">Zvanični IFC veb-sajt</span></a> sadrži mnogo korisnih informacija o IFC standardima.</p></body></html> @@ -2774,7 +2774,7 @@ ako dođe do grešaka prilikom rada u režimu sa više jezgara. One compound per floor - One compound per floor + Jedan sastavljeni objekat po spratu @@ -2789,7 +2789,7 @@ ako dođe do grešaka prilikom rada u režimu sa više jezgara. One compound for all - One compound for all + Jedan sastavljeni objekat za sve @@ -2898,13 +2898,13 @@ oni će se tretirati kao jedan materijal. Fit view during import on the imported objects. This will slow down the import, but one can watch the import. - Fit view during import on the imported objects. -This will slow down the import, but one can watch the import. + Smešta uvezene objekte u pogled tokom uvoza. +Ovo će usporiti uvoz, ali se on može pratiti. Fit view while importing - Fit view while importing + Smeštaj u pogled tokom uvoza @@ -2985,7 +2985,7 @@ Ako koristiš Netgen, uverite se da je dostupan. Builtin and Mefisto mesher options - Builtin and Mefisto mesher options + Opcije ugrađenog i Mefisto generatora mreže @@ -3413,7 +3413,7 @@ jedinicama treba raditi prilikom otvaranja datoteke. - + Preset @@ -3678,7 +3678,7 @@ jedinicama treba raditi prilikom otvaranja datoteke. - + Reorder children alphabetically Preuredi podređene po abecednom redu @@ -4038,7 +4038,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Napravi prozor @@ -4048,32 +4048,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. Nije pronađen nijedan prozor. Nije moguće nastaviti. - + Window options Parametri prozora - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4139,8 +4139,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4178,8 +4178,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Ime @@ -4193,8 +4193,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Debljina @@ -4376,8 +4376,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Objedini duplikate - - + + Material Materijal @@ -4388,17 +4388,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Ukupna debljina - + depends on the object depends on the object @@ -4830,12 +4830,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Priloži tabelu - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4845,20 +4845,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Opis - - + + @@ -4866,14 +4866,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Vrednost - - + + Unit Merna jedinica - + Schedule Schedule @@ -5682,7 +5682,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6619,43 +6619,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material Providnosti ovog materijala - + The color of this material Boja ovog materijala - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8053,8 +8053,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9398,12 +9398,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9528,7 +9528,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets @@ -10632,7 +10632,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Hover your mouse on each setting for additional info. - Hover your mouse on each setting for additional info. + Za dodatne informacije lebdi mišem iznad svakog podešavanja. diff --git a/src/Mod/BIM/Resources/translations/Arch_sr.qm b/src/Mod/BIM/Resources/translations/Arch_sr.qm index 1c39c3370f..23c636f810 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_sr.qm and b/src/Mod/BIM/Resources/translations/Arch_sr.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_sr.ts b/src/Mod/BIM/Resources/translations/Arch_sr.ts index 859dca732b..c72dc2654f 100644 --- a/src/Mod/BIM/Resources/translations/Arch_sr.ts +++ b/src/Mod/BIM/Resources/translations/Arch_sr.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Материјал БИМ окружења + BIM material + BIM material @@ -1717,7 +1717,7 @@ Utils -> Make IFC project <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> - <html><head/><body><p>The following test will check your model or the selected object(s) and their children for conformity to some IFC standards.</p><p><span style=" font-weight:600;">Important</span>: None of the failed tests below will prevent exporting IFC files, nor do these tests guarantee that your IFC files meets some specific quality or standard requirement. They are there to help you assess what is and what is not in your exported file. It's for you to choose which item is of importance to you or not. Hovering the mouse over each description will give you more information to decide.</p><p>After a test is run, clicking the corresponding button will give you more information to help you to fix problems.</p><p>The <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">official IFC website</span></a> contains a lot of useful information about IFC standards.</p></body></html> + <html><head/><body><p>Овај тест служи за проверу да ли су модели, изабрани објекти и њихови подређени објекти у складу са одређеним IFC стандардима.</p><p><span style=" font-weight:600;">Важно</span>: Неуспешни тестови нец́е спречити извоз IFC датотека, нити гарантују да тестиране ИФЦ датотеке испуњавају неке специфичне захтеве квалитета или стандарда. Они су ту само да омогуће процену датотеке. На теби је да изабереш која је ставка важна, а која не. Лебдењем миша изнад сваког описа појавиће се више информација.</p><p>Након покретања теста, кликом на одговарајуц́е дугме на располагању ће ти бити више информација за решавање проблема..</p><p> <a href="http://www.buildingsmart-tech.org/specifications"><span style=" text-decoration: underline; color:#0000ff;">Званични IFC веб-сајт</span></a> садржи много корисних информација о IFC стандардима.</p></body></html> @@ -2774,7 +2774,7 @@ if you start getting crashes when you set multiple cores. One compound per floor - One compound per floor + Један састављени објекат по спрату @@ -2789,7 +2789,7 @@ if you start getting crashes when you set multiple cores. One compound for all - One compound for all + Један састављени објекат за све @@ -2898,13 +2898,13 @@ they will be treated as one. Fit view during import on the imported objects. This will slow down the import, but one can watch the import. - Fit view during import on the imported objects. -This will slow down the import, but one can watch the import. + Смешта увезене објекте у поглед током увоза. +Ово ће успорити увоз, али се он може пратити. Fit view while importing - Fit view while importing + Смештај у поглед током увоза @@ -2985,7 +2985,7 @@ If using Netgen, make sure that it is available. Builtin and Mefisto mesher options - Builtin and Mefisto mesher options + Опције уграђеног и Мефисто генератора мреже @@ -3413,7 +3413,7 @@ unit to work with when opening the file. - + Preset @@ -3678,7 +3678,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Преуреди подређене по абецедном реду @@ -4038,7 +4038,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Направи прозор @@ -4048,32 +4048,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. Није пронађен ниједан прозор. Није могуће наставити. - + Window options Параметри прозора - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4139,8 +4139,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4178,8 +4178,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Име @@ -4193,8 +4193,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Дебљина @@ -4376,8 +4376,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Обједини дупликате - - + + Material Материјал @@ -4388,17 +4388,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Укупна дебљина - + depends on the object depends on the object @@ -4830,12 +4830,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Приложи табелу - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4845,20 +4845,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Опис - - + + @@ -4866,14 +4866,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Вредност - - + + Unit Мерна јединица - + Schedule Schedule @@ -5682,7 +5682,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6619,43 +6619,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material Провидности овог материјала - + The color of this material Боја овог материјала - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8053,8 +8053,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9398,12 +9398,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9528,7 +9528,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets @@ -10632,7 +10632,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Hover your mouse on each setting for additional info. - Hover your mouse on each setting for additional info. + За додатне информације лебди мишем изнад сваког подешавања. diff --git a/src/Mod/BIM/Resources/translations/Arch_sv-SE.qm b/src/Mod/BIM/Resources/translations/Arch_sv-SE.qm index 729ca4f6b9..163210edb3 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_sv-SE.qm and b/src/Mod/BIM/Resources/translations/Arch_sv-SE.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_sv-SE.ts b/src/Mod/BIM/Resources/translations/Arch_sv-SE.ts index fce2395bb1..3d61745527 100644 --- a/src/Mod/BIM/Resources/translations/Arch_sv-SE.ts +++ b/src/Mod/BIM/Resources/translations/Arch_sv-SE.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Arkitekturmaterial + BIM material + BIM material @@ -3411,7 +3411,7 @@ unit to work with when opening the file. - + Preset @@ -3676,7 +3676,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4036,7 +4036,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Skapa fönster @@ -4046,32 +4046,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Fönsteralternativ - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4137,8 +4137,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4176,8 +4176,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Namn @@ -4191,8 +4191,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Tjocklek @@ -4374,8 +4374,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Material @@ -4386,17 +4386,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer Nytt lager - + Total thickness Total tjocklek - + depends on the object beror på objektet @@ -4828,12 +4828,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Bifoga kalkylark - + Import CSV file Importera CSV-fil - + Export CSV file Exportera CSV-fil @@ -4843,20 +4843,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Exportera CSV-fil - + Unable to recognize that file type Kunde inte känna igen den filtypen - - + + Description Beskrivning - - + + @@ -4864,14 +4864,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Värde - - + + Unit Enhet - + Schedule Schema @@ -5680,7 +5680,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6617,43 +6617,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Färgen på detta material - + The color of this material when cut The color of this material when cut - + The list of layer names Listan över lagernamn - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8051,8 +8051,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9396,12 +9396,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9526,7 +9526,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_tr.qm b/src/Mod/BIM/Resources/translations/Arch_tr.qm index 5aff737d34..bb16edecc7 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_tr.qm and b/src/Mod/BIM/Resources/translations/Arch_tr.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_tr.ts b/src/Mod/BIM/Resources/translations/Arch_tr.ts index 01bced4562..128f746dcd 100644 --- a/src/Mod/BIM/Resources/translations/Arch_tr.ts +++ b/src/Mod/BIM/Resources/translations/Arch_tr.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Mimari malzeme + BIM material + BIM material @@ -3411,7 +3411,7 @@ Ancak bazı BIM uygulamaları dosya açılırken seçilen faktörü uygular. - + Preset @@ -3676,7 +3676,7 @@ Ancak bazı BIM uygulamaları dosya açılırken seçilen faktörü uygular. - + Reorder children alphabetically Reorder children alphabetically @@ -4036,7 +4036,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4046,32 +4046,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4137,8 +4137,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4176,8 +4176,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Isim @@ -4191,8 +4191,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Kalınlık @@ -4374,8 +4374,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Malzeme @@ -4386,17 +4386,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Toplam kalınlık - + depends on the object depends on the object @@ -4828,12 +4828,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4843,20 +4843,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Açıklama - - + + @@ -4864,14 +4864,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Değer - - + + Unit Birim - + Schedule Schedule @@ -5680,7 +5680,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6617,43 +6617,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material Bu malzemenin rengini - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8051,8 +8051,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9397,12 +9397,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9527,7 +9527,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_uk.qm b/src/Mod/BIM/Resources/translations/Arch_uk.qm index e0cc2b5a05..c0ada06937 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_uk.qm and b/src/Mod/BIM/Resources/translations/Arch_uk.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_uk.ts b/src/Mod/BIM/Resources/translations/Arch_uk.ts index 3889ac401d..2159fffe08 100644 --- a/src/Mod/BIM/Resources/translations/Arch_uk.ts +++ b/src/Mod/BIM/Resources/translations/Arch_uk.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Матеріали арки + BIM material + BIM material @@ -3455,7 +3455,7 @@ unit to work with when opening the file. - + Preset @@ -3720,7 +3720,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Впорядкувати дочірні об'єкти за алфавітом @@ -4080,7 +4080,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Створити вікно @@ -4090,32 +4090,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Виберіть грань на існуючому об'єкті або виберіть заготовку - + Window not based on sketch. Window not aligned or resized. Вікно не базується на ескізі. Вікно не вирівнюється або змінює розмір. - + No Width and/or Height constraint in window sketch. Window not resized. У ескізі вікна немає обмежень на ширину та/або висоту. Розмір вікна не змінено. - + No window found. Cannot continue. Вікно не знайдено. Не вдається продовжити. - + Window options Параметри вікна - + Auto include in host object Автоматично включати в об'єкт хоста - + Sill height Висота підвіконня @@ -4181,8 +4181,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4220,8 +4220,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Назва @@ -4235,8 +4235,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Товщина @@ -4418,8 +4418,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Об'єднати дублікати - - + + Material Матеріал @@ -4430,17 +4430,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Мультиматеріал - + New layer Новий шар - + Total thickness Загальна товщина - + depends on the object залежить від об'єкту @@ -4872,12 +4872,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Прикріпити таблицю - + Import CSV file Імпортувати файл CSV - + Export CSV file Експортувати файл CSV @@ -4887,20 +4887,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Експортувати Файл CSV - + Unable to recognize that file type Не вдалося розпізнати цей тип файлу - - + + Description Опис - - + + @@ -4908,14 +4908,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Значення - - + + Unit Одиниця - + Schedule Розклад @@ -5724,7 +5724,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) Стандартний код (MasterFormat, OmniClass,...) @@ -6661,43 +6661,43 @@ Building creation aborted. Якщо правда, огорожа буде пофарбована так само, як оригінальні стовпчик і секція. - - + + A description for this material Опис до цього матеріалу - + A URL where to find information about this material URL-адреса, де можна знайти інформацію про цей матеріал - + The transparency value of this material Значення прозорості цього матеріалу - + The color of this material Колір цього матеріалу - + The color of this material when cut Колір цього матеріалу в розрізі - + The list of layer names Список назв шарів - + The list of layer materials Перелік матеріалів шарів - + The list of layer thicknesses Перелік товщин шарів @@ -8095,8 +8095,8 @@ Building creation aborted. - The sizes for rows - Розміри для рядів + The sizes of rows + Розміри рядків @@ -9440,12 +9440,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Систему одиниць вимірювання оновлено для всіх відкритих документів - + IfcOpenShell not found IfcOpenShell не знайдено - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell потрібен для імпорту та експорту файлів IFC. Схоже, у вашій системі він відсутній. Бажаєте завантажити та інсталювати його зараз? Її буде інстальовано до каталогу FreeCAD з Макросами. @@ -9570,7 +9570,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_val-ES.qm b/src/Mod/BIM/Resources/translations/Arch_val-ES.qm index c5ad506d99..f0a91a809b 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_val-ES.qm and b/src/Mod/BIM/Resources/translations/Arch_val-ES.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_val-ES.ts b/src/Mod/BIM/Resources/translations/Arch_val-ES.ts index c66ab44e2c..c15a55b624 100644 --- a/src/Mod/BIM/Resources/translations/Arch_val-ES.ts +++ b/src/Mod/BIM/Resources/translations/Arch_val-ES.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - Material d'arquitectura + BIM material + BIM material @@ -3388,7 +3388,7 @@ unit to work with when opening the file. - + Preset @@ -3653,7 +3653,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4013,7 +4013,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4023,32 +4023,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4114,8 +4114,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4153,8 +4153,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name Nom @@ -4168,8 +4168,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness Gruix @@ -4351,8 +4351,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Merge duplicates - - + + Material Material @@ -4363,17 +4363,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness Grossària total - + depends on the object depends on the object @@ -4805,12 +4805,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4820,20 +4820,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description Descripció - - + + @@ -4841,14 +4841,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Valor - - + + Unit Unitat - + Schedule Schedule @@ -5657,7 +5657,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6594,43 +6594,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material El color d'aquest material - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8028,8 +8028,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9373,12 +9373,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9503,7 +9503,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_zh-CN.qm b/src/Mod/BIM/Resources/translations/Arch_zh-CN.qm index d47bca5732..a46005db52 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_zh-CN.qm and b/src/Mod/BIM/Resources/translations/Arch_zh-CN.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_zh-CN.ts b/src/Mod/BIM/Resources/translations/Arch_zh-CN.ts index b88b16fb7c..b2ef72f7e4 100644 --- a/src/Mod/BIM/Resources/translations/Arch_zh-CN.ts +++ b/src/Mod/BIM/Resources/translations/Arch_zh-CN.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - 拱形材料 + BIM material + BIM material @@ -3400,7 +3400,7 @@ unit to work with when opening the file. - + Preset @@ -3665,7 +3665,7 @@ unit to work with when opening the file. - + Reorder children alphabetically 按字母顺序排列子项目 @@ -4026,7 +4026,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window 创建新窗口 @@ -4036,32 +4036,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 在现有对象上选取一个面或选择一个预设 - + Window not based on sketch. Window not aligned or resized. 窗口不基于草图。窗口未对齐或调整大小。 - + No Width and/or Height constraint in window sketch. Window not resized. 窗口草图中没有宽度和/或高度约束。窗口未调整大小。 - + No window found. Cannot continue. 未找到窗口,不能继续。 - + Window options 窗口选项 - + Auto include in host object 自动包含在宿主对象 - + Sill height 台体高度 @@ -4127,8 +4127,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4166,8 +4166,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name 名称 @@ -4181,8 +4181,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness 厚度 @@ -4364,8 +4364,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 合并重复项 - - + + Material 材质 @@ -4376,17 +4376,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer 新建图层 - + Total thickness 总厚度 - + depends on the object depends on the object @@ -4818,12 +4818,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Attach spreadsheet - + Import CSV file 导入CSV文件 - + Export CSV file 导出CSV文件 @@ -4833,20 +4833,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 导出CSV文件 - + Unable to recognize that file type Unable to recognize that file type - - + + Description 描述 - - + + @@ -4854,14 +4854,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Unit 单位 - + Schedule Schedule @@ -5670,7 +5670,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6607,43 +6607,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material 此材料的颜色 - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8041,8 +8041,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -9386,12 +9386,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9516,7 +9516,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets diff --git a/src/Mod/BIM/Resources/translations/Arch_zh-TW.qm b/src/Mod/BIM/Resources/translations/Arch_zh-TW.qm index e19898577e..2b2dd48268 100644 Binary files a/src/Mod/BIM/Resources/translations/Arch_zh-TW.qm and b/src/Mod/BIM/Resources/translations/Arch_zh-TW.qm differ diff --git a/src/Mod/BIM/Resources/translations/Arch_zh-TW.ts b/src/Mod/BIM/Resources/translations/Arch_zh-TW.ts index c38c8cbd33..f8b22e9a09 100644 --- a/src/Mod/BIM/Resources/translations/Arch_zh-TW.ts +++ b/src/Mod/BIM/Resources/translations/Arch_zh-TW.ts @@ -5,8 +5,8 @@ ArchMaterial - Arch material - 建築材質 + BIM material + BIM 材質 @@ -106,7 +106,7 @@ Parent - Parent + @@ -144,12 +144,12 @@ The name of the BIM Server you are currently connecting to. Change settings in the BIM preferences - The name of the BIM Server you are currently connecting to. Change settings in the BIM preferences + 您當前連接的 BIM 伺服器名稱。請在 BIM 偏好設定中更改設定 BIM Server - BIM Server + BIM 伺服器 @@ -429,7 +429,7 @@ Leave blank to use all objects from the document Order by: - Order by: + 順序依據: @@ -439,7 +439,7 @@ Leave blank to use all objects from the document Only show matches - Only show matches + 只顯示匹配 @@ -470,22 +470,22 @@ Leave blank to use all objects from the document Classification manager - Classification manager + 分類管理員 Objects && Materials - Objects && Materials + 物件 && 材質 Only visible objects - Only visible objects + 只有可見物件 Sort by: - Sort by: + 排序依據: @@ -512,12 +512,12 @@ Leave blank to use all objects from the document Model structure - Model structure + 模型架構 Object / Material - Object / Material + 物件 / 材質 @@ -527,7 +527,7 @@ Leave blank to use all objects from the document Available classification systems - Available classification systems + 可用分類系統 @@ -542,17 +542,17 @@ Leave blank to use all objects from the document << Apply to selected - << Apply to selected + << 套用至被選項目 Use this class as material name - Use this class as material name + 使用此類別作為材質名稱 << Set as name - << Set as name + << 設定為名稱 @@ -567,7 +567,7 @@ Leave blank to use all objects from the document Single IFC document - Single IFC document + 單一 IFC 文件 @@ -599,12 +599,12 @@ Utils -> Make IFC project Do not ask again - Do not ask again + 不要再詢問 Default structure - Default structure + 預設結構 @@ -620,12 +620,12 @@ Utils -> Make IFC project Ask me again next time - Ask me again next time + 下次再問我一次 IFC Elements Manager - IFC Elements Manager + IFC 元件管理員 @@ -636,27 +636,27 @@ Utils -> Make IFC project only visible BIM objects - only visible BIM objects + 僅可見的 BIM 物件 order by: - order by: + 順序依據: change type to: - change type to: + 改變類型至: change material to: - change material to: + 改變材質至: IFC Quantities Manager - IFC Quantities Manager + IFC 數量管理員 @@ -672,7 +672,7 @@ Utils -> Make IFC project IFC import options - IFC import options + IFC 匯入選項 @@ -692,12 +692,12 @@ Utils -> Make IFC project All individual IFC objects - All individual IFC objects + 所有獨立 IFC 物件 Initial import - Initial import + 初始匯入 @@ -707,17 +707,17 @@ Utils -> Make IFC project Locked (IFC objects only) - Locked (IFC objects only) + 鎖定 (只限 IFC 物件) Unlocked (non-IFC objects permitted) - Unlocked (non-IFC objects permitted) + 解鎖 (允許非 IFC 物件) Lock document - Lock document + 鎖定文件 @@ -847,7 +847,7 @@ Utils -> Make IFC project Choose a material - Choose a material + 選擇一個材質 @@ -872,12 +872,12 @@ Utils -> Make IFC project Test results - Test results + 測試結果 Results of test: - Results of test: + 測試結果: @@ -897,7 +897,7 @@ Utils -> Make IFC project Use preset... - Use preset... + 使用預設值... @@ -917,7 +917,7 @@ Utils -> Make IFC project Load template... - Load template... + 載入模板... @@ -927,7 +927,7 @@ Utils -> Make IFC project Project name - Project name + 專案名稱 @@ -947,7 +947,7 @@ Utils -> Make IFC project Add a human figure - Add a human figure + 顯示人形圖示 @@ -957,22 +957,22 @@ Utils -> Make IFC project E - E + E Elevation - Elevation + 正視圖 Declination - Declination + 偏角 Default Site - Default Site + 預設站點 @@ -983,12 +983,12 @@ Utils -> Make IFC project ° - ° + ° Longitude - Longitude + 經度 @@ -998,12 +998,12 @@ Utils -> Make IFC project Latitude - Latitude + 緯度 N - N + N @@ -1062,7 +1062,7 @@ Utils -> Make IFC project 0 - 0 + 0 @@ -1122,7 +1122,7 @@ Utils -> Make IFC project Save preset - Save preset + 保存預設 @@ -1200,7 +1200,7 @@ Utils -> Make IFC project Total - Total + 總計 @@ -1238,7 +1238,7 @@ Utils -> Make IFC project Label - Label + 標籤 @@ -1253,7 +1253,7 @@ Utils -> Make IFC project W - W + W @@ -1278,12 +1278,12 @@ Utils -> Make IFC project Welcome - Welcome + 歡迎 Welcome to the BIM workbench! - Welcome to the BIM workbench! + 歡迎來到 BIM 工作台! @@ -1293,7 +1293,7 @@ Utils -> Make IFC project How to get started? - How to get started? + 如何開始? @@ -1617,7 +1617,7 @@ Utils -> Make IFC project or - or + @@ -1632,17 +1632,17 @@ Utils -> Make IFC project Search: - Search: + 搜尋: Search external websites - Search external websites + 搜尋外部網站 ... - ... + ... @@ -1662,7 +1662,7 @@ Utils -> Make IFC project Online mode - Online mode + 線上模式 @@ -1702,7 +1702,7 @@ Utils -> Make IFC project Save thumbnails - Save thumbnails + 儲存縮圖 @@ -1722,12 +1722,12 @@ Utils -> Make IFC project Warning, this can take some time! - Warning, this can take some time! + 警告,這要花一些時間! Run all tests - Run all tests + 執行全部測試 @@ -1742,12 +1742,12 @@ Utils -> Make IFC project All visible objects - All visible objects + 所有可見物件 Whole document - Whole document + 整個文件 @@ -1968,12 +1968,12 @@ Utils -> Make IFC project Order alphabetically - Order alphabetically + 依照字母排序 BIM tutorial - BIM tutorial + BIM 導引 @@ -2004,7 +2004,7 @@ p, li { white-space: pre-wrap; } Goal1 - Goal1 + 目標1 @@ -2015,17 +2015,17 @@ p, li { white-space: pre-wrap; } Goal2 - Goal2 + 目標2 << Previous - << Previous + << 上一個 Next >> - Next >> + 下一個 >> @@ -2040,7 +2040,7 @@ p, li { white-space: pre-wrap; } Doors and windows - Doors and windows + 門窗 @@ -2055,7 +2055,7 @@ p, li { white-space: pre-wrap; } Do not group - Do not group + 不要設為群組 @@ -2088,7 +2088,7 @@ p, li { white-space: pre-wrap; } 0 - 0 + 0 @@ -2098,7 +2098,7 @@ p, li { white-space: pre-wrap; } Label - Label + 標籤 @@ -2114,7 +2114,7 @@ p, li { white-space: pre-wrap; } Spaces - Spaces + 空間 @@ -2129,7 +2129,7 @@ p, li { white-space: pre-wrap; } Initial import - Initial import + 初始匯入 @@ -2149,7 +2149,7 @@ p, li { white-space: pre-wrap; } All individual IFC objects - All individual IFC objects + 所有獨立 IFC 物件 @@ -2496,7 +2496,7 @@ a Footprint display mode BIM server - BIM server + BIM 伺服器 @@ -2754,13 +2754,13 @@ if you start getting crashes when you set multiple cores. Parametric BIM objects - Parametric BIM objects + 參數化 BIM 物件 Non-parametric BIM objects - Non-parametric BIM objects + 非參數化 BIM 物件 @@ -3403,7 +3403,7 @@ unit to work with when opening the file. - + Preset @@ -3668,7 +3668,7 @@ unit to work with when opening the file. - + Reorder children alphabetically Reorder children alphabetically @@ -4028,7 +4028,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - + Create Window Create Window @@ -4038,32 +4038,32 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Choose a face on an existing object or select a preset - + Window not based on sketch. Window not aligned or resized. Window not based on sketch. Window not aligned or resized. - + No Width and/or Height constraint in window sketch. Window not resized. No Width and/or Height constraint in window sketch. Window not resized. - + No window found. Cannot continue. No window found. Cannot continue. - + Window options Window options - + Auto include in host object Auto include in host object - + Sill height Sill height @@ -4129,8 +4129,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + @@ -4168,8 +4168,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Name 名稱 @@ -4183,8 +4183,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Thickness 厚度 @@ -4366,8 +4366,8 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 合併重複 - - + + Material 材質 @@ -4378,17 +4378,17 @@ If Run = 0 then the run is calculated so that the height is the same as the rela MultiMaterial - + New layer New layer - + Total thickness 總厚度 - + depends on the object depends on the object @@ -4472,7 +4472,7 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Del column - Del column + 刪除行 @@ -4820,12 +4820,12 @@ If Run = 0 then the run is calculated so that the height is the same as the rela 附加試算表 - + Import CSV file Import CSV file - + Export CSV file Export CSV file @@ -4835,20 +4835,20 @@ If Run = 0 then the run is calculated so that the height is the same as the rela Export CSV File - + Unable to recognize that file type Unable to recognize that file type - - + + Description 說明 - - + + @@ -4856,14 +4856,14 @@ If Run = 0 then the run is calculated so that the height is the same as the rela - - + + Unit 單位 - + Schedule Schedule @@ -5672,7 +5672,7 @@ Building creation aborted. - + A standard code (MasterFormat, OmniClass,...) A standard code (MasterFormat, OmniClass,...) @@ -6609,43 +6609,43 @@ Building creation aborted. When true, the fence will be colored like the original post and section. - - + + A description for this material A description for this material - + A URL where to find information about this material A URL where to find information about this material - + The transparency value of this material The transparency value of this material - + The color of this material 此材料的顏色 - + The color of this material when cut The color of this material when cut - + The list of layer names The list of layer names - + The list of layer materials The list of layer materials - + The list of layer thicknesses The list of layer thicknesses @@ -8043,8 +8043,8 @@ Building creation aborted. - The sizes for rows - The sizes for rows + The sizes of rows + The sizes of rows @@ -8678,7 +8678,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Label - Label + 標籤 @@ -9325,7 +9325,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Save preset - Save preset + 保存預設 @@ -9388,12 +9388,12 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet Unit system updated for all opened documents - + IfcOpenShell not found IfcOpenShell not found - + IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. IfcOpenShell is needed to import and export IFC files. It appears to be missing on your system. Would you like to download and install it now? It will be installed in FreeCAD's Macros directory. @@ -9518,7 +9518,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 2D Views - + Sheets Sheets @@ -10644,7 +10644,7 @@ CTRL+PgUp to extend extrusionCTRL+PgDown to shrink extrusionCTRL+/ to switch bet 0 - 0 + 0 diff --git a/src/Mod/BIM/Resources/ui/dialogProjectManager.ui b/src/Mod/BIM/Resources/ui/dialogProjectManager.ui index f9efb5ccbb..bc6111c044 100644 --- a/src/Mod/BIM/Resources/ui/dialogProjectManager.ui +++ b/src/Mod/BIM/Resources/ui/dialogProjectManager.ui @@ -638,6 +638,43 @@
Gui/Widgets.h
+ + presets + buttonSaveTemplate + buttonLoadTemplate + scrollArea + groupNewDocument + projectName + addHumanFigure + groupSite + siteName + siteAddress + siteLatitude + siteLongitude + siteDeviation + siteElevation + groupBuilding + buildingName + buildingUse + buildingLength + buildingWidth + countVAxes + distVAxes + countHAxes + distHAxes + lineWidth + lineColor + countLevels + levelHeight + levelsAxis + levelsWP + groupsList + buttonAdd + buttonDel + buttonSave + buttonOK + buttonCancel + diff --git a/src/Mod/BIM/bimcommands/BimViews.py b/src/Mod/BIM/bimcommands/BimViews.py index cd85843547..99ed00a9ab 100644 --- a/src/Mod/BIM/bimcommands/BimViews.py +++ b/src/Mod/BIM/bimcommands/BimViews.py @@ -267,11 +267,12 @@ class BIM_Views: top = QtGui.QTreeWidgetItem([translate("BIM","2D Views"), ""]) top.setIcon(0, ficon) for v in views: - i = QtGui.QTreeWidgetItem([v.Label, ""]) - if hasattr(v.ViewObject, "Icon"): - i.setIcon(0, v.ViewObject.Icon) - i.setToolTip(0, v.Name) - top.addChild(i) + if hasattr(v, "Label"): + i = QtGui.QTreeWidgetItem([v.Label, ""]) + if hasattr(v.ViewObject, "Icon"): + i.setIcon(0, v.ViewObject.Icon) + i.setToolTip(0, v.Name) + top.addChild(i) vm.tree.addTopLevelItem(top) # add pages diff --git a/src/Mod/BIM/bimcommands/BimWelcome.py b/src/Mod/BIM/bimcommands/BimWelcome.py index a2cb8a6fc2..f06e52e2c4 100644 --- a/src/Mod/BIM/bimcommands/BimWelcome.py +++ b/src/Mod/BIM/bimcommands/BimWelcome.py @@ -43,16 +43,14 @@ class BIM_Welcome: def Activated(self): from PySide import QtCore, QtGui - # load dialog self.form = FreeCADGui.PySideUic.loadUi(":ui/dialogWelcome.ui") - # set the title image - self.form.image.setPixmap(QtGui.QPixmap(":/icons/banner.png")) - # handle the tutorial links self.form.label_4.linkActivated.connect(self.handleLink) self.form.label_7.linkActivated.connect(self.handleLink) + self.form.adjustSize() + # center the dialog over FreeCAD window mw = FreeCADGui.getMainWindow() self.form.move( diff --git a/src/Mod/BIM/importers/exportIFC.py b/src/Mod/BIM/importers/exportIFC.py index d92466ad36..76e21a79e6 100644 --- a/src/Mod/BIM/importers/exportIFC.py +++ b/src/Mod/BIM/importers/exportIFC.py @@ -55,6 +55,8 @@ __title__ = "FreeCAD IFC export" __author__ = ("Yorik van Havre", "Jonathan Wiedemann", "Bernd Hahnebach") __url__ = "https://www.freecad.org" +PARAMS = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/BIM") + # Templates and other definitions **** # Specific FreeCAD <-> IFC slang translations translationtable = { @@ -172,12 +174,9 @@ def getPreferences(): # set schema if hasattr(ifcopenshell, "schema_identifier"): schema = ifcopenshell.schema_identifier - elif ifcos_version >= 0.6: - # v0.6 onwards allows to set our own schema - schema = ["IFC4", "IFC2X3"][params.get_param_arch("IfcVersion")] else: - schema = "IFC2X3" - + # v0.6 onwards allows to set our own schema + schema = PARAMS.GetString("DefaultIfcExportVersion", "IFC4") preferences["SCHEMA"] = schema return preferences @@ -308,9 +307,9 @@ def export(exportList, filename, colors=None, preferences=None): project = contextCreator.project objectslist = [obj for obj in objectslist if obj != contextCreator.project_object] - if Draft.getObjectsOfType(objectslist, "Site"): # we assume one site and one representation context only - decl = Draft.getObjectsOfType(objectslist, "Site")[0].Declination.getValueAs(FreeCAD.Units.Radian) - contextCreator.model_context.TrueNorth.DirectionRatios = (math.cos(decl+math.pi/2), math.sin(decl+math.pi/2)) + if Draft.getObjectsOfType(objectslist, "Site"): # we assume one site and one representation context only + decl = Draft.getObjectsOfType(objectslist, "Site")[0].Declination.getValueAs(FreeCAD.Units.Radian) + contextCreator.model_context.TrueNorth.DirectionRatios = (math.cos(decl+math.pi/2), math.sin(decl+math.pi/2)) # reusable entity system diff --git a/src/Mod/BIM/nativeifc/ifc_generator.py b/src/Mod/BIM/nativeifc/ifc_generator.py index 31b9a13396..be7674519e 100644 --- a/src/Mod/BIM/nativeifc/ifc_generator.py +++ b/src/Mod/BIM/nativeifc/ifc_generator.py @@ -35,6 +35,7 @@ from nativeifc import ifc_tools import multiprocessing import FreeCADGui from pivy import coin +from PySide import QtCore def generate_geometry(obj, cached=False): @@ -76,6 +77,7 @@ def generate_geometry(obj, cached=False): elif obj.ViewObject and obj.ShapeMode == "Coin": node, placement = generate_coin(ifcfile, elements, cached) if node: + #QtCore.QTimer.singleShot(0, lambda: set_representation(obj.ViewObject, node)) set_representation(obj.ViewObject, node) colors = node[0] else: @@ -86,7 +88,7 @@ def generate_geometry(obj, cached=False): # set shape and diffuse colors if colors: - ifc_tools.set_colors(obj, colors) # TODO migrate here? + QtCore.QTimer.singleShot(0, lambda: ifc_tools.set_colors(obj, colors)) # TODO migrate here? def generate_shape(ifcfile, elements, cached=False): @@ -140,7 +142,12 @@ def generate_shape(ifcfile, elements, cached=False): brep = item.geometry.brep_data shape = Part.Shape() shape.importBrepFromString(brep, False) - mat = ifc_tools.get_freecad_matrix(item.transformation.matrix.data) + if hasattr(item.transformation.matrix, "data"): + # IfcOpenShell 0.7 + mat = ifc_tools.get_freecad_matrix(item.transformation.matrix.data) + else: + # IfcOpenShell 0.8 + mat = ifc_tools.get_freecad_matrix(item.transformation.matrix) shape.scale(ifc_tools.SCALE) shape.transformShape(mat) shapes.append(shape) @@ -248,7 +255,12 @@ def generate_coin(ifcfile, elements, cached=False): # colors if item.geometry.materials: color = item.geometry.materials[0].diffuse - color = (float(color[0]), float(color[1]), float(color[2])) + if hasattr(color, "r") and hasattr(color, "g"): + # IfcOpenShell 0.8 + color = (color.r(), color.g(), color.b()) + else: + # IfcOpenShell 0.7 + color = (float(color[0]), float(color[1]), float(color[2])) trans = item.geometry.materials[0].transparency if trans >= 0: color += (float(trans),) @@ -256,7 +268,12 @@ def generate_coin(ifcfile, elements, cached=False): color = (0.85, 0.85, 0.85) # verts - matrix = ifc_tools.get_freecad_matrix(item.transformation.matrix.data) + if hasattr(item.transformation.matrix, "data"): + # IfcOpenShell 0.7 + matrix = ifc_tools.get_freecad_matrix(item.transformation.matrix.data) + else: + # IfcOpenShell 0.8 + matrix = ifc_tools.get_freecad_matrix(item.transformation.matrix) placement = FreeCAD.Placement(matrix) verts = item.geometry.verts verts = [FreeCAD.Vector(verts[i : i + 3]) for i in range(0, len(verts), 3)] @@ -361,13 +378,24 @@ def get_geom_iterator(ifcfile, elements, brep_mode): if we want brep data or not""" settings = ifcopenshell.geom.settings() - if brep_mode: - settings.set(settings.DISABLE_TRIANGULATION, True) - settings.set(settings.USE_BREP_DATA, True) - settings.set(settings.SEW_SHELLS, True) body_contexts = ifc_tools.get_body_context_ids(ifcfile) # TODO migrate here? - if body_contexts: - settings.set_context_ids(body_contexts) + if brep_mode: + if hasattr(settings, "DISABLE_TRIANGULATION"): + # IfcOpenShell 0.7 + settings.set(settings.DISABLE_TRIANGULATION, True) + settings.set(settings.USE_BREP_DATA, True) + settings.set(settings.SEW_SHELLS, True) + if body_contexts: + settings.set_context_ids(body_contexts) + elif hasattr(settings, "ITERATOR_OUTPUT"): + # IfcOpenShell 0.8 + settings.set("ITERATOR_OUTPUT", ifcopenshell.ifcopenshell_wrapper.SERIALIZED) + if body_contexts: + # Is this the right way? It works, but not sure. + settings.set("CONTEXT_IDENTIFIERS", [str(s) for s in body_contexts]) + else: + # We print a debug message but we continue + print("DEBUG: ifc_tools.get_geom_iterator: Iterator could not be set up correctly") cores = multiprocessing.cpu_count() iterator = ifcopenshell.geom.iterator(settings, ifcfile, cores, include=elements) if not iterator.initialize(): diff --git a/src/Mod/BIM/nativeifc/ifc_layers.py b/src/Mod/BIM/nativeifc/ifc_layers.py index 2f01e31803..9fae0d82c6 100644 --- a/src/Mod/BIM/nativeifc/ifc_layers.py +++ b/src/Mod/BIM/nativeifc/ifc_layers.py @@ -136,7 +136,12 @@ def create_layer(name, project): group = ifc_tools.get_group(project, "IfcLayersGroup") ifcfile = ifc_tools.get_ifcfile(project) - layer = ifc_tools.api_run("layer.add_layer", ifcfile, Name=name) + try: + # IfcopenShell 0.8 + layer = ifc_tools.api_run("layer.add_layer", ifcfile, name=name) + except: + # IfcopenShell 0.7 + layer = ifc_tools.api_run("layer.add_layer", ifcfile, Name=name) return get_layer(layer, project) diff --git a/src/Mod/BIM/nativeifc/ifc_materials.py b/src/Mod/BIM/nativeifc/ifc_materials.py index 2852c12ed7..36fa904160 100644 --- a/src/Mod/BIM/nativeifc/ifc_materials.py +++ b/src/Mod/BIM/nativeifc/ifc_materials.py @@ -135,12 +135,23 @@ def set_material(material, obj): if not container.OutList: doc.removeObject(container.Name) if material_element: - ifc_tools.api_run( - "material.assign_material", - ifcfile, - product=element, - type=material_element.is_a(), - material=material_element, - ) + try: + # IfcOpenShell 0.8 + ifc_tools.api_run( + "material.assign_material", + ifcfile, + products=[element], + type=material_element.is_a(), + material=material_element, + ) + except: + # IfcOpenShell 0.7 + ifc_tools.api_run( + "material.assign_material", + ifcfile, + product=element, + type=material_element.is_a(), + material=material_element, + ) if new: show_material(obj) diff --git a/src/Mod/BIM/nativeifc/ifc_selftest.py b/src/Mod/BIM/nativeifc/ifc_selftest.py index e32f3d4877..3b8814c3d4 100644 --- a/src/Mod/BIM/nativeifc/ifc_selftest.py +++ b/src/Mod/BIM/nativeifc/ifc_selftest.py @@ -122,7 +122,7 @@ class NativeIFCTest(unittest.TestCase): singledoc=SINGLEDOC, ) fco = len(FreeCAD.getDocument("IfcTest").Objects) - self.failUnless(fco == 1 - SDU, "ImportCoinSingle failed") + self.assertTrue(fco == 1 - SDU, "ImportCoinSingle failed") def test02_ImportCoinStructure(self): FreeCAD.Console.PrintMessage( @@ -140,7 +140,7 @@ class NativeIFCTest(unittest.TestCase): singledoc=SINGLEDOC, ) fco = len(FreeCAD.getDocument("IfcTest").Objects) - self.failUnless(fco == 4 - SDU, "ImportCoinStructure failed") + self.assertTrue(fco == 4 - SDU, "ImportCoinStructure failed") def test03_ImportCoinFull(self): global FCSTD_FILE_PATH @@ -160,7 +160,7 @@ class NativeIFCTest(unittest.TestCase): d.saveAs(path) FCSTD_FILE_PATH = path fco = len(FreeCAD.getDocument("IfcTest").Objects) - self.failUnless(fco > 4 - SDU, "ImportCoinFull failed") + self.assertTrue(fco > 4 - SDU, "ImportCoinFull failed") def test04_ImportShapeFull(self): FreeCAD.Console.PrintMessage("4. NativeIFC import: Full model, shape mode...") @@ -176,7 +176,7 @@ class NativeIFCTest(unittest.TestCase): singledoc=SINGLEDOC, ) fco = len(FreeCAD.getDocument("IfcTest").Objects) - self.failUnless(fco > 4 - SDU, "ImportShapeFull failed") + self.assertTrue(fco > 4 - SDU, "ImportShapeFull failed") def test05_ImportFreeCAD(self): FreeCAD.Console.PrintMessage( @@ -188,7 +188,7 @@ class NativeIFCTest(unittest.TestCase): proj = ifc_tools.get_project(obj) ifcfile = ifc_tools.get_ifcfile(proj) print(ifcfile) - self.failUnless(ifcfile, "ImportFreeCAD failed") + self.assertTrue(ifcfile, "ImportFreeCAD failed") def test06_ModifyObjects(self): FreeCAD.Console.PrintMessage("6. NativeIFC Modifying IFC document...") @@ -201,8 +201,8 @@ class NativeIFCTest(unittest.TestCase): ifc_diff = compare(IFC_FILE_PATH, proj.IfcFilePath) obj.ShapeMode = 0 obj.Proxy.execute(obj) - self.failUnless( - obj.Shape.Volume > 2 and len(ifc_diff) == 3, "ModifyObjects failed" + self.assertTrue( + obj.Shape.Volume > 2 and len(ifc_diff) <= 5, "ModifyObjects failed" ) def test07_CreateDocument(self): @@ -211,7 +211,7 @@ class NativeIFCTest(unittest.TestCase): ifc_tools.create_document(doc, silent=True) fco = len(FreeCAD.getDocument("IfcTest").Objects) print(FreeCAD.getDocument("IfcTest").Objects) - self.failUnless(fco == 1 - SDU, "CreateDocument failed") + self.assertTrue(fco == 1 - SDU, "CreateDocument failed") def test08_ChangeIFCSchema(self): FreeCAD.Console.PrintMessage("8. NativeIFC Changing IFC schema...") @@ -232,7 +232,7 @@ class NativeIFCTest(unittest.TestCase): proj.Proxy.silent = True proj.Schema = "IFC2X3" FreeCAD.getDocument("IfcTest").recompute() - self.failUnless(obj.StepId != oldid, "ChangeIFCSchema failed") + self.assertTrue(obj.StepId != oldid, "ChangeIFCSchema failed") def test09_CreateBIMObjects(self): FreeCAD.Console.PrintMessage("9. NativeIFC Creating BIM objects...") @@ -260,7 +260,7 @@ class NativeIFCTest(unittest.TestCase): fco = len(FreeCAD.getDocument("IfcTest").Objects) ifco = len(proj.Proxy.ifcfile.by_type("IfcRoot")) print(ifco, "IFC objects created") - self.failUnless(fco == 8 - SDU and ifco == 12, "CreateDocument failed") + self.assertTrue(fco == 8 - SDU and ifco == 12, "CreateDocument failed") def test10_ChangePlacement(self): FreeCAD.Console.PrintMessage("10. NativeIFC Changing Placement...") @@ -281,7 +281,7 @@ class NativeIFCTest(unittest.TestCase): new_plac = ifcopenshell.util.placement.get_local_placement(elem.ObjectPlacement) new_plac = str(new_plac).replace(" ", "").replace("\n", "") target = "[[1.0.0.100.][0.1.0.200.][0.0.1.300.][0.0.0.1.]]" - self.failUnless(new_plac == target, "ChangePlacement failed") + self.assertTrue(new_plac == target, "ChangePlacement failed") def test11_ChangeGeometry(self): FreeCAD.Console.PrintMessage("11. NativeIFC Changing Geometry...") @@ -300,7 +300,7 @@ class NativeIFCTest(unittest.TestCase): ifc_geometry.add_geom_properties(obj) obj.ExtrusionDepth = "6000 mm" FreeCAD.getDocument("IfcTest").recompute() - self.failUnless(obj.Shape.Volume > 1500000, "ChangeGeometry failed") + self.assertTrue(obj.Shape.Volume > 1500000, "ChangeGeometry failed") def test12_RemoveObject(self): from nativeifc import ifc_observer @@ -321,7 +321,7 @@ class NativeIFCTest(unittest.TestCase): count1 = len(ifcfile.by_type("IfcProduct")) FreeCAD.getDocument("IfcTest").removeObject("IfcObject004") count2 = len(ifcfile.by_type("IfcProduct")) - self.failUnless(count2 < count1, "RemoveObject failed") + self.assertTrue(count2 < count1, "RemoveObject failed") def test13_Materials(self): FreeCAD.Console.PrintMessage("13. NativeIFC Materials...") @@ -346,7 +346,7 @@ class NativeIFCTest(unittest.TestCase): elem = ifc_tools.get_ifc_element(prod) res = ifcopenshell.util.element.get_material(elem) mats_after = ifcfile.by_type("IfcMaterialDefinition") - self.failUnless(len(mats_after) == len(mats_before) + 1, "Materials failed") + self.assertTrue(len(mats_after) == len(mats_before) + 1, "Materials failed") def test14_Layers(self): FreeCAD.Console.PrintMessage("14. NativeIFC Layers...") @@ -368,7 +368,7 @@ class NativeIFCTest(unittest.TestCase): prod = FreeCAD.getDocument("IfcTest").getObject("IfcObject006") ifc_layers.add_to_layer(prod, layer) lays_after = ifcfile.by_type("IfcPresentationLayerAssignment") - self.failUnless(len(lays_after) == len(lays_before) + 1, "Layers failed") + self.assertTrue(len(lays_after) == len(lays_before) + 1, "Layers failed") def test15_Psets(self): FreeCAD.Console.PrintMessage("15. NativeIFC Psets...") @@ -387,4 +387,4 @@ class NativeIFCTest(unittest.TestCase): ifcfile = ifc_tools.get_ifcfile(obj) pset = ifc_psets.add_pset(obj, "Pset_Custom") ifc_psets.add_property(ifcfile, pset, "MyMessageToTheWorld", "Hello, World!") - self.failUnless(ifc_psets.has_psets(obj), "Psets failed") + self.assertTrue(ifc_psets.has_psets(obj), "Psets failed") diff --git a/src/Mod/BIM/nativeifc/ifc_status.py b/src/Mod/BIM/nativeifc/ifc_status.py index 30c9e3db72..573923855c 100644 --- a/src/Mod/BIM/nativeifc/ifc_status.py +++ b/src/Mod/BIM/nativeifc/ifc_status.py @@ -270,6 +270,11 @@ def find_toplevel(objs): for obj in objs: for parent in obj.InListRecursive: if parent in objs: + # exception: The object is hosting another + if hasattr(parent,"Host") and parent.Host == obj: + nobjs.append(obj) + elif hasattr(parent,"Hosts") and obj in parent.Hosts: + nobjs.append(obj) break else: nobjs.append(obj) diff --git a/src/Mod/BIM/nativeifc/ifc_tools.py b/src/Mod/BIM/nativeifc/ifc_tools.py index 26536738b5..be29177bfd 100644 --- a/src/Mod/BIM/nativeifc/ifc_tools.py +++ b/src/Mod/BIM/nativeifc/ifc_tools.py @@ -355,7 +355,7 @@ def assign_groups(children): def get_children( - obj, ifcfile=None, only_structure=False, assemblies=True, expand=False + obj, ifcfile=None, only_structure=False, assemblies=True, expand=False, iftype=None ): """Returns the direct descendants of an object""" @@ -373,9 +373,12 @@ def get_children( children.extend([rel.RelatedOpeningElement]) for rel in getattr(ifcentity, "HasFillings", []): children.extend([rel.RelatedBuildingElement]) - return filter_elements( + result = filter_elements( children, ifcfile, expand=expand, spaces=True, assemblies=assemblies ) + if iftype: + result = [r for r in result if r.is_a(ifctype)] + return result def get_object(element, document=None): @@ -667,7 +670,11 @@ def get_ifc_element(obj, ifcfile=None): if not ifcfile: ifcfile = get_ifcfile(obj) if ifcfile and hasattr(obj, "StepId"): - return ifcfile.by_id(obj.StepId) + try: + return ifcfile.by_id(obj.StepId) + except RuntimeError: + # entity not found + pass return None @@ -784,27 +791,33 @@ def set_colors(obj, colors): """Sets the given colors to an object""" if FreeCAD.GuiUp and colors: + try: + vobj = obj.ViewObject + except ReferenceError: + # Object was probably deleted + return # ifcopenshell issues (-1,-1,-1) colors if not set if isinstance(colors[0], (tuple, list)): colors = [tuple([abs(d) for d in c]) for c in colors] else: colors = [abs(c) for c in colors] - if hasattr(obj.ViewObject, "ShapeColor"): + if hasattr(vobj, "ShapeColor"): if isinstance(colors[0], (tuple, list)): - obj.ViewObject.ShapeColor = colors[0][:3] - if len(colors[0]) > 3: - obj.ViewObject.Transparency = int(colors[0][3] * 100) + vobj.ShapeColor = colors[0][:3] + # do not set transparency when the object has more than one color + #if len(colors[0]) > 3: + # vobj.Transparency = int(colors[0][3] * 100) else: - obj.ViewObject.ShapeColor = colors[:3] + vobj.ShapeColor = colors[:3] if len(colors) > 3: - obj.ViewObject.Transparency = int(colors[3] * 100) - if hasattr(obj.ViewObject, "DiffuseColor"): + vobj.Transparency = int(colors[3] * 100) + if hasattr(vobj, "DiffuseColor"): # strip out transparency value because it currently gives ugly # results in FreeCAD when combining transparent and non-transparent objects if all([len(c) > 3 and c[3] != 0 for c in colors]): - obj.ViewObject.DiffuseColor = colors + vobj.DiffuseColor = colors else: - obj.ViewObject.DiffuseColor = [c[:3] for c in colors] + vobj.DiffuseColor = [c[:3] for c in colors] def get_body_context_ids(ifcfile): @@ -849,9 +862,15 @@ def get_freecad_matrix(ios_matrix): # https://github.com/IfcOpenShell/IfcOpenShell/issues/1440 # https://pythoncvc.net/?cat=203 + # https://github.com/IfcOpenShell/IfcOpenShell/issues/4832#issuecomment-2158583873 m_l = list() for i in range(3): - line = list(ios_matrix[i::3]) + if len(ios_matrix) == 16: + # IfcOpenShell 0.8 + line = list(ios_matrix[i::4]) + else: + # IfcOpenShell 0.7 + line = list(ios_matrix[i::3]) line[-1] *= SCALE m_l.extend(line) return FreeCAD.Matrix(*m_l) @@ -985,6 +1004,13 @@ def aggregate(obj, parent): layer = FreeCAD.ActiveDocument.getObject(autogroup) if hasattr(layer, "StepId"): ifc_layers.add_to_layer(newobj, layer) + # aggregate dependent objects + for child in obj.InList: + if hasattr(child,"Host") and child.Host == obj: + aggregate(child, newobj) + elif hasattr(child,"Hosts") and obj in child.Hosts: + #op = create_product(child, newobj, ifcfile, ifcclass="IfcOpeningElement") + aggregate(child, newobj) delete = not (PARAMS.GetBool("KeepAggregated", False)) if new and delete and base: obj.Document.removeObject(base.Name) @@ -1047,13 +1073,7 @@ def create_representation(obj, ifcfile): exportIFC.surfstyles = {} exportIFC.shapedefs = {} exportIFC.ifcopenshell = ifcopenshell - try: - exportIFC.ifcbin = exportIFCHelper.recycler(ifcfile, template=False) - except: - FreeCAD.Console.PrintError( - "ERROR: You need a more recent version of FreeCAD >= 0.20.3\n" - ) - return + exportIFC.ifcbin = exportIFCHelper.recycler(ifcfile, template=False) prefs, context = get_export_preferences(ifcfile) representation, placement, shapetype = exportIFC.getRepresentation( ifcfile, context, obj, preferences=prefs @@ -1096,12 +1116,12 @@ def get_subvolume(obj): tempface = None tempobj = None - subvolume = None + tempshape = None if hasattr(obj, "Proxy") and hasattr(obj.Proxy, "getSubVolume"): tempshape = obj.Proxy.getSubVolume(obj) elif hasattr(obj, "Subvolume") and obj.Subvolume: tempshape = obj.Subvolume - if subvolume: + if tempshape: if len(tempshape.Faces) == 6: # We assume the standard output of ArchWindows faces = sorted(tempshape.Faces, key=lambda f: f.CenterOfMass.z) @@ -1117,6 +1137,8 @@ def get_subvolume(obj): else: tempobj = obj.Document.addObject("Part::Feature", "Opening") tempobj.Shape = tempshape + if tempobj: + tempobj.recompute() return tempface, tempobj @@ -1130,7 +1152,11 @@ def create_relationship(old_obj, obj, parent, element, ifcfile): for old_par in old_obj.InList: if hasattr(old_par, "Group") and old_obj in old_par.Group: old_par.Group = [o for o in old_par.Group if o != old_obj] - api_run("spatial.unassign_container", ifcfile, product=element) + try: + api_run("spatial.unassign_container", ifcfile, products=[element]) + except: + # older version of IfcOpenShell + api_run("spatial.unassign_container", ifcfile, product=element) if element.is_a("IfcOpeningElement"): uprel = api_run( "void.add_opening", @@ -1139,12 +1165,21 @@ def create_relationship(old_obj, obj, parent, element, ifcfile): element=parent_element, ) else: - uprel = api_run( - "spatial.assign_container", - ifcfile, - product=element, - relating_structure=parent_element, - ) + try: + uprel = api_run( + "spatial.assign_container", + ifcfile, + products=[element], + relating_structure=parent_element, + ) + except: + # older version of ifcopenshell + uprel = api_run( + "spatial.assign_container", + ifcfile, + product=element, + relating_structure=parent_element, + ) # case 2: dooe/window inside element # https://standards.buildingsmart.org/IFC/RELEASE/IFC4/ADD2_TC1/HTML/annex/annex-e/wall-with-opening-and-window.htm elif parent_element.is_a("IfcElement") and element.is_a() in [ @@ -1162,15 +1197,28 @@ def create_relationship(old_obj, obj, parent, element, ifcfile): ) api_run("void.add_filling", ifcfile, opening=opening, element=element) # windows must also be part of a spatial container - api_run("spatial.unassign_container", ifcfile, product=element) + try: + api_run("spatial.unassign_container", ifcfile, products=[element]) + except: + # old version of IfcOpenShell + api_run("spatial.unassign_container", ifcfile, product=element) if parent_element.ContainedInStructure: container = parent_element.ContainedInStructure[0].RelatingStructure - uprel = api_run( - "spatial.assign_container", - ifcfile, - product=element, - relating_structure=container, - ) + try: + uprel = api_run( + "spatial.assign_container", + ifcfile, + products=[element], + relating_structure=container, + ) + except: + # old version of IfcOpenShell + uprel = api_run( + "spatial.assign_container", + ifcfile, + product=element, + relating_structure=container, + ) elif parent_element.Decomposes: container = parent_element.Decomposes[0].RelatingObject try: diff --git a/src/Mod/BIM/nativeifc/ifc_viewproviders.py b/src/Mod/BIM/nativeifc/ifc_viewproviders.py index 8c7ddbad5d..c5eeb2d6b9 100644 --- a/src/Mod/BIM/nativeifc/ifc_viewproviders.py +++ b/src/Mod/BIM/nativeifc/ifc_viewproviders.py @@ -426,10 +426,11 @@ class ifc_vp_document(ifc_vp_object): from nativeifc import ifc_tools # lazy import - get_filepath(self.Object) - ifc_tools.save(self.Object) - self.replace_file(self.Object, sf) - self.Object.Document.recompute() + sf = get_filepath(self.Object) + if sf: + ifc_tools.save(self.Object) + self.replace_file(self.Object, sf) + self.Object.Document.recompute() def replace_file(self, obj, newfile): """Asks the user if the attached file path needs to be replaced""" @@ -634,5 +635,5 @@ def get_filepath(project): if not sf.lower().endswith(".ifc"): sf += ".ifc" project.IfcFilePath = sf - return True - return False + return sf + return None diff --git a/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui b/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui index 916cdd0497..fff0c1b518 100644 --- a/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui +++ b/src/Mod/CAM/Gui/Resources/panels/TaskCAMSimulator.ui @@ -6,7 +6,7 @@ 0 0 - 288 + 577 335 @@ -76,11 +76,11 @@ - - - 24 - 16777215 - + + + 0 + 0 + Job: @@ -88,7 +88,14 @@ - + + + + 0 + 0 + + + diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM.ts b/src/Mod/CAM/Gui/Resources/translations/CAM.ts index 3da065e6c8..f131dde75e 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM.ts @@ -3241,13 +3241,13 @@ Should multiple tools or tool shapes with the same name exist in different direc
- + Activate / resume simulation - + Play @@ -3959,60 +3959,60 @@ Default: 3 mm Workbench - + Project Setup - + Tool Commands - + New Operations - - + + Path Modification - + Helpful Tools - - - - - + + + + - - + + + &CAM - + Path Dressup - + Supplemental Commands - + Specialty Operations - + Utils @@ -4088,7 +4088,7 @@ Default: 3 mm - + Save Sanity Check Report @@ -6218,7 +6218,7 @@ Aborting op creation - + CAM @@ -6235,7 +6235,7 @@ Aborting op creation CAM_3dTools - + 3D Operations @@ -8362,34 +8362,34 @@ For example: - - + + Tooltable JSON (*.fctl) - - + + Save toolbit library - + Tool - + Shape - + LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_be.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_be.ts index 70981fbfd6..d7b89eea58 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_be.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_be.ts @@ -3364,13 +3364,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Спыніць
- + Activate / resume simulation Задзейнічаць / аднавіць мадэляванне - + Play Пачаць прагляд @@ -4129,60 +4129,60 @@ Default: 3 mm Workbench - + Project Setup Налады праекту - + Tool Commands Каманды інструменту - + New Operations Новыя аперацыі - - + + Path Modification Змена шляху - + Helpful Tools Карысныя інструменты - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Паляпшэнне траекторыі - + Supplemental Commands Дадатковыя каманды - + Specialty Operations Спецыялізаваныя аперацыі - + Utils Утыліты @@ -4258,7 +4258,7 @@ Default: 3 mm Вугал рэжучага рабра (%.2f) прыводзіць да адмоўнай даўжыні кончыка інструмента - + Save Sanity Check Report Захаваць справаздачу пра праверку працаздольнасці @@ -6399,7 +6399,7 @@ Aborting op creation - + CAM CAM @@ -6416,7 +6416,7 @@ Aborting op creation CAM_3dTools - + 3D Operations Трохмерныя аперацыі @@ -8561,34 +8561,34 @@ For example: Ці скапіраваць файлы прыкладаў у новы каталог {}? - - + + Tooltable JSON (*.fctl) Табліца разцоў JSON (*.fctl) - - + + Save toolbit library Захаваць бібліятэку такарных разцоў - + Tool Інструмент - + Shape Фігура - + LinuxCNC tooltable (*.tbl) Табліца разцоў LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) Табліца разцоў CAMotics (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ca.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ca.ts index e48a129320..c14e892533 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ca.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ca.ts @@ -253,7 +253,7 @@ Note that this option is disabled if a stock object from an existing solid is us Coolant Mode - Coolant Mode + Mode de refrigeració @@ -285,7 +285,7 @@ For stock from the Base object's bounding box it means the extra material i Extent - Extent + Extensió @@ -579,7 +579,7 @@ For stock from the Base object's bounding box it means the extra material i Ext. X - Ext. X + Ext. X @@ -594,7 +594,7 @@ For stock from the Base object's bounding box it means the extra material i Ext. Y - Ext. Y + Ext. Y @@ -609,7 +609,7 @@ For stock from the Base object's bounding box it means the extra material i Ext. Z - Ext. Z + Ext. Z @@ -940,7 +940,7 @@ Reset deletes all current items from the list and fills the list with all circul Coolant Mode - Coolant Mode + Mode de refrigeració @@ -1241,7 +1241,7 @@ Reset deletes all current items from the list and fills the list with all circul Inside - Inside + Interior @@ -2565,17 +2565,17 @@ See the file save policy below on how to deal with name conflicts. Ext. X - Ext. X + Ext. X Ext. Y - Ext. Y + Ext. Y Ext. Z - Ext. Z + Ext. Z @@ -3255,7 +3255,7 @@ Should multiple tools or tool shapes with the same name exist in different direc Coolant Mode - Coolant Mode + Mode de refrigeració @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Atura - + Activate / resume simulation Activate / resume simulation - + Play Reprodueix @@ -3727,17 +3727,17 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t Ext. X - Ext. X + Ext. X Ext. Y - Ext. Y + Ext. Y Ext. Z - Ext. Z + Ext. Z @@ -4009,7 +4009,7 @@ Default: 3 mm Coolant Mode - Coolant Mode + Mode de refrigeració @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Configuració del projecte - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -5824,7 +5824,7 @@ Default: 3 mm Inside - Inside + Interior @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -6606,7 +6606,7 @@ Aborting op creation Tag - Tag + Etiqueta @@ -6907,7 +6907,7 @@ Aborting op creation Warning - Warning + Advertència @@ -7112,7 +7112,7 @@ For example: Fixtures - Fixtures + Accessoris @@ -7242,7 +7242,7 @@ For example: Coolant Mode - Coolant Mode + Mode de refrigeració @@ -7436,7 +7436,7 @@ For example: Inside - Inside + Interior @@ -7735,7 +7735,7 @@ For example: Offset - Equidistancia (ofset) + Equidistància @@ -8024,7 +8024,7 @@ For example: Offset - Equidistancia (ofset) + Equidistància @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Eina - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_cs.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_cs.ts index 6757227387..b382726b5c 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_cs.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_cs.ts @@ -647,7 +647,7 @@ For stock from the Base object's bounding box it means the extra material i If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone - If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone + Je-li zaškrtnuto, cesta je zavazbena tělesem. V opačném případě popisuje objem tělesa zónu 'nevstupovat' @@ -2297,9 +2297,9 @@ Pokud je zadaná výška 0, dressup použije polovinu výšky dílu. Pokud je v Radius of the fillet on the tag's top edge. If the radius is bigger than that which the tag shape itself supports, the resulting shape will be that of a dome. - Radius of the fillet on the tag's top edge. + Poloměr zaoblení na horním hraně štítku. -If the radius is bigger than that which the tag shape itself supports, the resulting shape will be that of a dome. +Pokud je poloměr větší než ten, který podporuje samotný tvar štítku, výsledným tvarem bude kopule. @@ -3311,13 +3311,13 @@ Pokud existuje více nástrojů nebo tvarů nástrojů se stejným názvem v rů Stop - + Activate / resume simulation Aktivovat / pokračovat v simulaci - + Play Spustit @@ -4080,60 +4080,60 @@ Výchozí: 3 mm Workbench - + Project Setup Nastavení projektu - + Tool Commands Příkazy nástroje - + New Operations Nová operace - - + + Path Modification Úprava dráhy - + Helpful Tools Užitečné nástroje - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Doplňkové příkazy - + Specialty Operations Speciální operace - + Utils Nástroje @@ -4209,7 +4209,7 @@ Výchozí: 3 mm Úhel řezné hrany (%.2f) má za následek zápornou délku hrotu nástroje - + Save Sanity Check Report Save Sanity Check Report @@ -6343,7 +6343,7 @@ Aborting op creation - + CAM CAM @@ -6360,7 +6360,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operace @@ -8503,34 +8503,34 @@ For example: Kopírovat ukázkové soubory do nového adresáře {}? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Nástroj - + Shape Útvar - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_da.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_da.ts index 950040dbb8..2f017e2853 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_da.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_da.ts @@ -1975,7 +1975,7 @@ Default: OpToolDiameter Offset - Offset + Forskydning @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Stop - + Activate / resume simulation Activate / resume simulation - + Play Afspil @@ -3980,7 +3980,7 @@ Default: OpToolDiameter Offset - Offset + Forskydning @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6098,7 +6098,7 @@ Default: 3 mm Offset - Offset + Forskydning @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -7735,7 +7735,7 @@ For example: Offset - Offset + Forskydning @@ -8024,7 +8024,7 @@ For example: Offset - Offset + Forskydning @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Værktøj - + Shape Shape - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_de.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_de.ts index 1f568b58f9..210dbc4ee6 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_de.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_de.ts @@ -3310,13 +3310,13 @@ Sollten mehrere Werkzeuge oder Werkzeugformen mit dem gleichen Namen in verschie Beenden - + Activate / resume simulation Wiederaufnahme der Simulation - + Play Wiedergabe @@ -4079,60 +4079,60 @@ Standard: "3 mm" - Das Werkzeug sollte in diesem Fall auf Verbindungsfahrten imm Workbench - + Project Setup Projekteinrichtung - + Tool Commands Werkzeugbefehle - + New Operations Neue Bearbeitungen - - + + Path Modification Pfadmodifikation - + Helpful Tools Hilfreiche Werkzeuge - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Pfad-Aufbereitung - + Supplemental Commands Zusätzliche Befehle - + Specialty Operations Spezialbearbeitungen - + Utils Dienstprogramme @@ -4208,7 +4208,7 @@ Standard: "3 mm" - Das Werkzeug sollte in diesem Fall auf Verbindungsfahrten imm Schneidkantenwinkel (%.2f) führt zu negativer Länge der Werkzeugspitze - + Save Sanity Check Report Sanity Check Report speichern @@ -6341,7 +6341,7 @@ Abbruch der OP-Erstellung - + CAM CAM @@ -6358,7 +6358,7 @@ Abbruch der OP-Erstellung CAM_3dTools - + 3D Operations 3D-Bearbeitungen @@ -8501,34 +8501,34 @@ Zum Beispiel: Beispieldateien in das neue {} Verzeichnis kopieren? - - + + Tooltable JSON (*.fctl) Werkzeugtabelle JSON (*.fctl) - - + + Save toolbit library Werkzeugbibliothek speichern - + Tool Werkzeug - + Shape Form - + LinuxCNC tooltable (*.tbl) LinuxCNC Werkzeugtabelle (*.tbl) - + CAMotics tooltable (*.json) CAMotics-Werkzeugtabelle (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_el.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_el.ts index 702627745c..04044ab9ba 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_el.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_el.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Διακοπή - + Activate / resume simulation Activate / resume simulation - + Play Αναπαραγωγή @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Εργαλείο - + Shape Σχήμα - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_es-AR.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_es-AR.ts index 1a73037e18..5f15d1b19d 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_es-AR.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_es-AR.ts @@ -649,7 +649,7 @@ Para material a partir de la caja delimitadora del objeto Base, significa el mat If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone - Si está marcado, la ruta es restringida por el sólido. De lo contrario, el volumen del sólido describe una zona de' exclusión' + Si está marcado, la trayectoria es restringida por el sólido. De lo contrario, el volumen del sólido describe una zona de' exclusión' @@ -2628,9 +2628,9 @@ Vea la política de guardado de archivos abajo sobre cómo tratar los conflictos References to Tool Bits and their shapes can either be stored with an absolute path or with a relative path to the search path. Generally it is recommended to use relative paths due to their flexibility and robustness to layout changes. Should multiple tools or tool shapes with the same name exist in different directories it can be required to use absolute paths. - Referencias a fresas y sus formas pueden almacenarse con una ruta absoluta o con una ruta relativa a la ruta de búsqueda. -Generalmente se recomienda utilizar rutas relativas debido a su flexibilidad y robustez a los cambios de diseño. -Si existen múltiples herramientas o formas de herramientas con el mismo nombre en diferentes directorios, puede ser necesario utilizar rutas absolutas. + Referencias a fresas y sus formas pueden almacenarse con una trayectoria absoluta o con una trayectoria relativa a la trayectoria de búsqueda. +Generalmente se recomienda utilizar trayectorias relativas debido a su flexibilidad y robustez a los cambios de diseño. +Si existen múltiples herramientas o formas de herramientas con el mismo nombre en diferentes directorios, puede ser necesario utilizar trayectorias absolutas. @@ -2939,7 +2939,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Dressup - Dressup + retoque @@ -2949,12 +2949,12 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> - <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> + <html><head/><body><p>Seleccionar el estilo deseado del retoque de alivios de esquina:</p><p><span style=" font-weight:600; font-style:italic;">Alivio de esquina redondeado</span> ... toma el camino más corto para cubrir la esquina,</p><p><span style=" font-weight:600; font-style:italic;">Alivio de esquina en T</span> . . extiende en una cierta dirección hasta que se cubra la esquina</p></body></html> Dogbone - Dogbone + alivio de esquina redondeado @@ -3004,7 +3004,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> - <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> + <html><head/><body><p>Determina la longitud de la incisión del alivio de esquinaHueso-T que se insertará en el perfil..</p><p><span style=" font-weight:600; font-style:italic;">adaptivo</span> ... la longitud se adapta para cubrir la esquina según el ángulo de sus bordes, teniendo en cuenta el radio actual de la herramienta (predeterminado)</p><p><span style=" font-weight:600; font-style:italic;">fijo</span> ... es lo mismo que el modo adaptativo para ángulos rectos. Para alivios de esquina en T es el radio de la herramienta (R) y para alivios de esquina redondeados es R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">personalizado</span> ... le deja especificar una longitud personalizada (fija) a continuación</p></body></html> @@ -3024,12 +3024,12 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> - <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> + <html><head/><body><p>Introduzca la longitud de cada alivio de esquina si <span style=" font-weight:600;">Incisión</span> se establece en <span style=" font-weight:600;">personalizado</span>, ignorado en caso contrario.</p></body></html> <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> - <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> + <html><head/><body><p>Lista de ubicaciones de los alivios de esquina (con todos los alivios de esquina en esa ubicación) que forman parte de este retoque. La lista está determinada por las esquinas del perfil y la zona seleccionada. <span style=" font-weight:600;">De lado</span> para los alivios de esquina. </p><p>Puede <span style=" font-weight:600;">desmarcar</span> los alivios de esquina que no quiere que sean retocados.</p><p>Si un alivio de essquina está <span style=" font-weight:600;">atenuado</span> significa que ya ha sido retocado por un retoque anterior. O dicho de otra manera, si vuelve a retocar este alivio de esquina, solo podrá seleccionar los alivios de esquina que no están marcados aquí.</p><p>Si esta lista está vacía, probablemente significa que lo está intentando crear alivios de esquina en el lado equivocado del perfil.</p></body></html> @@ -3099,7 +3099,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. - Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. + Altura de la pestaña.Tenga en cuenta que la etiqueta resultante puede ser más pequeña si el ancho y el ángulo de la pestaña resultan en una forma triangular. @@ -3114,7 +3114,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. - List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. + Lista de pestañas actuales. Edite coordenadas haciendo doble clic o el botón Editar. Las pestañas se deshabilitan automáticamente si se superponen con la pestaña anterior, o no se encuentran sobre el alambre base. @@ -3313,13 +3313,13 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Parar - + Activate / resume simulation Activar / reanudar simulación - + Play Reproducir @@ -3671,8 +3671,8 @@ Ordenar por operación hará cada operación en todos los sistemas de coordenada <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> - <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. -FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> + <html><head/><body><p><span style=" font-style:italic;">Sistemas de coordenadas de trabajo</span> también llamadas <span style=" font-style:italic;">Desplazamientos de trabajo</span>, <span style=" font-style:italic;">Desplazamientos de fijaciones</span>, o <span style=" font-style:italic;">Fijaciones </span>son útiles para crear trabajos de producción eficientes en los que la misma pieza se realiza muchas veces en la máquina. +FreeCAD no tiene conocimiento de dónde existe un sistema de coordenadas particular dentro del sistema de coordenadas de la máquina, por lo que agregar sistemas de coordenadas adicionales a su trabajo no tendrá ningún cambio visual dentro de su trabajo. Sin embargo, cambiará la salida del código G. La forma exacta en que se ve afectada la salida está controlada por el ajuste de 'order by'ordenar por</p></body></html> @@ -3927,13 +3927,13 @@ For example, if <span style=" font-style:italic;">order by</s If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> - <html><head/><body><p>If True, post processing will create multiple output files based on the <span style=" font-style:italic;">order by</span> setting. + <html><head/><body><p>Si es Verdadero, el posprocesamiento creará múltiples archivos de salida según el ajuste de <span style=" font-style:italic;">ordenar por</span>. -For example, if <span style=" font-style:italic;">order by</span> is set to Tool, the first output file will contain the first tool change and all operations, in all coordinate systems, that can be done with that tool before the next tool change is called. +Por ejemplo, si el ajuste <span style=" font-style:italic;">ordenar por</span> está configurado en Herramienta, el primer archivo de salida contendrá el primer cambio de herramienta y todas las operaciones, en todos los sistemas de coordenadas, que se pueden realizar con esa herramienta antes de llamar al siguiente cambio de herramienta. -If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> +Si <span style=" font-style:italic;">ordenar por</span> está configurado en <span style=" font-style:italic;">operación</span> y <span style=" font-style:italic;">separar salida</span> es verdadero, cada operación se escribirá en un archivo separado.</p></body></html> @@ -4082,60 +4082,60 @@ Por defecto: 3 mm Workbench - + Project Setup Configuración del proyecto - + Tool Commands Comandos de herramienta - + New Operations Nuevas Operaciones - - + + Path Modification Modificación de trayectoria - + Helpful Tools Herramientas útiles - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Superficie de trayectoria - + Supplemental Commands Comandos adicionales - + Specialty Operations Operaciones de Especialidad - + Utils Utilidades @@ -4211,7 +4211,7 @@ Por defecto: 3 mm El ángulo de esquina de corte (%.2f) da como resultado una longitud de punta negativa de la herramienta - + Save Sanity Check Report Guardar informe de comprobación básica @@ -4373,13 +4373,13 @@ Por defecto: 3 mm Dressup length if incision is set to 'custom' - Dressup length if incision is set to 'custom' + Longitud de retoque si incisión es 'personalizado' Bones that aren't dressed up - Bones that aren't dressed up + Alivios de esquina que no son retocados @@ -4462,17 +4462,17 @@ Por defecto: 3 mm Calculate roll-on to toolpath - Calculate roll-on to toolpath + Calcular entrada gradual hacia trayectoria de herramienta Calculate roll-off from toolpath - Calculate roll-off from toolpath + Calcular salida gradual desde trayectoria de herramienta Keep the Tool Down in toolpath - Keep the Tool Down in toolpath + Mantener la herramienta abajo en la trayectoria de herramienta @@ -4985,7 +4985,7 @@ Por defecto: 3 mm Use G85 boring cycle with feed out - Use G85 boring cycle with feed out + Utilizar G85 ciclo de mandrinado con avance de salida @@ -5304,7 +5304,7 @@ Por defecto: 3 mm The custom start point for the toolpath of this operation - The custom start point for the toolpath of this operation + El punto de inicio personalizado para la trayectoria de herramienta de esta operación @@ -5446,7 +5446,7 @@ Por defecto: 3 mm Set the stepover percentage, based on the tool's diameter. - Set the stepover percentage, based on the tool's diameter. + Establecer el porcentaje de solapamiento, basado en el diámetro de la herramienta. @@ -5597,7 +5597,7 @@ Por defecto: 3 mm The toolpath(s) to array - The toolpath(s) to array + La(s) trayectoria(s) a la matriz @@ -6344,7 +6344,7 @@ Abortando la creación de la op - + CAM CAM @@ -6361,7 +6361,7 @@ Abortando la creación de la op CAM_3dTools - + 3D Operations Operaciones 3D @@ -6572,7 +6572,7 @@ Abortando la creación de la op Creates a Boundary Dress-up from a selected toolpath - Creates a Boundary Dress-up from a selected toolpath + Crea un retoque de contorno a partir de la trayectoria de herramienta seleccionada @@ -6600,7 +6600,7 @@ Abortando la creación de la op Holding Tag - Colocación de etiqueta + Pestaña @@ -6610,7 +6610,7 @@ Abortando la creación de la op Creates a Tag Dress-up object from a selected toolpath - Creates a Tag Dress-up object from a selected toolpath + Crea un objeto de retoque de pestaña a partir de una trayectoria de herramienta seleccionada @@ -6662,13 +6662,13 @@ Abortando la creación de la op Dogbone - Dogbone + alivio de esquina redondeado Creates a Dogbone Dress-up object from a selected toolpath - Creates a Dogbone Dress-up object from a selected toolpath + Crea un objeto de retoque de alivio de esquina redondeado a partir de una trayectoria de herramienta seleccionada @@ -6693,7 +6693,7 @@ Abortando la creación de la op Modifies a toolpath to add dragknife corner actions - Modifies a toolpath to add dragknife corner actions + Modifica una trayectoria de herramienta para agregar acciones de esquina de cuchilla @@ -6769,7 +6769,7 @@ Abortando la creación de la op Creates a Ramp Entry Dress-up object from a selected toolpath - Creates a Ramp Entry Dress-up object from a selected toolpath + Crea un objeto de retoque de entrada en rampa a partir de una trayectoria de herramienta seleccionada @@ -6957,17 +6957,17 @@ For example: 'Metric, Small Parts & CNC' 'US Customary' 'Imperial Decimal' - The currently selected unit schema: - '{}' for this document - Does not use 'minutes' for velocity values. + El esquema de unidadades seleccionadoactualmente: + '{}' para este documento + No utiliza 'minutos' para valores de velocidad. -CNC machines require feed rate to be expressed in -unit/minute. To ensure correct G-code: -Select a minute-based schema in preferences. -For example: - 'Metric, Small Parts & CNC' - 'US Customary' - 'Imperial Decimal' +Las máquinas CNC requieren que la velocidad de avance se exprese en +unidad/minuto. Para garantizar un código G correcto: +Seleccione un esquema basado en minutos en las preferencias. +Por ejemplo: + 'Métrico, piezas pequeñas y CNC' + 'Unidades tradicionales de EE.UU.' + 'Decimal imperial' @@ -7034,13 +7034,13 @@ For example: <b>Note</b>: This dialog shows Path Commands in FreeCAD base units (mm/s). Values will be converted to the desired unit during post processing. - <b>Note</b>: This dialog shows Path Commands in FreeCAD base units (mm/s). - Values will be converted to the desired unit during post processing. + <b>Nota</b>: Este diálogo muestra los comandos de trayectoria en las unidades base de FreeCAD (mm/s). + Los valores se convertirán a la unidad deseada durante el post-procesamiento. Inspect toolPath Commands - Inspect toolPath Commands + Inspeccionar comandos de trayectorias de herramienta @@ -7346,14 +7346,14 @@ For example: The Job's last post-processed file is missing - The Job's last post-processed file is missing + Falta el último archivo post-procesado del trabajo Tool number {} is a legacy tool. Legacy tools not supported by Path-Sanity - Tool number {} is a legacy tool. Legacy tools not - supported by Path-Sanity + El número de herramienta {} es una herramienta antigua. Las herramientas heredadas no + son soportadas por Path-Sanity @@ -7363,12 +7363,12 @@ For example: Toolbit Shape for TC: {} not found - Toolbit Shape for TC: {} not found + Forma de herramienta para TC: {} no encontrada Tool Controller '{}' has no feedrate - Tool Controller '{}' has no feedrate + El controlador de herramientas '{}' no tiene velocidad de avance @@ -7378,7 +7378,7 @@ For example: Tool Controller '{}' is not used - Tool Controller '{}' is not used + El controlador de herramientas '{}' no está en uso @@ -7486,7 +7486,7 @@ For example: Parent job %s doesn't have a base object - Parent job %s doesn't have a base object + El trabajo padre %s no tiene un objeto base @@ -7600,17 +7600,17 @@ For example: Adaptive operation couldn't determine the boundary wire. Did you select base geometry? - Adaptive operation couldn't determine the boundary wire. Did you select base geometry? + La operación adaptativa no pudo determinar el alambre límite. ¿Ha seleccionado la geometría base? This operation requires a tool controller with a probe tool - This operation requires a tool controller with a probe tool + Esta operación requiere un controlador de herramienta con una sonda This operation requires a tool controller with a threadmilling tool - This operation requires a tool controller with a threadmilling tool + Esta operación requiere un controlador de herramienta con una herramienta de roscado @@ -7648,7 +7648,7 @@ For example: Creates a Drilling toolpath from the features of a base object - Creates a Drilling toolpath from the features of a base object + Crea una trayectoria de herramienta de perforación a partir de las características de un objeto base @@ -7661,7 +7661,7 @@ For example: Creates a Helical toolpath from the features of a base object - Creates a Helical toolpath from the features of a base object + Crea una trayectoria de herramienta de hélice a partir de las características de un objeto base @@ -7862,12 +7862,12 @@ For example: Custom points are identical. No slot path will be generated - Custom points are identical. No slot path will be generated + Los puntos personalizados son idénticos. No se generará ninguna trayectoria de ranura Custom points not at same Z height. No slot path will be generated - Custom points not at same Z height. No slot path will be generated + Los puntos personalizados no están a la misma altura Z. No se generará ninguna trayectoria de ranura @@ -7877,7 +7877,7 @@ For example: No path extensions available for full circles. - No hay extensiones de ruta disponibles para círculos completos. + No hay extensiones de trayectoria disponibles para círculos completos. @@ -7889,7 +7889,7 @@ For example: Verify slot path start and end points. - Verifique los puntos de inicio y final de la ruta de la ranura. + Verifique los puntos de inicio y final de la trayectoria de la ranura. @@ -8183,7 +8183,7 @@ For example: Creates a Thread Milling toolpath from features of a base object - Creates a Thread Milling toolpath from features of a base object + Crea una trayectoria de herramienta de roscado a partir de las características de un objeto base @@ -8191,7 +8191,7 @@ For example: VCarve requires an engraving cutter with a cutting edge angle - Vtalve requiere un cortador de grillaje con ángulo de corte + VCarve requiere un cortador de grillaje con ángulo de corte @@ -8206,7 +8206,7 @@ For example: Creates a medial line engraving toolpath - Creates a medial line engraving toolpath + Crea una línea central de trayectoria de herramienta de grabado @@ -8219,12 +8219,12 @@ For example: Creates an array from selected toolpath(s) - Creates an array from selected toolpath(s) + Crea una matriz a partir de la(s) trayecrtorias(s) de herramienta seleccionadas Arrays can be created only from toolpath operations. - Arrays can be created only from toolpath operations. + Las matrices sólo pueden ser creadas desde operaciones de trayectoria de herramienta. @@ -8276,7 +8276,7 @@ For example: Creates a Deburr toolpath along Edges or around Faces - Creates a Deburr toolpath along Edges or around Faces + Crea una trayectoria de herramienta de desbarbado a lo largo de las aristas o alrededor de las caras @@ -8289,7 +8289,7 @@ For example: Creates an Engraving toolpath around a Draft ShapeString - Creates an Engraving toolpath around a Draft ShapeString + Crea una trayectoria de herramienta de grabado alrededor de una forma de cadena de texto de Draft @@ -8315,7 +8315,7 @@ For example: Creates a 3D Pocket toolpath from a face or faces - Creates a 3D Pocket toolpath from a face or faces + Crea la trayectoria de herramienta de un vaciado 3D desde una cara o caras @@ -8328,7 +8328,7 @@ For example: Creates a pocket toolpath from a face or faces - Creates a pocket toolpath from a face or faces + Crea la trayectoria de herramienta de un vaciado desde una cara o caras @@ -8368,12 +8368,12 @@ For example: Waterline - línea de navegación + Línea de nivel Create a Waterline toolpath from a model - Create a Waterline toolpath from a model + Crear una trayectoria de herramienta de línea de nivel a partir de un modelo @@ -8504,34 +8504,34 @@ For example: ¿Copiar archivos de ejemplo al nuevo directorio {}? - - + + Tooltable JSON (*.fctl) JSON Tooltable (*.fctl) - - + + Save toolbit library Guardar librería "toolbit" - + Tool Herramienta - + Shape Forma - + LinuxCNC tooltable (*.tbl) Tabla de herramientas LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) Tabla de herramientas CAMotics (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_es-ES.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_es-ES.ts index 93f2a1aacc..0424f311b9 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_es-ES.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_es-ES.ts @@ -78,27 +78,27 @@ Create Path Area View - Crear Vista de Área de Ruta + Crear Vista de Área de Trayectoria Create Path Area - Crear Área de Ruta + Crear Área de Trayectoria Select Workplane for Path Area - Seleccionar Plano de Trabajo para el Área de Ruta + Seleccionar Plano de Trabajo para el Área de Trayectoria Create Path Compound - Crear Ruta Compuesta + Crear Trayectoria Compuesta Create Path Shape - Crear Forma de Ruta + Crear Forma de Trayectoria @@ -116,7 +116,7 @@ Select a template to be used for the job. In case there are no templates you can create one through the popup menu of an existing job. Name the file job_*.json and place it in the macro or the path directory (see preferences) in order to be selectable from this list. - Seleccione una plantilla para el trabajo. En caso de que no haya plantillas puede crear una a través del menú emergente de un trabajo existente. Nombre el archivo job_*.json y colóquelo en la macro o en el directorio de rutas (ver preferencias) para ser seleccionable de esta lista. + Seleccione una plantilla para el trabajo. En caso de que no haya plantillas puede crear una a través del menú emergente de un trabajo existente. Nombre el archivo job_*.json y colóquelo en la macro o en la ruta del directorio (ver preferencias) para ser seleccionable de esta lista. @@ -554,7 +554,7 @@ Para material a partir de la caja delimitadora del objeto Base, significa el mat Select what type of shape to use to constrain the underlying Path. - Seleccione qué tipo de forma usar para restringir la ruta subyacente. + Seleccione qué tipo de forma usar para restringir la trayectoria subyacente. @@ -574,7 +574,7 @@ Para material a partir de la caja delimitadora del objeto Base, significa el mat Select the body to be used to constrain the underlying Path. - Seleccione el cuerpo a utilizar para restringir la ruta subyacente. + Seleccione el cuerpo a utilizar para restringir la trayectoria subyacente. @@ -649,7 +649,7 @@ Para material a partir de la caja delimitadora del objeto Base, significa el mat If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone - Si está marcado, la ruta es restringida por el sólido. De lo contrario, el volumen del sólido describe una zona de' exclusión' + Si está marcado, la trayectoria es restringida por el sólido. De lo contrario, el volumen del sólido describe una zona de' exclusión' @@ -1058,7 +1058,7 @@ Restablecer elimina todos los elementos actuales de la lista y llena la lista co How much to lift the tool up during the rapid linking moves over cleared regions. If linking path is not clear tool is raised to clearance height. - Cuánto levantar la herramienta durante el enlace rápido movido sobre las regiones despejadas. Si la ruta de enlace no está despejada se eleva a la altura libre. + Cuánto levantar la herramienta durante el enlace rápido movido sobre las regiones despejadas. Si la trayectoria de enlace no está despejada se eleva a la altura libre. @@ -1695,7 +1695,7 @@ Este último se puede utilizar para hacer frente a todo el área de stock para a Extend Path Start - Extender Ruta Inicial + Extender Trayectoria Inicial @@ -1705,7 +1705,7 @@ Este último se puede utilizar para hacer frente a todo el área de stock para a Extend Path End - Extender Ruta Final + Extender Trayectoria Final @@ -1737,7 +1737,7 @@ Este último se puede utilizar para hacer frente a todo el área de stock para a Path Orientation - Orientación de la Ruta + Orientación de la Trayectoria @@ -1913,7 +1913,7 @@ Un paso por encima del 100% da como resultado que no haya superposición entre d Optimize Linear Paths - Optimizar Rutas Lineales + Optimizar Trayectorias Lineales @@ -2113,7 +2113,7 @@ Por defecto: 3 mm This value is used in discretizing arcs into segments. Smaller values will result in larger gcode. Larger values may cause unwanted segments in the medial line path. - Este valor se utiliza para discrepar los arcos en segmentos. Los valores más pequeños resultarán en un código más grande. Los valores más grandes pueden causar segmentos no deseados en la ruta de línea medial. + Este valor se utiliza para discretizar los arcos en segmentos. Los valores más pequeños resultarán en un código más grande. Los valores más grandes pueden causar segmentos no deseados en la trayectoria de línea central. @@ -2276,23 +2276,23 @@ Por defecto: 3 mm Set the default width of holding tags. If the width is set to 0 the dressup will try to guess a reasonable value based on the path itself. - Establecer el ancho por defecto de las etiquetas sostenidas. + Establecer el ancho por defecto de las pestañas. -Si el ancho se establece a 0, el revestimiento intentará adivinar un valor razonable basado en la ruta misma. +Si el ancho se establece a 0, el retoque intentará adivinar un valor razonable basado en la trayectoria misma. Default height of holding tags. If the specified height is 0 the dressup will use half the height of the part. Should the height be bigger than the height of the part the dressup will reduce the height to the height of the part. - Altura predeterminada de las etiquetas sostenidas. + Altura predeterminada de las pestañas. -Si la altura especificada es 0, el revestido usará la mitad de la altura de la parte. Si la altura es mayor que la altura de la pieza, el revestimiento reducirá la altura a la altura de la pieza. +Si la altura especificada es 0, el retoque usará la mitad de la altura de la parte. Si la altura es mayor que la altura de la pieza, el retoque reducirá la altura a la altura de la pieza. Plunge angle for ascent and descent of holding tag. - Ángulo de plegado para ascenso y descenso de la etiqueta sostenida. + Ángulo de inmersión para ascenso y descenso de la pestaña. @@ -2379,7 +2379,7 @@ Si el radio es mayor que el que soporta la forma de la etiqueta, la forma result Default value for new Jobs, used for computing Paths. Smaller increases accuracy, but slows down computation - Valor predeterminado para nuevos trabajos, usado para calcular rutas. Más pequeño aumenta la precisión, pero ralentiza el cálculo + Valor predeterminado para nuevos trabajos, usado para calcular trayectorias. Más pequeño aumenta la precisión, pero ralentiza el cálculo @@ -2628,9 +2628,9 @@ Vea la política de guardado de archivos abajo sobre cómo tratar los conflictos References to Tool Bits and their shapes can either be stored with an absolute path or with a relative path to the search path. Generally it is recommended to use relative paths due to their flexibility and robustness to layout changes. Should multiple tools or tool shapes with the same name exist in different directories it can be required to use absolute paths. - Referencias a fresas y sus formas pueden almacenarse con una ruta absoluta o con una ruta relativa a la ruta de búsqueda. -Generalmente se recomienda utilizar rutas relativas debido a su flexibilidad y robustez a los cambios de diseño. -Si existen múltiples herramientas o formas de herramientas con el mismo nombre en diferentes directorios, puede ser necesario utilizar rutas absolutas. + Referencias a fresas y sus formas pueden almacenarse con una trayectoria absoluta o con una trayectoria relativa a la trayectoria de búsqueda. +Generalmente se recomienda utilizar trayectorias relativas debido a su flexibilidad y robustez a los cambios de diseño. +Si existen múltiples herramientas o formas de herramientas con el mismo nombre en diferentes directorios, puede ser necesario utilizar trayectorias absolutas. @@ -2732,12 +2732,12 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Path Selection Style - Estilo de Selección de Ruta + Estilo de Selección de Trayectoria Default path shape selection behavior in 3D viewer - Comportamiento por defecto de la selección de la forma de ruta en el visor 3D + Comportamiento por defecto de la selección de la forma de trayectoria en el visor 3D @@ -2813,7 +2813,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Suppress warning whenever a Path selection mode is activated - Suprimir advertencia cada vez que se activa un modo de selección de ruta + Suprimir advertencia cada vez que se activa un modo de selección de trayectoria @@ -2933,13 +2933,13 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Dogbones - Huesos de Perro + Alivios de esquina redondeada Dressup - Dressup + retoque @@ -2949,17 +2949,17 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> - <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> + <html><head/><body><p>Seleccionar el estilo deseado del retoque de alivios de esquina:</p><p><span style=" font-weight:600; font-style:italic;">Alivio de esquina redondeado</span> ... toma el camino más corto para cubrir la esquina,</p><p><span style=" font-weight:600; font-style:italic;">Alivio de esquina en T</span> . . extiende en una cierta dirección hasta que se cubra la esquina</p></body></html> Dogbone - Dogbone + alivio de esquina redondeado T-bone horizontal - T-Hueso horizontal + Alivio de esquina en T horizontal @@ -2984,7 +2984,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre On which side of the profile bones are inserted - this also determines which corners are dressed up. The default value is determined based on the profile being dressed up. - En el lado en que se insertan los huesos del perfil - esto también determina qué esquinas se revestirán. El valor por defecto se determina basándose en el perfil que está siendo revestido. + En el lado en que se insertan los alivios de esquina del perfil - esto también determina qué esquinas serán retocadas. El valor por defecto se determina basándose en el perfil que está siendo retocado. @@ -3004,7 +3004,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> - <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> + <html><head/><body><p>Determina la longitud de la incisión del alivio de esquinaHueso-T que se insertará en el perfil..</p><p><span style=" font-weight:600; font-style:italic;">adaptivo</span> ... la longitud se adapta para cubrir la esquina según el ángulo de sus bordes, teniendo en cuenta el radio actual de la herramienta (predeterminado)</p><p><span style=" font-weight:600; font-style:italic;">fijo</span> ... es lo mismo que el modo adaptativo para ángulos rectos. Para alivios de esquina en T es el radio de la herramienta (R) y para alivios de esquina redondeados es R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">personalizado</span> ... le deja especificar una longitud personalizada (fija) a continuación</p></body></html> @@ -3024,12 +3024,12 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> - <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> + <html><head/><body><p>Introduzca la longitud de cada alivio de esquina si <span style=" font-weight:600;">Incisión</span> se establece en <span style=" font-weight:600;">personalizado</span>, ignorado en caso contrario.</p></body></html> <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> - <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> + <html><head/><body><p>Lista de ubicaciones de los alivios de esquina (con todos los alivios de esquina en esa ubicación) que forman parte de este retoque. La lista está determinada por las esquinas del perfil y la zona seleccionada. <span style=" font-weight:600;">De lado</span> para los alivios de esquina. </p><p>Puede <span style=" font-weight:600;">desmarcar</span> los alivios de esquina que no quiere que sean retocados.</p><p>Si un alivio de essquina está <span style=" font-weight:600;">atenuado</span> significa que ya ha sido retocado por un retoque anterior. O dicho de otra manera, si vuelve a retocar este alivio de esquina, solo podrá seleccionar los alivios de esquina que no están marcados aquí.</p><p>Si esta lista está vacía, probablemente significa que lo está intentando crear alivios de esquina en el lado equivocado del perfil.</p></body></html> @@ -3074,7 +3074,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Holding Tags - Etiquetas Sostenidas + Pestañas @@ -3099,12 +3099,12 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. - Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. + Altura de la pestaña.Tenga en cuenta que la etiqueta resultante puede ser más pequeña si el ancho y el ángulo de la pestaña resultan en una forma triangular. Plunge angle for ascent and descent of holding tag. - Ángulo de plegado para ascenso y descenso de la etiqueta sostenida. + Ángulo de inmersión para ascenso y descenso de la pestaña. @@ -3114,7 +3114,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. - List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. + Lista de pestañas actuales. Edite coordenadas haciendo doble clic o el botón Editar. Las pestañas se deshabilitan automáticamente si se superponen con la pestaña anterior, o no se encuentran sobre el alambre base. @@ -3185,7 +3185,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Update the path with the removed and reordered items. - Actualizar la ruta con los elementos eliminados y reordenados. + Actualizar la trayectoria con los elementos eliminados y reordenados. @@ -3300,7 +3300,7 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Path Simulator - Simulador de Ruta + Simulador de Trayectoria @@ -3313,13 +3313,13 @@ Si existen múltiples herramientas o formas de herramientas con el mismo nombre Parar - + Activate / resume simulation Activar / reanudar simulación - + Play Reproducir @@ -3671,8 +3671,8 @@ Ordenar por operación hará cada operación en todos los sistemas de coordenada <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> - <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. -FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> + <html><head/><body><p><span style=" font-style:italic;">Sistemas de coordenadas de trabajo</span> también llamadas <span style=" font-style:italic;">Desplazamientos de trabajo</span>, <span style=" font-style:italic;">Desplazamientos de fijaciones</span>, o <span style=" font-style:italic;">Fijaciones </span>son útiles para crear trabajos de producción eficientes en los que la misma pieza se realiza muchas veces en la máquina. +FreeCAD no tiene conocimiento de dónde existe un sistema de coordenadas particular dentro del sistema de coordenadas de la máquina, por lo que agregar sistemas de coordenadas adicionales a su trabajo no tendrá ningún cambio visual dentro de su trabajo. Sin embargo, cambiará la salida del código G. La forma exacta en que se ve afectada la salida está controlada por el ajuste de 'order by'ordenar por</p></body></html> @@ -3927,13 +3927,13 @@ For example, if <span style=" font-style:italic;">order by</s If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> - <html><head/><body><p>If True, post processing will create multiple output files based on the <span style=" font-style:italic;">order by</span> setting. + <html><head/><body><p>Si es Verdadero, el posprocesamiento creará múltiples archivos de salida según el ajuste de <span style=" font-style:italic;">ordenar por</span>. -For example, if <span style=" font-style:italic;">order by</span> is set to Tool, the first output file will contain the first tool change and all operations, in all coordinate systems, that can be done with that tool before the next tool change is called. +Por ejemplo, si el ajuste <span style=" font-style:italic;">ordenar por</span> está configurado en Herramienta, el primer archivo de salida contendrá el primer cambio de herramienta y todas las operaciones, en todos los sistemas de coordenadas, que se pueden realizar con esa herramienta antes de llamar al siguiente cambio de herramienta. -If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> +Si <span style=" font-style:italic;">ordenar por</span> está configurado en <span style=" font-style:italic;">operación</span> y <span style=" font-style:italic;">separar salida</span> es verdadero, cada operación se escribirá en un archivo separado.</p></body></html> @@ -4082,60 +4082,60 @@ Por defecto: 3 mm Workbench - + Project Setup Configuración del proyecto - + Tool Commands Comandos de herramienta - + New Operations Nuevas Operaciones - - + + Path Modification Modificación de trayectoria - + Helpful Tools Herramientas útiles - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Superficie de trayectoria - + Supplemental Commands Comandos adicionales - + Specialty Operations Operaciones de Especialidad - + Utils Utilidades @@ -4211,7 +4211,7 @@ Por defecto: 3 mm El ángulo de esquina de corte (%.2f) da como resultado una longitud de punta negativa de la herramienta - + Save Sanity Check Report Guardar informe de comprobación básica @@ -4349,37 +4349,37 @@ Por defecto: 3 mm The base path to dress up - Ruta predeterminada para compilar + Trayectoria predeterminada para compilar The side of path to insert bones - El lado de la ruta a insertar huesos + El lado de la trayectoria a insertar alivios de esquina The style of bones - Estilo de Huesos + El estilo de los alivios de esquina The algorithm to determine the bone length - El algoritmo para determinar la longitud del hueso + El algoritmo para determinar la longitud del alivio de esquina Dressup length if incision is set to 'custom' - Dressup length if incision is set to 'custom' + Longitud de retoque si incisión es 'personalizado' Bones that aren't dressed up - Bones that aren't dressed up + Alivios de esquina que no son retocados @@ -4462,17 +4462,17 @@ Por defecto: 3 mm Calculate roll-on to toolpath - Calculate roll-on to toolpath + Calcular entrada gradual hacia trayectoria de herramienta Calculate roll-off from toolpath - Calculate roll-off from toolpath + Calcular salida gradual desde trayectoria de herramienta Keep the Tool Down in toolpath - Keep the Tool Down in toolpath + Mantener la herramienta abajo en la trayectoria de herramienta @@ -4583,7 +4583,7 @@ Por defecto: 3 mm For computing Paths; smaller increases accuracy, but slows down computation - Para rutas de cómputo; más pequeñas aumenta la precisión, pero ralentiza el cálculo + Para trayectorias de cómputo; más pequeñas aumenta la precisión, pero ralentiza el cálculo @@ -4751,7 +4751,7 @@ Por defecto: 3 mm Max length of keep tool down path compared to direct distance between points - Longitud máxima de la herramienta en la ruta comparada con la distancia directa entre puntos + Longitud máxima de la herramienta en la trayectoria comparada con la distancia directa entre puntos @@ -4985,7 +4985,7 @@ Por defecto: 3 mm Use G85 boring cycle with feed out - Use G85 boring cycle with feed out + Utilizar G85 ciclo de mandrinado con avance de salida @@ -5146,7 +5146,7 @@ Por defecto: 3 mm Use 3D Sorting of Path - Usar clasificación 3D de ruta + Usar clasificación 3D de trayectoria @@ -5304,7 +5304,7 @@ Por defecto: 3 mm The custom start point for the toolpath of this operation - The custom start point for the toolpath of this operation + El punto de inicio personalizado para la trayectoria de herramienta de esta operación @@ -5446,7 +5446,7 @@ Por defecto: 3 mm Set the stepover percentage, based on the tool's diameter. - Set the stepover percentage, based on the tool's diameter. + Establecer el porcentaje de solapamiento, basado en el diámetro de la herramienta. @@ -5597,7 +5597,7 @@ Por defecto: 3 mm The toolpath(s) to array - The toolpath(s) to array + La(s) trayectoria(s) a la matriz @@ -5869,7 +5869,7 @@ Por defecto: 3 mm Unable to create path for face(s). - No se puede crear la ruta para la(s) cara(s). + No se puede crear la trayectoria para la(s) cara(s). @@ -5935,7 +5935,7 @@ Por defecto: 3 mm No profile path geometry returned. - No se devolvió la geometría de la ruta del perfil. + No se devolvió la geometría de la trayectoria del perfil. @@ -5945,7 +5945,7 @@ Por defecto: 3 mm No clearing path geometry returned. - No se volvió a despejar ninguna geometría de ruta. + No se volvió a despejar ninguna geometría de trayectoria. @@ -6300,7 +6300,7 @@ Abortando la creación de la op No base objects for PathArray. - No hay objetos base para ruta. + No hay objetos base para trayectoria. @@ -6344,7 +6344,7 @@ Abortando la creación de la op - + CAM CAM @@ -6361,7 +6361,7 @@ Abortando la creación de la op CAM_3dTools - + 3D Operations Operaciones 3D @@ -6572,7 +6572,7 @@ Abortando la creación de la op Creates a Boundary Dress-up from a selected toolpath - Creates a Boundary Dress-up from a selected toolpath + Crea un retoque de contorno a partir de la trayectoria de herramienta seleccionada @@ -6600,7 +6600,7 @@ Abortando la creación de la op Holding Tag - Colocación de etiqueta + Pestaña @@ -6610,7 +6610,7 @@ Abortando la creación de la op Creates a Tag Dress-up object from a selected toolpath - Creates a Tag Dress-up object from a selected toolpath + Crea un objeto de retoque de pestaña a partir de una trayectoria de herramienta seleccionada @@ -6662,13 +6662,13 @@ Abortando la creación de la op Dogbone - Dogbone + alivio de esquina redondeado Creates a Dogbone Dress-up object from a selected toolpath - Creates a Dogbone Dress-up object from a selected toolpath + Crea un objeto de retoque de alivio de esquina redondeado a partir de una trayectoria de herramienta seleccionada @@ -6693,7 +6693,7 @@ Abortando la creación de la op Modifies a toolpath to add dragknife corner actions - Modifies a toolpath to add dragknife corner actions + Modifica una trayectoria de herramienta para agregar acciones de esquina de cuchilla @@ -6769,7 +6769,7 @@ Abortando la creación de la op Creates a Ramp Entry Dress-up object from a selected toolpath - Creates a Ramp Entry Dress-up object from a selected toolpath + Crea un objeto de retoque de entrada en rampa a partir de una trayectoria de herramienta seleccionada @@ -6957,17 +6957,17 @@ For example: 'Metric, Small Parts & CNC' 'US Customary' 'Imperial Decimal' - The currently selected unit schema: - '{}' for this document - Does not use 'minutes' for velocity values. + El esquema de unidadades seleccionadoactualmente: + '{}' para este documento + No utiliza 'minutos' para valores de velocidad. -CNC machines require feed rate to be expressed in -unit/minute. To ensure correct G-code: -Select a minute-based schema in preferences. -For example: - 'Metric, Small Parts & CNC' - 'US Customary' - 'Imperial Decimal' +Las máquinas CNC requieren que la velocidad de avance se exprese en +unidad/minuto. Para garantizar un código G correcto: +Seleccione un esquema basado en minutos en las preferencias. +Por ejemplo: + 'Métrico, piezas pequeñas y CNC' + 'Unidades tradicionales de EE.UU.' + 'Decimal imperial' @@ -7034,13 +7034,13 @@ For example: <b>Note</b>: This dialog shows Path Commands in FreeCAD base units (mm/s). Values will be converted to the desired unit during post processing. - <b>Note</b>: This dialog shows Path Commands in FreeCAD base units (mm/s). - Values will be converted to the desired unit during post processing. + <b>Nota</b>: Este diálogo muestra los comandos de trayectoria en las unidades base de FreeCAD (mm/s). + Los valores se convertirán a la unidad deseada durante el post-procesamiento. Inspect toolPath Commands - Inspect toolPath Commands + Inspeccionar comandos de trayectorias de herramienta @@ -7346,14 +7346,14 @@ For example: The Job's last post-processed file is missing - The Job's last post-processed file is missing + Falta el último archivo post-procesado del trabajo Tool number {} is a legacy tool. Legacy tools not supported by Path-Sanity - Tool number {} is a legacy tool. Legacy tools not - supported by Path-Sanity + El número de herramienta {} es una herramienta antigua. Las herramientas heredadas no + son soportadas por Path-Sanity @@ -7363,12 +7363,12 @@ For example: Toolbit Shape for TC: {} not found - Toolbit Shape for TC: {} not found + Forma de herramienta para TC: {} no encontrada Tool Controller '{}' has no feedrate - Tool Controller '{}' has no feedrate + El controlador de herramientas '{}' no tiene velocidad de avance @@ -7378,7 +7378,7 @@ For example: Tool Controller '{}' is not used - Tool Controller '{}' is not used + El controlador de herramientas '{}' no está en uso @@ -7486,7 +7486,7 @@ For example: Parent job %s doesn't have a base object - Parent job %s doesn't have a base object + El trabajo padre %s no tiene un objeto base @@ -7600,17 +7600,17 @@ For example: Adaptive operation couldn't determine the boundary wire. Did you select base geometry? - Adaptive operation couldn't determine the boundary wire. Did you select base geometry? + La operación adaptativa no pudo determinar el alambre límite. ¿Ha seleccionado la geometría base? This operation requires a tool controller with a probe tool - This operation requires a tool controller with a probe tool + Esta operación requiere un controlador de herramienta con una sonda This operation requires a tool controller with a threadmilling tool - This operation requires a tool controller with a threadmilling tool + Esta operación requiere un controlador de herramienta con una herramienta de roscado @@ -7648,7 +7648,7 @@ For example: Creates a Drilling toolpath from the features of a base object - Creates a Drilling toolpath from the features of a base object + Crea una trayectoria de herramienta de perforación a partir de las características de un objeto base @@ -7661,7 +7661,7 @@ For example: Creates a Helical toolpath from the features of a base object - Creates a Helical toolpath from the features of a base object + Crea una trayectoria de herramienta de hélice a partir de las características de un objeto base @@ -7862,12 +7862,12 @@ For example: Custom points are identical. No slot path will be generated - Custom points are identical. No slot path will be generated + Los puntos personalizados son idénticos. No se generará ninguna trayectoria de ranura Custom points not at same Z height. No slot path will be generated - Custom points not at same Z height. No slot path will be generated + Los puntos personalizados no están a la misma altura Z. No se generará ninguna trayectoria de ranura @@ -7877,7 +7877,7 @@ For example: No path extensions available for full circles. - No hay extensiones de ruta disponibles para círculos completos. + No hay extensiones de trayectoria disponibles para círculos completos. @@ -7889,7 +7889,7 @@ For example: Verify slot path start and end points. - Verifique los puntos de inicio y final de la ruta de la ranura. + Verifique los puntos de inicio y final de la trayectoria de la ranura. @@ -8183,7 +8183,7 @@ For example: Creates a Thread Milling toolpath from features of a base object - Creates a Thread Milling toolpath from features of a base object + Crea una trayectoria de herramienta de roscado a partir de las características de un objeto base @@ -8191,7 +8191,7 @@ For example: VCarve requires an engraving cutter with a cutting edge angle - Vtalve requiere un cortador de grillaje con ángulo de corte + VCarve requiere un cortador de grillaje con ángulo de corte @@ -8206,7 +8206,7 @@ For example: Creates a medial line engraving toolpath - Creates a medial line engraving toolpath + Crea una línea central de trayectoria de herramienta de grabado @@ -8219,12 +8219,12 @@ For example: Creates an array from selected toolpath(s) - Creates an array from selected toolpath(s) + Crea una matriz a partir de la(s) trayecrtorias(s) de herramienta seleccionadas Arrays can be created only from toolpath operations. - Arrays can be created only from toolpath operations. + Las matrices sólo pueden ser creadas desde operaciones de trayectoria de herramienta. @@ -8276,7 +8276,7 @@ For example: Creates a Deburr toolpath along Edges or around Faces - Creates a Deburr toolpath along Edges or around Faces + Crea una trayectoria de herramienta de desbarbado a lo largo de las aristas o alrededor de las caras @@ -8289,7 +8289,7 @@ For example: Creates an Engraving toolpath around a Draft ShapeString - Creates an Engraving toolpath around a Draft ShapeString + Crea una trayectoria de herramienta de grabado alrededor de una forma de cadena de texto de Draft @@ -8315,7 +8315,7 @@ For example: Creates a 3D Pocket toolpath from a face or faces - Creates a 3D Pocket toolpath from a face or faces + Crea la trayectoria de herramienta de un vaciado 3D desde una cara o caras @@ -8328,7 +8328,7 @@ For example: Creates a pocket toolpath from a face or faces - Creates a pocket toolpath from a face or faces + Crea la trayectoria de herramienta de un vaciado desde una cara o caras @@ -8368,12 +8368,12 @@ For example: Waterline - línea de navegación + Línea de nivel Create a Waterline toolpath from a model - Create a Waterline toolpath from a model + Crear una trayectoria de herramienta de línea de nivel a partir de un modelo @@ -8504,34 +8504,34 @@ For example: ¿Copiar archivos de ejemplo al nuevo directorio {}? - - + + Tooltable JSON (*.fctl) JSON Tooltable (*.fctl) - - + + Save toolbit library Guardar librería "toolbit" - + Tool Herramienta - + Shape Forma - + LinuxCNC tooltable (*.tbl) Tabla de herramientas LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) Tabla de herramientas CAMotics (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_eu.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_eu.ts index 5e14da3bab..8d98d2427a 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_eu.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_eu.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Gelditu - + Activate / resume simulation Aktibatu / berrabiarazi simulazioa - + Play Erreproduzitu @@ -4082,60 +4082,60 @@ Balio lehenetsia: 3 mm Workbench - + Project Setup Proiektuaren konfigurazioa - + Tool Commands Tresna-komandoak - + New Operations Eragiketa berriak - - + + Path Modification Bidearen aldaketa - + Helpful Tools Tresna lagungarriak - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Bidearen jantzia - + Supplemental Commands Komando osagarriak - + Specialty Operations Eragiketa bereziak - + Utils Utilitateak @@ -4211,7 +4211,7 @@ Balio lehenetsia: 3 mm Mozte-ertzaren angeluak (%.2f) tresna-puntaren luzera negatiboa ematen du - + Save Sanity Check Report Save Sanity Check Report @@ -6344,7 +6344,7 @@ Aukeren sorrera abortatzen - + CAM CAM @@ -6361,7 +6361,7 @@ Aukeren sorrera abortatzen CAM_3dTools - + 3D Operations 3D eragiketak @@ -8504,34 +8504,34 @@ Sortu? Kopiatu adibideko fitxategiak {} direktorio berrian? - - + + Tooltable JSON (*.fctl) JSON tresna-mahaia (*.fctl) - - + + Save toolbit library Gorde tresna-atalaren liburutegia - + Tool Tresna - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tresna-mahaia (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_fi.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_fi.ts index a85376637f..ba7f9b3c62 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_fi.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_fi.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Pysäytä - + Activate / resume simulation Activate / resume simulation - + Play Toista @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Työkalu - + Shape Muoto - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_fr.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_fr.ts index bd19f03de4..e88075bda3 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_fr.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_fr.ts @@ -29,7 +29,7 @@ Area workplane - Plan de travail de la zone + Zone du plan de travail @@ -1379,7 +1379,7 @@ Réinitialiser supprime tous les éléments en cours de la liste et remplit la l Specify if the facing should be restricted by the actual shape of the selected face (or the part if no face is selected), or if the bounding box should be faced off. The latter can be used to face of the entire stock area to ensure uniform heights for the following operations - Spécifier si le surfaçage doit être limité par la forme réelle de la face sélectionnée (ou de la pièce si aucune face n'est sélectionnée) ou si la boîte englobante doit être surfaçée. + Spécifier si le surfaçage doit être limité par la forme réelle de la face sélectionnée (ou de la pièce si aucune face n'est sélectionnée) ou si la boîte englobante doit être surfacée. Cette dernière option peut être utilisée pour le surfaçage de l'ensemble de la zone du brut afin de garantir des hauteurs uniformes pour les opérations suivantes. @@ -3127,7 +3127,9 @@ Si le rayon est trop grand pour la forme de l'attache, il est réduit au rayon m List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. - Liste des attaches actuelles. Pour modifier des coordonnées, double-cliquer ou par le bouton Éditer. Les attaches sont automatiquement désactivées si elles se chevauchent avec l'attache précédente ou si elles ne se trouvent pas sur la polyligne de base. + Liste des attaches actuelles. +Les coordonnées peuvent être modifiées en double-cliquant ou en utilisant le bouton Éditer. +Les attaches sont automatiquement désactivées si elles se chevauchent avec l'attache précédente ou si elles ne se trouvent pas sur la polyligne de base. @@ -3326,13 +3328,13 @@ Si le rayon est trop grand pour la forme de l'attache, il est réduit au rayon m Arrêter - + Activate / resume simulation Activer/reprendre la simulation - + Play Exécuter @@ -4093,60 +4095,60 @@ Par défaut : 3 mm Workbench - + Project Setup Configuration du projet - + Tool Commands Commandes de l’outil - + New Operations Nouvelles opérations - - + + Path Modification Modifications du parcours - + Helpful Tools Outils utiles - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Finitions du parcours - + Supplemental Commands Autres commandes - + Specialty Operations Opérations spécialisées - + Utils Utilitaires @@ -4222,7 +4224,7 @@ Par défaut : 3 mm L'angle du bord coupant (%.2f) entraîne une longueur négative de la pointe de l'outil - + Save Sanity Check Report Sauvegarder le rapport de contrôle de l'outil Rechercher des erreurs @@ -5613,7 +5615,7 @@ Rotationnel : balayage rotationnel sur le 4ᵉ axe. Pattern method - Méthode de motif + Méthode par gabarit @@ -6355,7 +6357,7 @@ Annulation de la création de l'opération - + CAM CAM @@ -6372,7 +6374,7 @@ Annulation de la création de l'opération CAM_3dTools - + 3D Operations Opérations 3D @@ -6382,7 +6384,7 @@ Annulation de la création de l'opération Finish Selecting Loop - Terminer la boucle de sélection + Sélectionner une boucle @@ -8509,34 +8511,34 @@ Les valeurs seront converties dans l'unité souhaitée pendant le post-traitemen Copier les fichiers des exemples dans le nouveau répertoire {} ? - - + + Tooltable JSON (*.fctl) Table d'outils en JSON (*.fctl) - - + + Save toolbit library Enregistrer la bibliothèque d'outils coupants - + Tool Outil - + Shape Forme - + LinuxCNC tooltable (*.tbl) Table d'outils LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) Table d'outils CAMotics (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_hr.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_hr.ts index 448171a8ac..b12b358eb7 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_hr.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_hr.ts @@ -3323,13 +3323,13 @@ Ako u različitim direktorijima postoje više alata ili oblika alata s istim ime Stop - + Activate / resume simulation Aktivirajte / nastavite simulaciju - + Play Pokreni @@ -4092,60 +4092,60 @@ Zadano: "3mm" Workbench - + Project Setup Projekt - Podešavanje - + Tool Commands Naredbe Alata - + New Operations Nove Operacije - - + + Path Modification Izmjene Puta - + Helpful Tools Korisni Alati - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Priprema Staze - + Supplemental Commands Dopunske Naredbe - + Specialty Operations Posebne operacije - + Utils UslužniProgrami @@ -4221,7 +4221,7 @@ Zadano: "3mm" Kut rezanja ruba (%.2f) rezultira negativnom duljinom vrha alata - + Save Sanity Check Report Save Sanity Check Report @@ -6379,7 +6379,7 @@ Prekidam OP-stvaranje. - + CAM CAM @@ -6396,7 +6396,7 @@ Prekidam OP-stvaranje. CAM_3dTools - + 3D Operations 3D Operacije @@ -8544,34 +8544,34 @@ Razmotrite specificiranje Materijala obrade Kopiraj primjerke datoteka u novi direktorij {}? - - + + Tooltable JSON (*.fctl) Tabela Alata JSON (* .fctl) - - + + Save toolbit library Spremi biblioteku nastavaka alata - + Tool Alat - + Shape Oblik - + LinuxCNC tooltable (*.tbl) LinuxCNC Tabela alata (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_hu.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_hu.ts index 7c81fd3601..1b82ed8174 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_hu.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_hu.ts @@ -3307,13 +3307,13 @@ Ha több azonos nevű eszköz vagy szerszámforma létezik különböző könyvt Megállít - + Activate / resume simulation Szimulátor aktiválás / folytatás - + Play Lejátszás @@ -4074,60 +4074,60 @@ Default: 3 mm Workbench - + Project Setup Terv beállító - + Tool Commands Eszköz parancsok - + New Operations Új műveletek - - + + Path Modification Szerszámpálya módosítása - + Helpful Tools Hasznos eszközök - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Szerszámpálya felépítés - + Supplemental Commands Kiegészítő parancsok - + Specialty Operations Speciális műveletek - + Utils Munkaeszközök @@ -4203,7 +4203,7 @@ Default: 3 mm Forgácsoló él szög (%.2f) eredménye negatív szerszám csúcs hossz - + Save Sanity Check Report Az érvényesítési jelentés mentése @@ -6337,7 +6337,7 @@ Az op-létrehozás megszakítása - + CAM CAM @@ -6354,7 +6354,7 @@ Az op-létrehozás megszakítása CAM_3dTools - + 3D Operations 3D műveletek @@ -8496,34 +8496,34 @@ Például: Példafájlok másolása új {} könyvtárba? - - + + Tooltable JSON (*.fctl) Eszközasztal JSON (*.json) - - + + Save toolbit library Szerszámkönyvtár mentése - + Tool Eszköz - + Shape Alakzat - + LinuxCNC tooltable (*.tbl) LinuxCNC szerszámlista (*.tbl) - + CAMotics tooltable (*.json) CAMotics eszköztábla (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_it.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_it.ts index 294837043a..60936353ca 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_it.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_it.ts @@ -224,11 +224,11 @@ Qualsiasi valore della SetupSheet modificato, rispetto al valore di default, vie This option is most useful if stock is a box or cylinder, or if the machine has a standard placement for machining. Note that this option is disabled if a stock object from an existing solid is used in the job - they cannot be stored in a template. - If enabled the creation of stock is included in the template. If a template does not include a stock definition the default stock creation algorithm will be used (creation from the Base object's bounding box). + Se abilitato, la creazione del grezzo è inclusa nel modello. Se un modello non include una definizione del grezzo, vsarà utilizzato l'algoritmo di creazione del grezzo predefinito (creazione dal box di delimitazione dell'oggetto base). -This option is most useful if stock is a box or cylinder, or if the machine has a standard placement for machining. +Questa opzione è particolarmente utile se il grezzo è una scatola o un cilindro o se la macchina ha un posizionamento standard per la lavorazione. -Note that this option is disabled if a stock object from an existing solid is used in the job - they cannot be stored in a template. +Si noti che questa opzione è disabilitata se nel lavoro viene utilizzato un oggetto grezzo da un solido esistente: non è possibile memorizzarlo in un modello. @@ -276,11 +276,11 @@ Si tenga presente che sono elencate solo le operazioni per le quali attualmente For Box and Cylinder stocks this means the actual size of the stock solid being created. For stock from the Base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's Base object and apply the stored extra settings. - If enabled the current size settings for the stock object are included in the template. + Se abilitato, le impostazioni di dimensione correnti per l'oggetto grezzo sono incluse nel modello. -For Box and Cylinder stocks this means the actual size of the stock solid being created. +Per i grezzi Box e Cilindro ciò significa la dimensione effettiva del solido grezzo creato. -For stock from the Base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's Base object and apply the stored extra settings. +Per il grezzo creato dal box di delimitazione dell'oggetto Base si intende il materiale extra in tutte le direzioni. Un oggetto grezzo standard creato da un modello di questo tipo otterrà la sua dimensione di base dall'oggetto Base del nuovo lavoro e si applicheranno le impostazioni aggiuntive memorizzate. @@ -385,7 +385,7 @@ For stock from the Base object's bounding box it means the extra material i Name of property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" - Name of property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" + Nome della proprietà. Può contenere solo lettere, numeri e underscore. I nomi MixedCase verranno visualizzati con spazi "Mixed Case" @@ -654,7 +654,7 @@ For stock from the Base object's bounding box it means the extra material i Extend Model's Bounding Box - Extend Model's Bounding Box + Estende il box di delimitazione del modello @@ -695,7 +695,7 @@ For stock from the Base object's bounding box it means the extra material i Select one or more features in the 3d view and press 'Add' to add them as the base items for this operation. Selected features can be deleted entirely. - Select one or more features in the 3d view and press 'Add' to add them as the base items for this operation. Selected features can be deleted entirely. + Selezionare una o più caratteristiche nella vista 3D e premere 'Aggiungi' per aggiungerle come elementi di base per questa operazione. Le caratteristiche selezionate possono essere completamente eliminate. @@ -770,7 +770,7 @@ Il tasto Reimposta elimina tutti gli elementi correnti dall'elenco e riempie l'e Remove all list items and fill list with all eligible features from the job's base object. - Remove all list items and fill list with all eligible features from the job's base object. + Rimuove tutti gli elementi della lista e riempie la lista con tutte le feature ammissibili dall'oggetto base del lavoro. @@ -1121,7 +1121,7 @@ Il tasto Reimposta elimina tutti gli elementi correnti dall'elenco e riempie l'e Miter joint - Miter joint + Giunto di mitragliatura @@ -1151,7 +1151,7 @@ Il tasto Reimposta elimina tutti gli elementi correnti dall'elenco e riempie l'e Peck - Peck + Peck @@ -1171,7 +1171,7 @@ Il tasto Reimposta elimina tutti gli elementi correnti dall'elenco e riempie l'e Don't retract after every hole - Don't retract after every hole + Non ritrarre dopo ogni foro @@ -1822,7 +1822,7 @@ The latter can be used to face of the entire stock area to ensure uniform height Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. - Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. + Evita di tagliare le ultime facce 'N' nella lista della Geometria di Base delle facce selezionate. @@ -2103,7 +2103,7 @@ Default: 3 mm Lead In/Out - Lead In/Out + Lead In/Out @@ -2560,7 +2560,7 @@ See the file save policy below on how to deal with name conflicts. Extend Model's Bounding Box - Extend Model's Bounding Box + Estende il box di delimitazione del modello @@ -2772,7 +2772,7 @@ Should multiple tools or tool shapes with the same name exist in different direc Multi Panel - Multi Panel + Pannello Multiplo @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Ferma - + Activate / resume simulation Attiva / riprendi la simulazione - + Play Avvia @@ -3707,7 +3707,7 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t Extend Model's Bounding Box - Extend Model's Bounding Box + Estende il box di delimitazione del modello @@ -3783,7 +3783,7 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t XY in Stock - XY in Stock + XY in Stock @@ -4076,66 +4076,66 @@ Default: 3 mm Op Defaults - Op Defaults + Op Defaults Workbench - + Project Setup Imposta Progetto - + Tool Commands Tool Commands - + New Operations Nuove Operazioni - - + + Path Modification Path Modification - + Helpful Tools Strumenti Utili - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Comandi Supplementari - + Specialty Operations Specialty Operations - + Utils Utilità @@ -4193,7 +4193,7 @@ Default: 3 mm Spindle RPM - Spindle RPM + Spindle RPM @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -5357,7 +5357,7 @@ Default: 3 mm Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. - Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. + Evita di tagliare le ultime facce 'N' nella lista della Geometria di Base delle facce selezionate. @@ -5809,7 +5809,7 @@ Default: 3 mm Miter - Miter + Mitra
@@ -5859,7 +5859,7 @@ Default: 3 mm Miter - Miter + Mitra @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations Operazioni 3D @@ -6522,7 +6522,7 @@ Aborting op creation LeadInOut - LeadInOut + LeadInOut @@ -6550,7 +6550,7 @@ Aborting op creation PropertyBag - PropertyBag + PropertyBag @@ -6624,7 +6624,7 @@ Aborting op creation Axis Map - Axis Map + Mappa Asse @@ -6725,17 +6725,17 @@ Aborting op creation RampMethod1 - RampMethod1 + RampMethod1 RampMethod2 - RampMethod2 + RampMethod2 RampMethod3 - RampMethod3 + RampMethod3 @@ -7232,12 +7232,12 @@ For example: Minimum Z - Minimum Z + Minimo Z Maximum Z - Maximum Z + Massimo Z @@ -7446,7 +7446,7 @@ For example: Profiling - Profiling + Profiling @@ -7474,7 +7474,7 @@ For example: Mist - Mist + Mist @@ -8202,7 +8202,7 @@ For example: Vcarve - Vcarve + Vcarve @@ -8505,34 +8505,34 @@ For example: Copiare i file di esempio nella nuova directory {}? - - + + Tooltable JSON (*.fctl) Tabella degli utensili JSON (*.jfctl) - - + + Save toolbit library Salva libreria utensile - + Tool Utensile - + Shape Forma - + LinuxCNC tooltable (*.tbl) Tabella degli utensili LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ja.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ja.ts index 82cc4b4f8f..5f15a95af9 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ja.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ja.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc 停止 - + Activate / resume simulation Activate / resume simulation - + Play 再生 @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands ツールコマンド - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D工程 @@ -8503,34 +8503,34 @@ CNC工作機械に指令を送るGコードでは、送り速度を1分間当た Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool ツール - + Shape シェイプ - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ka.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ka.ts index 4a51819ecb..aa04faa2a6 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ka.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ka.ts @@ -3312,13 +3312,13 @@ Should multiple tools or tool shapes with the same name exist in different direc გაჩერება - + Activate / resume simulation სიმულაციის დაწყება / გაგრძელება - + Play დაკვრა @@ -4080,60 +4080,60 @@ Default: 3 mm Workbench - + Project Setup პროექტის მორგება - + Tool Commands ხელსაწყოს ბრძანებები - + New Operations ახალი ოპერაციები - - + + Path Modification ტრაექტორიის ჩასწორება - + Helpful Tools საჭირო ხელსაწყოები - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup ტრაექტორიის ზღუდარი - + Supplemental Commands დამატებითი ბრძანებები - + Specialty Operations სპეციალური ოპერაციები - + Utils ხელსაწყოები @@ -4209,7 +4209,7 @@ Default: 3 mm მჭრელი წიბოს კუთხე (%.2f) უარყოფით ხელსაწყოს მჭრელი თავის სიგრძემდე მივყავართ - + Save Sanity Check Report შრომისუნარიანობის შემოწმების ანგარიშის შენახვა @@ -6343,7 +6343,7 @@ Aborting op creation - + CAM CAM @@ -6360,7 +6360,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D ოპერაციები @@ -8501,34 +8501,34 @@ For example: დავაკოპირო მაგალითის ფაილები ახალ საქაღალდეში {}? - - + + Tooltable JSON (*.fctl) ხელსაწყოების ცხრილის JSON (*.fctl) - - + + Save toolbit library ხელსაწყოს მჭრელი პირის ბიბლიოთეკის შენახვა - + Tool ხელსაწყო - + Shape ფიგურა - + LinuxCNC tooltable (*.tbl) LinuxCNC-ის ხელსაწყოების ცხრილი (*.tbl) - + CAMotics tooltable (*.json) CAMotics-ის ხელსაწყოების ცხრილი (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ko.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ko.ts index 047959175e..55bab20642 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ko.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ko.ts @@ -1968,7 +1968,7 @@ Default: OpToolDiameter Expression - Expression + 표현식 @@ -2156,7 +2156,7 @@ Default: 3 mm Algorithm - Algorithm + 연산법 @@ -3258,7 +3258,7 @@ Should multiple tools or tool shapes with the same name exist in different direc Algorithm - Algorithm + 연산법 @@ -3311,13 +3311,13 @@ Should multiple tools or tool shapes with the same name exist in different direc 중지 - + Activate / resume simulation Activate / resume simulation - + Play 플레이 @@ -3973,7 +3973,7 @@ Default: OpToolDiameter Expression - Expression + 표현식 @@ -4080,60 +4080,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4209,7 +4209,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6343,7 +6343,7 @@ Aborting op creation - + CAM CAM @@ -6360,7 +6360,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -6916,7 +6916,7 @@ Aborting op creation Ok - OK + 확인 @@ -7718,7 +7718,7 @@ For example: Center - 센터 + 중심 @@ -8503,34 +8503,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool 도구 - + Shape 셰이프 - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_lt.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_lt.ts index 27f251e257..4290209739 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_lt.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_lt.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Stabdyti - + Activate / resume simulation Activate / resume simulation - + Play Leisti @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Pagalbinės priemonės @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Įrankis - + Shape Pavidalas - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_nl.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_nl.ts index 8bfe49e012..9b72d132f0 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_nl.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_nl.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Stop - + Activate / resume simulation Activate / resume simulation - + Play Afspelen @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Gereedschapscommando's - + New Operations Nieuwe bewerkingen - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Aanvullende commando's - + Specialty Operations Gespecialiseerde operaties - + Utils Hulpmiddelen @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D-bewerkingen @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Gereedschap - + Shape Vorm - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_pl.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_pl.ts index c7cf0b41c4..4a3bbea9b3 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_pl.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_pl.ts @@ -3342,13 +3342,13 @@ Znaczniki są automatycznie wyłączane, jeśli nakładają się na poprzedni zn Zatrzymaj - + Activate / resume simulation Aktywuj / wznów symulację - + Play Odtwórz @@ -4106,60 +4106,60 @@ Domyślnie: 3 mm Workbench - + Project Setup Konfiguracja projektu - + Tool Commands Polecenia narzędziowe - + New Operations Nowe operacje - - + + Path Modification Ścieżka — modyfikacja - + Helpful Tools Narzędzia pomocnicze - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Operacje wykańczające dla ścieżki - + Supplemental Commands Polecenia dodatkowe - + Specialty Operations Operacje specjalne - + Utils Narzędzia @@ -4235,7 +4235,7 @@ Domyślnie: 3 mm Kąt krawędzi skrawającej (%.2f) daje ujemną długość końcówki narzędzia - + Save Sanity Check Report Zapisz raport z kontroli poprawności @@ -6377,7 +6377,7 @@ Przerwanie procesu tworzenia - + CAM CAM @@ -6394,7 +6394,7 @@ Przerwanie procesu tworzenia CAM_3dTools - + 3D Operations Operacje 3D @@ -8541,34 +8541,34 @@ Czy geometria bazowa została wybrana? Skopiować przykładowe pliki do nowego katalogu {}? - - + + Tooltable JSON (*.fctl) Zestaw narzędzi JSON (*.fctl) - - + + Save toolbit library Zapisz bibliotekę narzędzi - + Tool Narzędzie - + Shape Kształt - + LinuxCNC tooltable (*.tbl) Zestaw narzędzi LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) Zestaw narzędzi CAMotics (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_pt-BR.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_pt-BR.ts index 50d4019498..fb44a9e79e 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_pt-BR.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_pt-BR.ts @@ -3305,13 +3305,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Parar - + Activate / resume simulation Ativar / retomar simulação - + Play Reproduzir @@ -4074,60 +4074,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4203,7 +4203,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6337,7 +6337,7 @@ Aborting op creation - + CAM CAM @@ -6354,7 +6354,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8497,34 +8497,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Ferramenta - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_pt-PT.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_pt-PT.ts index 1efd1ae358..d99d4d7a71 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_pt-PT.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_pt-PT.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Parar - + Activate / resume simulation Activate / resume simulation - + Play Reproduzir @@ -4082,60 +4082,60 @@ Padrão: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Padrão: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Ferramenta - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ro.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ro.ts index e857bba691..dcdc3a5bc6 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ro.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ro.ts @@ -3316,13 +3316,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Stop - + Activate / resume simulation Activate / resume simulation - + Play Redă @@ -4085,60 +4085,60 @@ Default: 3 mm Workbench - + Project Setup Configurare proiect - + Tool Commands Comenzi unelte - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4214,7 +4214,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6348,7 +6348,7 @@ Aborting op creation - + CAM CAM @@ -6365,7 +6365,7 @@ Aborting op creation CAM_3dTools - + 3D Operations Operațiuni 3D @@ -8508,34 +8508,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Instrument - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_ru.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_ru.ts index 207e15383d..ea0209dc02 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_ru.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_ru.ts @@ -224,11 +224,11 @@ Any values of the SetupSheet that are changed from their default are preselected This option is most useful if stock is a box or cylinder, or if the machine has a standard placement for machining. Note that this option is disabled if a stock object from an existing solid is used in the job - they cannot be stored in a template. - If enabled the creation of stock is included in the template. If a template does not include a stock definition the default stock creation algorithm will be used (creation from the Base object's bounding box). + Если включено, создание заготовки включается в шаблон. Если шаблон не включает определение заготовки, будет использоваться алгоритм создания заготовки по умолчанию (создание из ограничивающей рамки базового объекта). -This option is most useful if stock is a box or cylinder, or if the machine has a standard placement for machining. +Эта опция наиболее полезна, если заготовка представляет собой коробку или цилиндр, или если станок имеет стандартное размещение для обработки. -Note that this option is disabled if a stock object from an existing solid is used in the job - they cannot be stored in a template. +Обратите внимание, что эта опция отключена, если в работе используется объект заготовки из существующего твердого тела — их нельзя сохранить в шаблоне. @@ -276,11 +276,11 @@ Note that only operations which currently have configuration values set are list For Box and Cylinder stocks this means the actual size of the stock solid being created. For stock from the Base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's Base object and apply the stored extra settings. - If enabled the current size settings for the stock object are included in the template. + Если включено, текущие настройки размера для объекта заготовки включаются в шаблон. -For Box and Cylinder stocks this means the actual size of the stock solid being created. +Для заготовок типа «коробка» и «цилиндр» это означает фактический размер создаваемого твердого тела заготовки. -For stock from the Base object's bounding box it means the extra material in all directions. A stock object created from such a template will get its basic size from the new job's Base object and apply the stored extra settings. +Для заготовки из ограничивающей рамки базового объекта это означает дополнительный материал во всех направлениях. Заготовочный объект, созданный из такого шаблона, получит свой базовый размер из базового объекта нового задания и применит сохраненные дополнительные настройки. @@ -385,7 +385,7 @@ For stock from the Base object's bounding box it means the extra material i Name of property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" - Name of property. Can only contain letters, numbers, and underscores. MixedCase names will display with spaces "Mixed Case" + Имя свойства. Может содержать только буквы, цифры и подчеркивания. Имена MixedCase будут отображаться с пробелами "MixedCase" @@ -523,7 +523,7 @@ For stock from the Base object's bounding box it means the extra material i Choose a CAM Job - Choose a CAM Job + Выберите CAM работу @@ -584,12 +584,12 @@ For stock from the Base object's bounding box it means the extra material i Extension of bounding box's MinX - Extension of bounding box's MinX + Расширение ограничивающего прямоугольника MinX Extension of bounding box's MaxX - Extension of bounding box's MaxX + Расширение MaxX ограничивающего прямоугольника @@ -599,12 +599,12 @@ For stock from the Base object's bounding box it means the extra material i Extension of bounding box's MinY - Extension of bounding box's MinY + Расширение ограничивающего прямоугольника MinY Extension of bounding box's MaxY - Extension of bounding box's MaxY + Расширение MaxY ограничивающего прямоугольника @@ -614,12 +614,12 @@ For stock from the Base object's bounding box it means the extra material i Extension of bounding box's MinZ - Extension of bounding box's MinZ + Расширение ограничивающего прямоугольника MinZ Extension of bounding box's MaxZ - Extension of bounding box's MaxZ + Расширение ограничивающей рамки Макс @@ -649,12 +649,12 @@ For stock from the Base object's bounding box it means the extra material i If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone - If checked the path is constrained by the solid. Otherwise the volume of the solid describes a 'keep out' zone + Если отмечено, путь ограничен твердым телом. В противном случае объем твердого тела описывает зону «не входить» Extend Model's Bounding Box - Extend Model's Bounding Box + Расширить ограничивающую рамку модели @@ -695,7 +695,7 @@ For stock from the Base object's bounding box it means the extra material i Select one or more features in the 3d view and press 'Add' to add them as the base items for this operation. Selected features can be deleted entirely. - Select one or more features in the 3d view and press 'Add' to add them as the base items for this operation. Selected features can be deleted entirely. + Выберите одну или несколько функций в 3D-виде и нажмите «Добавить», чтобы добавить их в качестве базовых элементов для этой операции. Выбранные функции можно полностью удалить. @@ -770,7 +770,7 @@ Reset deletes all current items from the list and fills the list with all circul Remove all list items and fill list with all eligible features from the job's base object. - Remove all list items and fill list with all eligible features from the job's base object. + Удалить все элементы списка и заполнить список всеми подходящими функциями из базового объекта задания. @@ -1171,7 +1171,7 @@ Reset deletes all current items from the list and fills the list with all circul Don't retract after every hole - Don't retract after every hole + Не оттягивайте после каждого отверстия @@ -1387,7 +1387,7 @@ The latter can be used to face of the entire stock area to ensure uniform height The cutting mode assumes that the cut on one side of the tool bit represents the resulting part and the other side is either already milled away or will be removed later on. Climb mode is when the tool bit is moved into the cut on each rotation, whereas in conventional mode the tool bit's rotation and the tool's lateral movement are in the same direction - The cutting mode assumes that the cut on one side of the tool bit represents the resulting part and the other side is either already milled away or will be removed later on. Climb mode is when the tool bit is moved into the cut on each rotation, whereas in conventional mode the tool bit's rotation and the tool's lateral movement are in the same direction + Режим резки предполагает, что резка на одной стороне резца представляет собой результирующую часть, а другая сторона либо уже отфрезерована, либо будет удалена позже. Режим подъема — это когда резец перемещается в резку при каждом повороте, тогда как в обычном режиме вращение резца и боковое движение инструмента происходят в одном направлении @@ -1580,7 +1580,7 @@ The latter can be used to face of the entire stock area to ensure uniform height Check if you want this profile operation to also be applied to cylindrical holes, which normally get drilled. This can be useful if no drill of adequate size is available or the number of holes don't warrant a tool change. Note that the cut side and direction is reversed in respect to the specified values - Check if you want this profile operation to also be applied to cylindrical holes, which normally get drilled. This can be useful if no drill of adequate size is available or the number of holes don't warrant a tool change. Note that the cut side and direction is reversed in respect to the specified values + Проверьте, хотите ли вы, чтобы эта операция профиля также применялась к цилиндрическим отверстиям, которые обычно сверлятся. Это может быть полезно, если нет сверла подходящего размера или количество отверстий не оправдывает смену инструмента. Обратите внимание, что сторона и направление реза меняются местами по отношению к указанным значениям @@ -1822,7 +1822,7 @@ The latter can be used to face of the entire stock area to ensure uniform height Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. - Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. + Избегайте вырезания последних «N» граней в списке базовой геометрии выбранных граней. @@ -1987,27 +1987,27 @@ Default: OpToolDiameter Expression set as ClearanceHeight for new operations. Default: "OpStockZMax+SetupSheet.ClearanceHeightOffset" - Expression set as ClearanceHeight for new operations. + Выражение установлено как ClearanceHeight для новых операций. -Default: "OpStockZMax+SetupSheet.ClearanceHeightOffset" +По умолчанию: "OpStockZMax+SetupSheet.ClearanceHeightOffset" Expression set as SafeHeight for new operations. Default: "OpStockZMax+SetupSheet.SafeHeightOffset" - Expression set as SafeHeight for new operations. + Выражение установлено как SafeHeight для новых операций. -Default: "OpStockZMax+SetupSheet.SafeHeightOffset" +По умолчанию: "OpStockZMax+SetupSheet.SafeHeightOffset" SafeHeightOffset can be for expressions to set the SafeHeight for new operations. Default: "5mm" - SafeHeightOffset can be for expressions to set the SafeHeight for new operations. + SafeHeightOffset можно применять для выражений, чтобы задать SafeHeight для новых операций. -Default: "5mm" +По умолчанию: "5mm" @@ -2123,17 +2123,17 @@ Default: 3 mm Finishing pass Z offset - Finishing pass Z offset + Смещение Z при чистовом проходе Endmill offset for the finishing pass run. Use small value like -0.2 mm to help clean "fuzzy skin" or other artefacts. - Endmill offset for the finishing pass run. Use small value like -0.2 mm to help clean "fuzzy skin" or other artefacts. + Смещение концевой фрезы для чистового прохода. Используйте небольшое значение, например -0,2 мм, чтобы помочь убрать «ворсистую кожу» или другие артефакты. After carving travel again the path to remove artifacts and imperfections - After carving travel again the path to remove artifacts and imperfections + После резьбы пройдитесь еще раз по тропинке, чтобы удалить артефакты и несовершенства @@ -2143,7 +2143,7 @@ Default: 3 mm Optimize path to avoid raising endmill when moving to adjacent edges. May result in sub-millimeter inaccuracies. - Optimize path to avoid raising endmill when moving to adjacent edges. May result in sub-millimeter inaccuracies. + Оптимизируйте путь, чтобы избежать подъема концевой фрезы при перемещении к соседним краям. Может привести к неточности в пределах миллиметра. @@ -2299,9 +2299,9 @@ If the specified height is 0 the dressup will use half the height of the part. S Radius of the fillet on the tag's top edge. If the radius is bigger than that which the tag shape itself supports, the resulting shape will be that of a dome. - Radius of the fillet on the tag's top edge. + Радиус скругления на верхнем крае бирки. -If the radius is bigger than that which the tag shape itself supports, the resulting shape will be that of a dome. +Если радиус больше, чем тот, который поддерживает сама форма бирки, то результирующая форма будет купольной. @@ -2336,7 +2336,7 @@ If the radius is bigger than that which the tag shape itself supports, the resul G-Code - G-Code + G-код @@ -2484,31 +2484,30 @@ if %S is included, you can specify where the number occurs. Without it, the num The following example stores all files with the same name as the document in the directory /home/freecad (please remove quotes): &quot;/home/cnc/%d.g-code&quot; See the file save policy below on how to deal with name conflicts. - Enter a path and optionally file name (see below) to be used as the default for the post processor export. -The following substitutions are performed before the name is resolved at the time of the post processing: -Substitution allows the following: -%D ... directory of the active document -%d ... name of the active document (with extension) -%M ... user macro directory -%j ... name of the active Job object + Введите путь и, при необходимости, имя файла (см. ниже), которые будут использоваться по умолчанию для экспорта постпроцессора. +Следующие замены выполняются до разрешения имени во время постобработки: +Подстановка позволяет следующее: +%D ... каталог активного документа +%d ... имя активного документа (с расширением) +%M ... каталог макросов пользователя +%j ... имя активного объекта задания -The Following can be used if output is being split. If Output is not split -these will be ignored. -%T ... Tool Number -%t ... Tool Controller label +Следующее может использоваться, если вывод разделяется. Если вывод не разделен, они будут проигнорированы. +%T ... Номер инструмента +%t ... Метка контроллера инструмента -%W ... Work Coordinate System -%O ... Operation Label +%W ... Система координат работы +%O ... Метка операции -When splitting output, a sequence number will always be added. +При разделении вывода всегда будет добавлен порядковый номер. -if %S is included, you can specify where the number occurs. Without it, the number will be added to the end of the string. +Если включен %S, вы можете указать, где находится номер. Без него номер будет добавлен в конец строки. -%S ... Sequence Number +%S ... Порядковый номер -The following example stores all files with the same name as the document in the directory /home/freecad (please remove quotes): -&quot;/home/cnc/%d.g-code&quot; -See the file save policy below on how to deal with name conflicts. +В следующем примере все файлы с тем же именем, что и у документа, сохраняются в каталоге /home/freecad (пожалуйста, удалите кавычки): +"/home/cnc/%d.g-code" +См. политику сохранения файлов ниже, чтобы узнать, как решать конфликты имен. @@ -2523,7 +2522,7 @@ See the file save policy below on how to deal with name conflicts. It doesn't seem there are any post processor scripts installed. Please add some into your macro directory and make sure the file name ends with &quot;_post.py&quot;. - It doesn't seem there are any post processor scripts installed. Please add some into your macro directory and make sure the file name ends with &quot;_post.py&quot;. + Кажется, не установлены скрипты постпроцессора. Добавьте их в каталог макросов и убедитесь, что имя файла заканчивается на &quot;_post.py&quot;. @@ -2533,7 +2532,7 @@ See the file save policy below on how to deal with name conflicts. Optional arguments passed to the default Post Processor specified above. See the Post Processor's documentation for supported arguments. - Optional arguments passed to the default Post Processor specified above. See the Post Processor's documentation for supported arguments. + Необязательные аргументы, передаваемые в указанный выше постпроцессор по умолчанию. Поддерживаемые аргументы см. в документации по постпроцессору. @@ -2558,7 +2557,7 @@ See the file save policy below on how to deal with name conflicts. Extend Model's Bounding Box - Extend Model's Bounding Box + Расширить ограничивающую рамку модели @@ -2947,7 +2946,7 @@ Should multiple tools or tool shapes with the same name exist in different direc <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> - <html><head/><body><p>Select desired style of the bone dressup:</p><p><span style=" font-weight:600; font-style:italic;">Dogbone</span> ... take the shortest path to cover the corner,</p><p><span style=" font-weight:600; font-style:italic;">T-bone</span> ... extend a certain direction until corner is covered</p></body></html> + <html><head/><body><p>Выберите желаемый стиль наряда кости:</p><p><span style="font-weight:600; font-style:italic;">Dogbone</span> ... выберите кратчайший путь, чтобы закрыть угол,</p><p><span style="font-weight:600; font-style:italic;">T-bone</span> ... растяните в определенном направлении, пока угол не будет закрыт</p></body></html> @@ -3002,7 +3001,7 @@ Should multiple tools or tool shapes with the same name exist in different direc <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> - <html><head/><body><p>Determines the incision length of the bone to be inserted into the profile.</p><p><span style=" font-weight:600; font-style:italic;">adaptive</span> ... the length is adapted to cover the corner based on the angle of its edges, taking the current tool radius into account (default)</p><p><span style=" font-weight:600; font-style:italic;">fixed</span> ... is the same as adaptive for straight angles. For T-bones it's the radius of the tool (R) and for dogbones it's R * (2/√2 - 1).</p><p><span style=" font-weight:600; font-style:italic;">custom</span> ... let's you specify a custom (fixed) length below</p></body></html> + <html><head/><body><p>Определяет длину надреза кости, которая будет вставлена ​​в профиль.</p><p><span style="font-weight:600; font-style:italic;">adaptive</span> ... длина адаптируется для покрытия угла на основе угла его кромок с учетом текущего радиуса инструмента (по умолчанию)</p><p><span style="font-weight:600; font-style:italic;">fixed</span> ... то же самое, что и адаптивный для прямых углов. Для T-образных костей это радиус инструмента (R), а для собачьих костей это R * (2/√2 - 1).</p><p><span style="font-weight:600; font-style:italic;">custom</span> ... позволяет вам указать пользовательскую (фиксированную) длину ниже</p></body></html> @@ -3022,12 +3021,12 @@ Should multiple tools or tool shapes with the same name exist in different direc <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> - <html><head/><body><p>Enter length for each bone if <span style=" font-weight:600;">Incision</span> is set to <span style=" font-weight:600;">custom</span>, ignored otherwise.</p></body></html> + <html><head/><body><p>Введите длину для каждой кости, если <span style="font-weight:600;">Incision</span> установлен на <span style="font-weight:600;">custom</span>, в противном случае игнорируется.</p></body></html> <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> - <html><head/><body><p>List of bone locations (with all bones at that location) that are part of this dressup. The list is determined by the corners in the profile and the selected <span style=" font-weight:600;">Side</span> for the bones. </p><p>You can <span style=" font-weight:600;">un-check</span> the bones you don't want to be dressed up.</p><p>If a bone is <span style=" font-weight:600;">grayed out</span> it means that it is already dressed up by a previous dressup. Or put another way, if you dress up this dogbone dressup again you will only be able to select the bones that are un-checked here.</p><p>If this list is empty it probably means you're trying to create bones on the wrong side of the profile.</p></body></html> + <html><head/><body><p>Список местоположений костей (со всеми костями в этом месте), которые являются частью этого наряда. Список определяется углами в профиле и выбранной <span style="font-weight:600;">Стороной</span> для костей. </p><p>Вы можете <span style="font-weight:600;">снять отметку</span> с костей, которые вы не хотите наряжать.</p><p>Если кость <span style=" font-weight:600;">серый</span> это означает, что он уже одет предыдущим нарядом. Или, другими словами, если вы снова оденете этот наряд для собачьей кости, вы сможете выбрать только те кости, которые здесь не отмечены.</p><p>Если этот список пуст, это, вероятно, означает, что вы пытаетесь создать кости не на той стороне профиля.</p></body></html> @@ -3097,7 +3096,7 @@ Should multiple tools or tool shapes with the same name exist in different direc Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. - Height of holding tag. Note that resulting tag might be smaller if the tag's width and angle result in a triangular shape. + Высота удерживающего тега. Обратите внимание, что полученный тег может быть меньше, если ширина и угол тега приводят к треугольной форме. @@ -3112,7 +3111,7 @@ Should multiple tools or tool shapes with the same name exist in different direc List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. - List of current tags. Edit coordinates by double click or Edit button. Tags are automatically disabled if they overlap with the previous tag, or don't lie on the base wire. + Список текущих тегов. Редактируйте координаты двойным щелчком или кнопкой «Изменить». Теги автоматически отключаются, если они перекрываются с предыдущим тегом или не лежат на базовом проводе. @@ -3311,13 +3310,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Остановить - + Activate / resume simulation Активация/возобновление моделирования - + Play Воспроизвести @@ -3387,12 +3386,12 @@ Should multiple tools or tool shapes with the same name exist in different direc Launch CAMotics - Launch CAMotics + Запустить CAMotics Make CAMotics File - Make CAMotics File + Сделать файл CAMotics @@ -3592,31 +3591,30 @@ if %S is included, you can specify where the number occurs. Without it, the num The following example stores all files with the same name as the document in the directory /home/freecad (please remove quotes): "/home/cnc/%d.g-code" See the file save policy below on how to deal with name conflicts. - Enter a path and optionally file name (see below) to be used as the default for the post processor export. -The following substitutions are performed before the name is resolved at the time of the post processing: -Substitution allows the following: -%D ... directory of the active document -%d ... name of the active document (with extension) -%M ... user macro directory -%j ... name of the active Job object + Введите путь и, при необходимости, имя файла (см. ниже), которые будут использоваться по умолчанию для экспорта постпроцессора. +Следующие замены выполняются до разрешения имени во время постобработки: +Подстановка позволяет следующее: +%D ... каталог активного документа +%d ... имя активного документа (с расширением) +%M ... каталог макросов пользователя +%j ... имя активного объекта задания -The Following can be used if output is being split. If Output is not split -these will be ignored. -%T ... Tool Number -%t ... Tool Controller label +Следующее может использоваться, если вывод разделяется. Если вывод не разделен, они будут проигнорированы. +%T ... Номер инструмента +%t ... Метка контроллера инструмента -%W ... Work Coordinate System -%O ... Operation Label +%W ... Система координат работы +%O ... Метка операции -When splitting output, a sequence number will always be added. +При разделении вывода всегда будет добавлен порядковый номер. -if %S is included, you can specify where the number occurs. Without it, the number will be added to the end of the string. +Если включен %S, вы можете указать, где находится номер. Без него номер будет добавлен в конец строки. -%S ... Sequence Number +%S ... Порядковый номер -The following example stores all files with the same name as the document in the directory /home/freecad (please remove quotes): -"/home/cnc/%d.g-code" -See the file save policy below on how to deal with name conflicts. +В следующем примере все файлы с тем же именем, что и у документа, сохраняются в каталоге /home/freecad (пожалуйста, удалите кавычки): +"/home/cnc/%d.g-code" +См. политику сохранения файлов ниже, чтобы узнать, как решать конфликты имен. @@ -3657,20 +3655,20 @@ This is useful if the operator can safely load work into one coordinate system w Ordering by Tool, will minimize the Tool Changes. A tool change will be done, then all operations in all coordinate systems before changing tools. Ordering by operation will do each operation in all coordinate systems before moving to the next operation. This is especially useful in conjunction with the 'split output' even with only a single work coordinate system since it will put each operation into a separate file. - Ordering by Fixture, will cause all operations to be performed in the first coordinate system before switching to the second. Then all operations will be performed there in the same order. + Упорядочение по приспособлению приведет к тому, что все операции будут выполнены в первой системе координат перед переключением во вторую. Затем все операции будут выполнены там в том же порядке. -This is useful if the operator can safely load work into one coordinate system while the machine is doing work in another. +Это полезно, если оператор может безопасно загрузить работу в одну систему координат, пока машина выполняет работу в другой. -Ordering by Tool, will minimize the Tool Changes. A tool change will be done, then all operations in all coordinate systems before changing tools. +Упорядочение по инструменту сведет к минимуму смену инструмента. Будет выполнена смена инструмента, затем все операции во всех системах координат перед сменой инструментов. -Ordering by operation will do each operation in all coordinate systems before moving to the next operation. This is especially useful in conjunction with the 'split output' even with only a single work coordinate system since it will put each operation into a separate file. +Упорядочение по операции выполнит каждую операцию во всех системах координат перед переходом к следующей операции. Это особенно полезно в сочетании с «разделенным выводом» даже с единственной рабочей системой координат, поскольку он поместит каждую операцию в отдельный файл. <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> - <html><head/><body><p><span style=" font-style:italic;">Work Coordinate Systems</span> also called <span style=" font-style:italic;">Work Offsets</span>, <span style=" font-style:italic;">Fixture Offsets</span>, or <span style=" font-style:italic;">Fixtures </span>are useful for building efficient production jobs where the same part is done many times on the machine. -FreeCAD has no knowledge of where a particular coordinate system exists within the machine coordinate system so adding additional coordinate systems to your job will have no visual change within your job. It will, however, change your G-code output. The exact way in which the output is affected is controlled by the 'order by' setting.</p></body></html> + <html><head/><body><p><span style=" font-style:italic;">Системы рабочих координат</span> также называемые <span style=" font-style:italic;">Смещениями работ</span>, <span style=" font-style:italic;">Смещениями приспособлений</span> или <span style=" font-style:italic;">Приспособления </span>полезны для создания эффективных производственных заданий, когда одна и та же деталь выполняется на станке много раз. +FreeCAD не имеет сведений о том, где находится конкретная система координат в системе координат машины, поэтому добавление дополнительных систем координат в вашу работу не приведет к визуальным изменениям в вашей работе. Однако это изменит ваш вывод G-кода. Точный способ, которым это повлияет на вывод, контролируется настройкой «order by».</p></body></html> @@ -3705,7 +3703,7 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t Extend Model's Bounding Box - Extend Model's Bounding Box + Расширить ограничивающую рамку модели @@ -3720,7 +3718,7 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t Assign Stock Material - Assign Stock Material + Назначить материал заготовки @@ -3859,27 +3857,27 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t Expression set as ClearanceHeight for new operations. Default: "OpStockZMax+SetupSheet.ClearanceHeightOffset" - Expression set as ClearanceHeight for new operations. + Выражение установлено как ClearanceHeight для новых операций. -Default: "OpStockZMax+SetupSheet.ClearanceHeightOffset" +По умолчанию: "OpStockZMax+SetupSheet.ClearanceHeightOffset" Expression set as SafeHeight for new operations. Default: "OpStockZMax+SetupSheet.SafeHeightOffset" - Expression set as SafeHeight for new operations. + Выражение установлено как SafeHeight для новых операций. -Default: "OpStockZMax+SetupSheet.SafeHeightOffset" +По умолчанию: "OpStockZMax+SetupSheet.SafeHeightOffset" SafeHeightOffset can be for expressions to set the SafeHeight for new operations. Default: "5mm" - SafeHeightOffset can be for expressions to set the SafeHeight for new operations. + SafeHeightOffset может быть для выражений, чтобы задать SafeHeight для новых операций. -Default: "5mm" +По умолчанию: "5mm" @@ -3914,7 +3912,7 @@ Default: "5mm" If multiple coordinate systems are in use, setting this to TRUE will cause the gcode to be written to multiple output files as controlled by the 'order by' property. For example, if ordering by Fixture, the first output file will be for the first fixture and separate file for the second. - If multiple coordinate systems are in use, setting this to TRUE will cause the gcode to be written to multiple output files as controlled by the 'order by' property. For example, if ordering by Fixture, the first output file will be for the first fixture and separate file for the second. + Если используется несколько систем координат, установка этого параметра в значение TRUE приведет к записи gcode в несколько выходных файлов, как это контролируется свойством «order by». Например, если упорядочение выполняется по Fixture, первый выходной файл будет для первого Fixture, а отдельный файл — для второго. @@ -3925,13 +3923,11 @@ For example, if <span style=" font-style:italic;">order by</s If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> - <html><head/><body><p>If True, post processing will create multiple output files based on the <span style=" font-style:italic;">order by</span> setting. + <html><head/><body><p>Если True, постобработка создаст несколько выходных файлов на основе настройки <span style="font-style:italic;>order by</span>. +Например, если для параметра <span style="font-style:italic;>order by</span> установлено значение Tool, первый выходной файл будет содержать первую смену инструмента и все операции во всех системах координат, которые можно выполнить с этим инструментом до вызова следующей смены инструмента. -For example, if <span style=" font-style:italic;">order by</span> is set to Tool, the first output file will contain the first tool change and all operations, in all coordinate systems, that can be done with that tool before the next tool change is called. - - -If <span style=" font-style:italic;">order by</span> is set to <span style=" font-style:italic;">operation</span> and <span style=" font-style:italic;">split output</span> is true, each operation will be written to a separate file.</p></body></html> +Если для параметра <span style="font-style:italic;>order by</span> установлено значение <span style="font-style:italic;>order by</span> font-style:italic;">operation</span> и <span style="font-style:italic;">split output</span> верно, каждая операция будет записана в отдельный файл.</p></body></html> @@ -4080,60 +4076,60 @@ Default: 3 mm Workbench - + Project Setup Настройка проекта - + Tool Commands Команды инструментов - + New Operations Новые операции - - + + Path Modification Изменения траектории - + Helpful Tools Вспомогательные инструменты - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Путь, для которого делаем технологические поддерживающие перемычки - + Supplemental Commands Дополнительные Команды - + Specialty Operations Специализирующие операции - + Utils Утилиты @@ -4159,7 +4155,7 @@ Default: 3 mm CAMotics Project (*.camotics) - CAMotics Project (*.camotics) + Проект CAMotics (*.camotics) @@ -4209,7 +4205,7 @@ Default: 3 mm Угол режущей кромки (%.2f) приводит к отрицательной длине наконечника инструмента - + Save Sanity Check Report Сохранить отчет о проверке работоспособности @@ -4226,7 +4222,7 @@ Default: 3 mm Choose a CAM Job - Choose a CAM Job + Выберите CAM работу @@ -4371,13 +4367,13 @@ Default: 3 mm Dressup length if incision is set to 'custom' - Dressup length if incision is set to 'custom' + Длина приспособления устанавливается на «пользовательском» уровне Bones that aren't dressed up - Bones that aren't dressed up + Кости, которые не приспособлены @@ -5063,7 +5059,7 @@ Default: 3 mm The direction of the circular cuts, ClockWise (Climb), or CounterClockWise (Conventional) - The direction of the circular cuts, ClockWise (Climb), or CounterClockWise (Conventional) + Направление круговых разрезов: по часовой стрелке (подъем) или против часовой стрелки (обычный) @@ -5192,7 +5188,7 @@ Default: 3 mm The direction that the toolpath should go around the part ClockWise (Climb) or CounterClockWise (Conventional) - The direction that the toolpath should go around the part ClockWise (Climb) or CounterClockWise (Conventional) + Направление, в котором траектория инструмента должна проходить вокруг детали. По часовой стрелке (подъем) или против часовой стрелки (обычный ход) @@ -5202,7 +5198,7 @@ Default: 3 mm Maximum distance before a miter joint is truncated - Maximum distance before a miter joint is truncated + Максимальное расстояние до усечения углового соединения @@ -5292,7 +5288,7 @@ Default: 3 mm For arcs/circular edges, offset the radius for the toolpath. - For arcs/circular edges, offset the radius for the toolpath. + Для дуг/круглых кромок сместите радиус траектории инструмента. @@ -5355,7 +5351,7 @@ Default: 3 mm Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. - Avoid cutting the last 'N' faces in the Base Geometry list of selected faces. + Избегайте вырезания последних «N» граней в списке базовой геометрии выбранных граней. @@ -5444,7 +5440,7 @@ Default: 3 mm Set the stepover percentage, based on the tool's diameter. - Set the stepover percentage, based on the tool's diameter. + Установите процент шага в зависимости от диаметра инструмента. @@ -5493,22 +5489,22 @@ Default: 3 mm Set thread's major diameter - Set thread's major diameter + Установите основной диаметр резьбы Set thread's minor diameter - Set thread's minor diameter + Установите малый диаметр резьбы Set thread's pitch - used for metric threads - Set thread's pitch - used for metric threads + Установить шаг резьбы - используется для метрической резьбы Set thread's TPI (turns per inch) - used for imperial threads - Set thread's TPI (turns per inch) - used for imperial threads + Установите TPI резьбы (витков на дюйм) - используется для дюймовых резьб @@ -5548,7 +5544,7 @@ Default: 3 mm Finishing pass Z offset - Finishing pass Z offset + Смещение Z при чистовом проходе @@ -5764,7 +5760,7 @@ Default: 3 mm Stock Material property is deprecated. Removing the Material property. Please use native material system to assign a ShapeMaterial - Stock Material property is deprecated. Removing the Material property. Please use native material system to assign a ShapeMaterial + Свойство Stock Material устарело. Удаление свойства Material. Пожалуйста, используйте собственную систему материалов для назначения ShapeMaterial @@ -5908,7 +5904,7 @@ Default: 3 mm No job - No job + Нет работы @@ -6335,7 +6331,7 @@ Aborting op creation Invalid G-code line: %s - Invalid G-code line: %s + Недопустимая строка G-code: %s @@ -6343,7 +6339,7 @@ Aborting op creation - + CAM CAM @@ -6360,7 +6356,7 @@ Aborting op creation CAM_3dTools - + 3D Operations Трёхмерные операции @@ -6956,22 +6952,24 @@ For example: 'Metric, Small Parts & CNC' 'US Customary' 'Imperial Decimal' - The currently selected unit schema: - '{}' for this document - Does not use 'minutes' for velocity values. + Текущая выбранная схема единиц: +'apos;{}' для этого документа -CNC machines require feed rate to be expressed in -unit/minute. To ensure correct G-code: -Select a minute-based schema in preferences. -For example: - 'Metric, Small Parts & CNC' - 'US Customary' - 'Imperial Decimal' +Не использует 'минуты' для значений скорости. + +Для станков с ЧПУ требуется, чтобы скорость подачи была выражена в +единицах/минута. Чтобы обеспечить правильный G-код: +Выберите схему на основе минут в настройках. +Например: + +'Метрическая, Мелкие детали и ЧПУ' +'Американская традиционная' +'Имперская десятичная' Don't Show This Anymore - Don't Show This Anymore + Больше не показывай это @@ -7155,7 +7153,7 @@ For example: Output (G-code) - Output (G-code) + Вывод (G-код) @@ -7165,7 +7163,7 @@ For example: Surface Speed HSS - Surface Speed HSS + Скорость поверхности HSS @@ -7210,7 +7208,7 @@ For example: Surface Speed Carbide - Surface Speed Carbide + Скорость поверхности @@ -7345,7 +7343,7 @@ For example: The Job's last post-processed file is missing - The Job's last post-processed file is missing + Последний обработанный файл задания отсутствует @@ -7367,17 +7365,17 @@ For example: Tool Controller '{}' has no feedrate - Tool Controller '{}' has no feedrate + Контроллер инструмента '{}' не имеет скорости подачи Tool Controller '{}' has no spindlespeed - Tool Controller '{}' has no spindlespeed + Контроллер инструмента '{}' не имеет скорости шпинделя Tool Controller '{}' is not used - Tool Controller '{}' is not used + Контроллер инструмента '{}' не используется @@ -7485,7 +7483,7 @@ For example: Parent job %s doesn't have a base object - Parent job %s doesn't have a base object + Родительское задание %s не имеет базового объекта @@ -7574,12 +7572,12 @@ For example: No valid toolcontroller - No valid toolcontroller + Нет допустимого контроллера инструмента This operation requires a tool controller with a v-bit tool - This operation requires a tool controller with a v-bit tool + Для этой операции требуется контроллер инструмента с инструментом v-bit @@ -7599,17 +7597,17 @@ For example: Adaptive operation couldn't determine the boundary wire. Did you select base geometry? - Adaptive operation couldn't determine the boundary wire. Did you select base geometry? + Адаптивная операция может 'определять граничный провод. Вы выбрали базовую геометрию? This operation requires a tool controller with a probe tool - This operation requires a tool controller with a probe tool + Для этой операции требуется контроллер инструмента с зондом This operation requires a tool controller with a threadmilling tool - This operation requires a tool controller with a threadmilling tool + Для этой операции требуется контроллер инструмента с резьбофрезерным инструментом @@ -7861,12 +7859,12 @@ For example: Custom points are identical. No slot path will be generated - Custom points are identical. No slot path will be generated + Пользовательские точки идентичны. Путь слота не будет сгенерирован Custom points not at same Z height. No slot path will be generated - Custom points not at same Z height. No slot path will be generated + Пользовательские точки не находятся на той же высоте Z. Путь слота не будет создан @@ -8503,36 +8501,36 @@ For example: Скопировать примеры файлов в новую директорию {}? - - + + Tooltable JSON (*.fctl) Таблица инструментов JSON (*.json) - - + + Save toolbit library Сохранить библиотеку инструментов - + Tool Инструмент - + Shape Фигура(ы) - + LinuxCNC tooltable (*.tbl) Таблица инструментов LinuxCNC (*.tbl) - + CAMotics tooltable (*.json) - CAMotics tooltable (*.json) + Таблица инструментов для Camotic (*.json) @@ -8612,12 +8610,12 @@ For example: CAMotics - CAMotics + CAMotics Simulate using CAMotics - Simulate using CAMotics + Моделирование с использованием CAMotics diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_sl.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_sl.ts index 46daa80dec..e909d8b429 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_sl.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_sl.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Ustavi - + Activate / resume simulation Zaženi oz. nadaljuj s priustvarjanjem - + Play Predvajaj @@ -4082,60 +4082,60 @@ Privzeto: 3 mm Workbench - + Project Setup Nastavitev projekta - + Tool Commands Ukazi orodja - + New Operations Nova dejanja - - + + Path Modification Sprememba poti - + Helpful Tools Koristna orodja - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Dodelava poti - + Supplemental Commands Dodatni ukazi - + Specialty Operations Posebnopodročna opravila - + Utils Pripomočki @@ -4211,7 +4211,7 @@ Privzeto: 3 mm Kót rezilnega roba (%.2f) ima za posledico negativno dolžino konice orodja - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D dejanja @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Orodje - + Shape Oblika(e) - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_sr-CS.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_sr-CS.ts index 955c0715fb..4a430bf52b 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_sr-CS.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_sr-CS.ts @@ -400,7 +400,7 @@ For stock from the Base object's bounding box it means the extra material i ToolTip to be displayed when user hovers mouse over property. - ToolTip to be displayed when user hovers mouse over property. + Prilikom lebdenja mišem iznad nekog svojstva, pojaviće se njegov kratak opis. @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Zaustavi - + Activate / resume simulation Pokreni/nastavi simulaciju - + Play Pokreni @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3-osne operacije @@ -7337,7 +7337,7 @@ For example: Operator - Operator + Operater @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Alatka - + Shape Oblik - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_sr.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_sr.ts index f4eed98dda..4e276bba2c 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_sr.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_sr.ts @@ -400,7 +400,7 @@ For stock from the Base object's bounding box it means the extra material i ToolTip to be displayed when user hovers mouse over property. - ToolTip to be displayed when user hovers mouse over property. + Приликом лебдења мишем изнад неког својства, појавиће се његов кратак опис. @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Заустави - + Activate / resume simulation Покрени/настави симулацију - + Play Покрени @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3-осне операције @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Алатка - + Shape Облик - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_sv-SE.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_sv-SE.ts index 1483f2007a..992e6c8795 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_sv-SE.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_sv-SE.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Stopp - + Activate / resume simulation Activate / resume simulation - + Play Spela upp @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Verktygskommandon - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Hjälpsamma verktyg - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Kompletterande kommandon - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D-operationer @@ -8505,34 +8505,34 @@ For example: Kopiera exempelfiler till ny {} katalog? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Spara verktygsbibliotek - + Tool Verktyg - + Shape Form - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_tr.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_tr.ts index c29bcc63d9..f5ab1811cc 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_tr.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_tr.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Dur - + Activate / resume simulation Simülasyonu etkinleştir / devam ettir - + Play Oynat @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Araç - + Shape Şekil - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_uk.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_uk.ts index 229d6c9875..dad2d8f907 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_uk.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_uk.ts @@ -3314,13 +3314,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Стоп - + Activate / resume simulation Activate / resume simulation - + Play Відтворити @@ -4083,60 +4083,60 @@ Default: 3 mm Workbench - + Project Setup Налаштування проєкту - + Tool Commands Команди інструментів - + New Operations Нова операція - - + + Path Modification Модифікація траєкторії - + Helpful Tools Допоміжні інструменти - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4212,7 +4212,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6346,7 +6346,7 @@ Aborting op creation - + CAM CAM @@ -6363,7 +6363,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8506,34 +8506,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Інструмент - + Shape Форма - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_val-ES.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_val-ES.ts index 0b488a3ff4..deb91e0bc9 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_val-ES.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_val-ES.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc Para - + Activate / resume simulation Activate / resume simulation - + Play Reprodueix @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands Tool Commands - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool Eina - + Shape Forma - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_zh-CN.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_zh-CN.ts index 3b84ae6a73..e0ea7fd041 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_zh-CN.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_zh-CN.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc 停止 - + Activate / resume simulation 激活 / 恢复模拟 - + Play 播放 @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup 项目设置 - + Tool Commands 刀具命令 - + New Operations 新建加工 - - + + Path Modification 刀轨修改 - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup 刀轨修整 - + Supplemental Commands 补充命令 - + Specialty Operations 特殊加工 - + Utils 实用工具 @@ -4211,7 +4211,7 @@ Default: 3 mm 切削刃角度 (%.2f) 导致刀尖长度为负 - + Save Sanity Check Report Save Sanity Check Report @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D加工 @@ -8505,34 +8505,34 @@ For example: 是否将示例文件复制到新的 {} 目录? - - + + Tooltable JSON (*.fctl) JSON 刀具表 (*.fctl) - - + + Save toolbit library 保存刀库 - + Tool 工具 - + Shape 形状 - + LinuxCNC tooltable (*.tbl) LinuxCNC 刀具表 (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/Gui/Resources/translations/CAM_zh-TW.ts b/src/Mod/CAM/Gui/Resources/translations/CAM_zh-TW.ts index 2f78d775da..273ac82994 100644 --- a/src/Mod/CAM/Gui/Resources/translations/CAM_zh-TW.ts +++ b/src/Mod/CAM/Gui/Resources/translations/CAM_zh-TW.ts @@ -3313,13 +3313,13 @@ Should multiple tools or tool shapes with the same name exist in different direc 停止 - + Activate / resume simulation 啟動/恢復模擬 - + Play 播放 @@ -4082,60 +4082,60 @@ Default: 3 mm Workbench - + Project Setup Project Setup - + Tool Commands 刀具命令 - + New Operations New Operations - - + + Path Modification Path Modification - + Helpful Tools Helpful Tools - - - - - + + + + - - + + + &CAM &CAM - + Path Dressup Path Dressup - + Supplemental Commands Supplemental Commands - + Specialty Operations Specialty Operations - + Utils Utils @@ -4211,7 +4211,7 @@ Default: 3 mm Cutting Edge Angle (%.2f) results in negative tool tip length - + Save Sanity Check Report Save Sanity Check Report @@ -5469,7 +5469,7 @@ Default: 3 mm Collinear and co-radial artifact gaps that are smaller than this threshold are closed in the path. - Collinear and co-radial artifact gaps that are smaller than this threshold are closed in the path. + 共線和同徑偽影的間隙如果小於此閾值,則會在路徑中被閉合。 @@ -6345,7 +6345,7 @@ Aborting op creation - + CAM CAM @@ -6362,7 +6362,7 @@ Aborting op creation CAM_3dTools - + 3D Operations 3D Operations @@ -8505,34 +8505,34 @@ For example: Copy example files to new {} directory? - - + + Tooltable JSON (*.fctl) Tooltable JSON (*.fctl) - - + + Save toolbit library Save toolbit library - + Tool 工具 - + Shape 造型 - + LinuxCNC tooltable (*.tbl) LinuxCNC tooltable (*.tbl) - + CAMotics tooltable (*.json) CAMotics tooltable (*.json) diff --git a/src/Mod/CAM/InitGui.py b/src/Mod/CAM/InitGui.py index 1aa7cfb7a8..6bc0ed8ffe 100644 --- a/src/Mod/CAM/InitGui.py +++ b/src/Mod/CAM/InitGui.py @@ -164,6 +164,12 @@ class CAMWorkbench(Workbench): toolcmdlist.append("CAM_Camotics") except (FileNotFoundError, ModuleNotFoundError): pass + except subprocess.CalledProcessError as e: + print(f"Failed to execute camotics command: {e}") + except ValueError as ve: + print(f"Version error: {ve}") + except Exception as ex: + print(f"An unexpected error occurred: {ex}") try: try: diff --git a/src/Mod/CAM/PathSimulator/AppGL/DlgCAMSimulator.cpp b/src/Mod/CAM/PathSimulator/AppGL/DlgCAMSimulator.cpp index 5163786f8a..74a5af01e0 100644 --- a/src/Mod/CAM/PathSimulator/AppGL/DlgCAMSimulator.cpp +++ b/src/Mod/CAM/PathSimulator/AppGL/DlgCAMSimulator.cpp @@ -24,6 +24,7 @@ #include "DlgCAMSimulator.h" #include "MillSimulation.h" +#include "Gui/View3DInventorViewer.h" #include #include #include @@ -311,7 +312,10 @@ DlgCAMSimulator* DlgCAMSimulator::GetInstance() QSurfaceFormat format; format.setVersion(4, 1); // Request OpenGL 4.1 - for MacOS format.setProfile(QSurfaceFormat::CoreProfile); // Use the core profile = for MacOS - format.setSamples(16); + int samples = Gui::View3DInventorViewer::getNumSamples(); + if (samples > 1) { + format.setSamples(samples); + } format.setSwapInterval(2); format.setDepthBufferSize(24); format.setStencilBufferSize(8); diff --git a/src/Mod/CAM/PathSimulator/AppGL/Shader.cpp b/src/Mod/CAM/PathSimulator/AppGL/Shader.cpp index e27673b839..d587f1e35c 100644 --- a/src/Mod/CAM/PathSimulator/AppGL/Shader.cpp +++ b/src/Mod/CAM/PathSimulator/AppGL/Shader.cpp @@ -126,7 +126,7 @@ void Shader::UpdateNormalTexSlot(int normalSlot) void Shader::UpdateNoiseTexSlot(int noiseSlot) { if (mNoisePos >= 0) { - glUniform1i(mAlbedoPos, noiseSlot); + glUniform1i(mNoisePos, noiseSlot); } } @@ -464,8 +464,8 @@ const char* FragShaderSSAO = R"( // parameters (you'd probably want to use them as uniforms to more easily tweak the effect) int kernelSize = 64; - float radius = 2.5f; - float bias = 0.025; + float radius = 30f; + float bias = 0.01; // tile noise texture over screen based on screen dimensions divided by noise size const vec2 noiseScale = vec2(800.0/4.0, 600.0/4.0); @@ -505,7 +505,7 @@ const char* FragShaderSSAO = R"( occlusion += (sampleDepth >= samplePos.z + bias ? 1.0 : 0.0) * rangeCheck; } occlusion = 1.0 - (occlusion / kernelSize); - FragColor = vec4(pow(occlusion, 2), 0, 0, 1); + FragColor = vec4(occlusion, 0, 0, 1); } )"; diff --git a/src/Mod/CAM/Tests/TestCAMSanity.py b/src/Mod/CAM/Tests/TestCAMSanity.py index 0289b23f79..7b710617eb 100644 --- a/src/Mod/CAM/Tests/TestCAMSanity.py +++ b/src/Mod/CAM/Tests/TestCAMSanity.py @@ -42,7 +42,9 @@ from Tests.PathTestUtils import PathTestBase class TestCAMSanity(PathTestBase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/Tests/boxtest.fcstd") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") cls.job = cls.doc.getObject("Job") @classmethod diff --git a/src/Mod/CAM/Tests/TestPathAdaptive.py b/src/Mod/CAM/Tests/TestPathAdaptive.py index 68d5b75993..bce4a4c337 100644 --- a/src/Mod/CAM/Tests/TestPathAdaptive.py +++ b/src/Mod/CAM/Tests/TestPathAdaptive.py @@ -52,7 +52,9 @@ class TestPathAdaptive(PathTestBase): def initClass(cls): # Open existing FreeCAD document with test geometry cls.needsInit = False + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "Mod/CAM/Tests/test_adaptive.fcstd") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") # Create Job object, adding geometry objects from file opened above cls.job = PathJob.Create("Job", [cls.doc.Fusion], None) diff --git a/src/Mod/CAM/Tests/TestPathDrillable.py b/src/Mod/CAM/Tests/TestPathDrillable.py index 9e0df98838..ec63e99b62 100644 --- a/src/Mod/CAM/Tests/TestPathDrillable.py +++ b/src/Mod/CAM/Tests/TestPathDrillable.py @@ -35,7 +35,9 @@ else: class TestPathDrillable(PathTestUtils.PathTestBase): def setUp(self): + App.ConfigSet("SuppressRecomputeRequiredDialog", "True") self.doc = App.open(App.getHomePath() + "/Mod/CAM/Tests/Drilling_1.FCStd") + App.ConfigSet("SuppressRecomputeRequiredDialog", "") self.obj = self.doc.getObject("Pocket011") def tearDown(self): diff --git a/src/Mod/CAM/Tests/TestPathOpUtil.py b/src/Mod/CAM/Tests/TestPathOpUtil.py index 028e0f7d8b..d7ec189d25 100644 --- a/src/Mod/CAM/Tests/TestPathOpUtil.py +++ b/src/Mod/CAM/Tests/TestPathOpUtil.py @@ -84,7 +84,9 @@ def wireMarkers(wire): class TestPathOpUtil(PathTestUtils.PathTestBase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.openDocument(DOC) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") @classmethod def tearDownClass(cls): diff --git a/src/Mod/CAM/Tests/TestPathPost.py b/src/Mod/CAM/Tests/TestPathPost.py index ebb7c26e35..469c371d3c 100644 --- a/src/Mod/CAM/Tests/TestPathPost.py +++ b/src/Mod/CAM/Tests/TestPathPost.py @@ -86,6 +86,8 @@ class TestFileNameGenerator(unittest.TestCase): # cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/Tests/boxtest.fcstd") # cls.job = cls.doc.getObject("Job") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") + cls.testfile = FreeCAD.getHomePath() + "Mod/CAM/Tests/test_filenaming.fcstd" cls.testfilepath, cls.testfilename = os.path.split(cls.testfile) cls.testfilename, cls.ext = os.path.splitext(cls.testfilename) @@ -98,6 +100,7 @@ class TestFileNameGenerator(unittest.TestCase): @classmethod def tearDownClass(cls): FreeCAD.closeDocument(cls.doc.Name) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") # def test010(self): # self.job.PostProcessorOutputFile = "" @@ -272,12 +275,14 @@ class TestFileNameGenerator(unittest.TestCase): class TestResolvingPostProcessorName(unittest.TestCase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/Tests/boxtest.fcstd") cls.job = cls.doc.getObject("Job") @classmethod def tearDownClass(cls): FreeCAD.closeDocument(cls.doc.Name) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") def setUp(self): pref = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/CAM") @@ -327,12 +332,14 @@ class TestPostProcessorFactory(unittest.TestCase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/Tests/boxtest.fcstd") cls.job = cls.doc.getObject("Job") @classmethod def tearDownClass(cls): FreeCAD.closeDocument(cls.doc.Name) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") def setUp(self): pass @@ -359,12 +366,14 @@ class TestPostProcessorClass(unittest.TestCase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "/Mod/CAM/Tests/boxtest.fcstd") cls.job = cls.doc.getObject("Job") @classmethod def tearDownClass(cls): FreeCAD.closeDocument(cls.doc.Name) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") def setUp(self): pass @@ -603,8 +612,10 @@ class TestBuildPostList(unittest.TestCase): @classmethod def setUpClass(cls): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.testfile = FreeCAD.getHomePath() + "Mod/CAM/Tests/test_filenaming.fcstd" cls.doc = FreeCAD.open(cls.testfile) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") cls.job = cls.doc.getObjectsByLabel("MainJob")[0] @classmethod diff --git a/src/Mod/CAM/Tests/TestPathProfile.py b/src/Mod/CAM/Tests/TestPathProfile.py index f41cb7cbf8..d6be87bb1f 100644 --- a/src/Mod/CAM/Tests/TestPathProfile.py +++ b/src/Mod/CAM/Tests/TestPathProfile.py @@ -54,7 +54,9 @@ class TestPathProfile(PathTestBase): def initClass(cls): # Open existing FreeCAD document with test geometry cls.needsInit = False + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") cls.doc = FreeCAD.open(FreeCAD.getHomePath() + "Mod/CAM/Tests/test_profile.fcstd") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") # Create Job object, adding geometry objects from file opened above cls.job = PathJob.Create("Job", [cls.doc.Body], None) diff --git a/src/Mod/CAM/Tests/TestPathToolController.py b/src/Mod/CAM/Tests/TestPathToolController.py index af4b9717ed..7f6c76a040 100644 --- a/src/Mod/CAM/Tests/TestPathToolController.py +++ b/src/Mod/CAM/Tests/TestPathToolController.py @@ -31,9 +31,11 @@ from Tests.PathTestUtils import PathTestBase class TestPathToolController(PathTestBase): def setUp(self): self.doc = FreeCAD.newDocument("TestPathToolController") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") def tearDown(self): FreeCAD.closeDocument(self.doc.Name) + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") def createTool(self, name="t1", diameter=1.75): attrs = { diff --git a/src/Mod/Draft/DraftGui.py b/src/Mod/Draft/DraftGui.py index 487d8f703d..4536b3a560 100644 --- a/src/Mod/Draft/DraftGui.py +++ b/src/Mod/Draft/DraftGui.py @@ -1305,18 +1305,24 @@ class DraftToolBar: self.xValue.setEnabled(True) self.yValue.setEnabled(False) self.zValue.setEnabled(False) + self.yValue.setText("0") + self.zValue.setText("0") self.angleValue.setEnabled(False) self.setFocus() elif (mask == "y") or (self.mask == "y"): self.xValue.setEnabled(False) self.yValue.setEnabled(True) self.zValue.setEnabled(False) + self.xValue.setText("0") + self.zValue.setText("0") self.angleValue.setEnabled(False) self.setFocus("y") elif (mask == "z") or (self.mask == "z"): self.xValue.setEnabled(False) self.yValue.setEnabled(False) self.zValue.setEnabled(True) + self.xValue.setText("0") + self.yValue.setText("0") self.angleValue.setEnabled(False) self.setFocus("z") else: diff --git a/src/Mod/Draft/Resources/translations/Draft.ts b/src/Mod/Draft/Resources/translations/Draft.ts index 7f40486fe7..babb1814ec 100644 --- a/src/Mod/Draft/Resources/translations/Draft.ts +++ b/src/Mod/Draft/Resources/translations/Draft.ts @@ -2931,8 +2931,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3156,8 +3156,8 @@ Not available if Draft preference option 'Use Part Primitives' is enab - - + + Autogroup off @@ -3251,32 +3251,32 @@ Not available if Draft preference option 'Use Part Primitives' is enab - + Autogroup: - + Modify objects - + Faces - + Remove - + Add - + Facebinder elements @@ -4796,29 +4796,29 @@ The final angle will be the base angle plus this amount. - + Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented @@ -5159,24 +5159,24 @@ The final angle will be the base angle plus this amount. - + Activate this layer - + Select layer contents - - + + Merge layer duplicates - - + + Add new layer @@ -5453,7 +5453,7 @@ The final angle will be the base angle plus this amount. - + Do you want to update the SVG pattern options of existing objects in all opened documents? @@ -5479,7 +5479,7 @@ of existing objects in all opened documents? - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5562,7 +5562,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_be.qm b/src/Mod/Draft/Resources/translations/Draft_be.qm index 46665ea8b5..fbbc7a9e6f 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_be.qm and b/src/Mod/Draft/Resources/translations/Draft_be.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_be.ts b/src/Mod/Draft/Resources/translations/Draft_be.ts index 7476f45dfc..10de9a4bc1 100644 --- a/src/Mod/Draft/Resources/translations/Draft_be.ts +++ b/src/Mod/Draft/Resources/translations/Draft_be.ts @@ -3004,8 +3004,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3231,8 +3231,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Аўтаматычнае групаванне выключана @@ -3326,32 +3326,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledГлабальны {} - + Autogroup: Аўтаматычнае групаванне: - + Modify objects Змяніць аб'екты - + Faces Грані - + Remove Выдаліць - + Add Дадаць - + Facebinder elements Элементы злучаных паверхняў @@ -4129,12 +4129,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Аб'ект не падтрымліваецца. Only a single face can be extruded. - Only a single face can be extruded. + Можна выдушыць толькі адну грань. @@ -4879,29 +4879,29 @@ The final angle will be the base angle plus this amount. Канчатковае зрушэнне занадта вялікае для даўжыні траекторыі за мінусам Пачатковага зрушэння. Замест гэтага ўжываецца нуль. - + Length of tangent vector is zero. Copy not aligned. Даўжыня датычнага вектару - нуль. Копія не выраўнаваная. - - + + Length of normal vector is zero. Using a default axis instead. Даўжыня вектару нармалі - нуль. Замест гэтага ўжываецца першапачатковая вось. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Вектары датычнай і нармалі паралельныя. Вектар нармалі заменены першапачатковай воссю. - + Cannot calculate normal vector. Using the default normal instead. Не атрымалася вылічыць вектар нармалі. Замест гэтага ўжываецца першапачатковы вектар нармалі. - + AlignMode {} is not implemented AlignMode {} - не рэалізаваны @@ -5242,24 +5242,24 @@ The final angle will be the base angle plus this amount. Няправільны ўвод: павінен быць лік ад 0 да 100. - + Activate this layer Задзейнічаць гэты ўзровень - + Select layer contents Абраць змест пласта - - + + Merge layer duplicates Аб'яднаць паўторныя пласты - - + + Add new layer Дадаць новы пласт @@ -5536,7 +5536,7 @@ The final angle will be the base angle plus this amount. Абярыце тры вяршыні, адну ці некалькі фігур, альбо аб'ект, каб вызначыць працоўную плоскасць - + Do you want to update the SVG pattern options of existing objects in all opened documents? Ці жадаеце вы абнавіць налады шаблону SVG існуючых аб'ектаў ва ўсіх адчыненых дакументах? @@ -5562,7 +5562,7 @@ of existing objects in all opened documents? абноўленыя ўласцівасці выгляду - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5652,7 +5652,7 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ca.qm b/src/Mod/Draft/Resources/translations/Draft_ca.qm index e469c69915..01cf9fa003 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ca.qm and b/src/Mod/Draft/Resources/translations/Draft_ca.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ca.ts b/src/Mod/Draft/Resources/translations/Draft_ca.ts index e91eb98e8c..84bf00e281 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ca.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ca.ts @@ -810,14 +810,14 @@ view each time a command is started Offset - Equidistancia (ofset) + Equidistància An optional offset to give to the working plane above its base position. Use this together with one of the buttons above - Una separació opcional per al pla de treball damunt de la seva posició de base. Utilitzeu-ho juntament amb un dels botons de dalt + Una equidistància opcional per al pla de treball damunt de la seva posició de base. Utilitzeu-ho juntament amb un dels botons de dalt @@ -2971,8 +2971,8 @@ si coincideixen amb l'eix X, Y o Z del sistema de coordenades global - - + + None @@ -3107,12 +3107,12 @@ Not available if Draft preference option 'Use Part Primitives' is enabled If checked, an OCC-style offset will be performed instead of the classic offset - Si s'activa, es realitzarà un desplaçament estil OCC en comptes del desplaçament clàssic + Si s'activa, es realitzarà una equidistància d'estil OCC en comptes de l'equidistància clàssica OCC-style offset - Desplaçament de l'estil OCC + Equidistància d'estil OCC @@ -3196,8 +3196,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Desactivar Autoagrupar @@ -3249,7 +3249,7 @@ Not available if Draft preference option 'Use Part Primitives' is enabled Offset - Equidistancia (ofset) + Equidistància @@ -3291,32 +3291,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autoagrupar: - + Modify objects Modificar objectes - + Faces Cares - + Remove Elimina - + Add Afegeix - + Facebinder elements Elements del Lligacares @@ -4089,23 +4089,23 @@ L'angle final serà l'angle de base més aquesta quantitat. This object is not supported. - This object is not supported. + Aquest objecte no és suportat. Only a single face can be extruded. - Only a single face can be extruded. + Només es pot extrudir una sola cara. Pick distance - Tria la distància + Tria l'equidistància Offset angle - Angle de Ofset + Angle d'equidistància @@ -4831,37 +4831,37 @@ L'angle final serà l'angle de base més aquesta quantitat. Start Offset too large for path length. Using zero instead. - El desplaçament inicial és massa gran per la longitud del camí. Utilitzant zero en el seu lloc. + L'equidistància inicial és massa gran per la longitud del camí. Utilitzant zero en el seu lloc. End Offset too large for path length minus Start Offset. Using zero instead. - El desplaçament final és massa gran per la longitud del camí menys el desplaçament inicial. Utilitzant zero en el seu lloc. + L'equidistància final és massa gran per la longitud del camí menys l'equidistància inicial. Utilitzant zero en el seu lloc. - + Length of tangent vector is zero. Copy not aligned. La longitud del vector tangent és zero. Còpia no-alineada. - - + + Length of normal vector is zero. Using a default axis instead. La longitud del vector normal és zero. Utilitzant l'eix predeterminat en el seu lloc. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Els vectors tangent i normal són paral·lels. S'ha substituït el vector normal per un eix predeterminat. - + Cannot calculate normal vector. Using the default normal instead. No es pot calcular el vector normal. Utilitzant el vector normal predeterminat en el seu lloc. - + AlignMode {} is not implemented AlignMode {} no està implementat @@ -5202,24 +5202,24 @@ L'angle final serà l'angle de base més aquesta quantitat. Entrada incorrecta: ha de ser un nombre entre 0 i 100. - + Activate this layer Activa aquesta capa - + Select layer contents Selecciona el contingut de la capa - - + + Merge layer duplicates Fusiona duplicats de capa - - + + Add new layer Afegeix una nova capa @@ -5496,7 +5496,7 @@ L'angle final serà l'angle de base més aquesta quantitat. Selecciona 3 vèrtexs, una o més formes, o un objecte per a definir un pla de treball - + Do you want to update the SVG pattern options of existing objects in all opened documents? Vols actualitzar les opcions de patró SVG dels objectes existents en tots els documents oberts? @@ -5522,7 +5522,7 @@ of existing objects in all opened documents? s'han actualitzat les propietats de vista - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5612,7 +5612,7 @@ Per permetre que FreeCAD descarregui aquestes llibreries respongueu Sí. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -7049,7 +7049,7 @@ Per exemple, pot unir objectes seleccionats en un de sol, convertir vores simple Offset - Equidistancia (ofset) + Equidistància diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.qm b/src/Mod/Draft/Resources/translations/Draft_cs.qm index a1830c5f83..f35666e410 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_cs.qm and b/src/Mod/Draft/Resources/translations/Draft_cs.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_cs.ts b/src/Mod/Draft/Resources/translations/Draft_cs.ts index 27e4952af5..08aabc734c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_cs.ts +++ b/src/Mod/Draft/Resources/translations/Draft_cs.ts @@ -3007,8 +3007,8 @@ pokud odpovídají osám X, Y, nebo Z globální souřadnicové soustavy - - + + None @@ -3235,8 +3235,8 @@ Není k dispozici, pokud je povolena možnost předvolby návrhu „Použít zá - - + + Autogroup off Automatické seskupování vypnuto @@ -3330,32 +3330,32 @@ Není k dispozici, pokud je povolena možnost předvolby návrhu „Použít zá Globální {} - + Autogroup: Automatická skupina: - + Modify objects Upravit objekty - + Faces Plochy - + Remove Odstranit - + Add Přidat - + Facebinder elements Facebinder prvky @@ -4131,12 +4131,12 @@ Konečný úhel bude základní úhel plus tato hodnota. This object is not supported. - This object is not supported. + Tento objekt není podporován. Only a single face can be extruded. - Only a single face can be extruded. + Lze vysunout pouze jedna plocha. @@ -4881,29 +4881,29 @@ Konečný úhel bude základní úhel plus tato hodnota. Koncový posun je příliš velký pro délku dráhy mínus Počáteční posun. Místo toho použijte nulu. - + Length of tangent vector is zero. Copy not aligned. Délka tečného vektoru je nula. Kopie není zarovnána. - - + + Length of normal vector is zero. Using a default axis instead. Délka normálního vektoru je nula. Místo toho použijte výchozí osu. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tečné a normálové vektory jsou rovnoběžné. Normální nahrazeno výchozí osou. - + Cannot calculate normal vector. Using the default normal instead. Nelze vypočítat normální vektor. Místo toho použijte výchozí normální. - + AlignMode {} is not implemented AlignMode {} není implementován @@ -5244,24 +5244,24 @@ Konečný úhel bude základní úhel plus tato hodnota. Chybný vstup: musí to být číslo mezi 0 a 100. - + Activate this layer Aktivujte tuto vrstvu - + Select layer contents Vyberte obsah vrstvy - - + + Merge layer duplicates Sloučit duplikáty vrstev - - + + Add new layer Přidat novou vrstvu @@ -5538,7 +5538,7 @@ Konečný úhel bude základní úhel plus tato hodnota. Vyberte 3 vrcholy, jeden nebo více tvarů nebo objekt pro definování pracovní roviny - + Do you want to update the SVG pattern options of existing objects in all opened documents? Chcete aktualizovat nastavení SVG vzoru @@ -5565,7 +5565,7 @@ existujících objektů ve všech otevřených dokumentech? aktualizované vlastnosti zobrazení - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5654,7 +5654,7 @@ Pokud chcete umožnit FreeCADu stahnuti těhto Knihoven, zvolte Ano. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_da.qm b/src/Mod/Draft/Resources/translations/Draft_da.qm index 0b0847363f..5ca40b20a5 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_da.qm and b/src/Mod/Draft/Resources/translations/Draft_da.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_da.ts b/src/Mod/Draft/Resources/translations/Draft_da.ts index f96fdd66c4..872578fd22 100644 --- a/src/Mod/Draft/Resources/translations/Draft_da.ts +++ b/src/Mod/Draft/Resources/translations/Draft_da.ts @@ -41,7 +41,7 @@ Layers manager - Layers manager + Laghåndtering @@ -109,23 +109,23 @@ The font size in system units - The font size in system units + Skriftstørrelsen i systemenheder Lines and arrows - Lines and arrows + Linjer og pile Show line - Show line + Vis linje The width of the lines - The width of the lines + Tykkelsen af linjerne @@ -153,7 +153,7 @@ Line and arrow color - Line and arrow color + Linje og pilfarve @@ -192,7 +192,7 @@ Text color - Text color + Tekstfarve @@ -230,7 +230,7 @@ Unit override - Unit override + Enhedsoverskrivning @@ -252,7 +252,7 @@ Text spacing - Text spacing + Tekstafstand @@ -786,7 +786,7 @@ Or choose one of the options below. Align to view - Align to view + Flugt med visning @@ -803,7 +803,7 @@ view each time a command is started Offset - Offset + Forskydning @@ -1091,12 +1091,12 @@ will be moved to the center of the view. Text spacing - Text spacing + Tekstafstand Text color - Text color + Tekstfarve @@ -1133,7 +1133,7 @@ Annotation scale widget. If the scale is 1:100 the multiplier is 100. Lines and arrows - Lines and arrows + Linjer og pile @@ -1208,7 +1208,7 @@ Annotation scale widget. If the scale is 1:100 the multiplier is 100. Line and arrow color - Line and arrow color + Linje og pilfarve @@ -1274,7 +1274,7 @@ for linear dimensions. Unit override - Unit override + Enhedsoverskrivning @@ -1686,7 +1686,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. Text color - Text color + Tekstfarve @@ -1696,7 +1696,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. Lines and arrows - Lines and arrows + Linjer og pile @@ -1772,7 +1772,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. Line and arrow color - Line and arrow color + Linje og pilfarve @@ -1797,7 +1797,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. Unit override - Unit override + Enhedsoverskrivning @@ -1865,7 +1865,7 @@ used for linear dimensions. Text spacing - Text spacing + Tekstafstand @@ -3001,8 +3001,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3229,8 +3229,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3282,7 +3282,7 @@ Not available if Draft preference option 'Use Part Primitives' is enabled Offset - Offset + Forskydning @@ -3324,32 +3324,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Ansigter - + Remove Fjern - + Add Tilføj - + Facebinder elements Facebinder elements @@ -4875,29 +4875,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5238,24 +5238,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5532,7 +5532,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5559,7 +5559,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5649,7 +5649,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -7098,7 +7098,7 @@ convert closed edges into filled faces and parametric polygons, and merge faces Offset - Offset + Forskydning @@ -8165,7 +8165,7 @@ the 'First Angle' and 'Last Angle' properties. Text color - Text color + Tekstfarve diff --git a/src/Mod/Draft/Resources/translations/Draft_de.qm b/src/Mod/Draft/Resources/translations/Draft_de.qm index 83a6d8caca..26d4a25728 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_de.qm and b/src/Mod/Draft/Resources/translations/Draft_de.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_de.ts b/src/Mod/Draft/Resources/translations/Draft_de.ts index 7f15004455..c47157ef61 100644 --- a/src/Mod/Draft/Resources/translations/Draft_de.ts +++ b/src/Mod/Draft/Resources/translations/Draft_de.ts @@ -3002,8 +3002,8 @@ gefärbt, wenn sie mit der X-, Y- oder Z-Achse des globalen Koordinatensystems - - + + None @@ -3229,8 +3229,8 @@ Nicht verfügbar, wenn die Option "Part-Grundkörper erstellen, wenn möglich" a - - + + Autogroup off Autogruppe aus @@ -3324,32 +3324,32 @@ Nicht verfügbar, wenn die Option "Part-Grundkörper erstellen, wenn möglich" a Globales {} - + Autogroup: Autogruppe: - + Modify objects Objekte bearbeiten - + Faces Flächen - + Remove Entfernen - + Add Hinzufügen - + Facebinder elements Flächen-Verbund-Elemente @@ -4124,12 +4124,12 @@ Der endgültige Winkel ist der Basiswinkel plus dieser Betrag. This object is not supported. - This object is not supported. + Dieses Objekt wird nicht unterstützt. Only a single face can be extruded. - Only a single face can be extruded. + Nur eine einzelne Fläche kann extrudiert werden. @@ -4874,29 +4874,29 @@ Der endgültige Winkel ist der Basiswinkel plus dieser Betrag. End-Offset ist zu groß für die Pfadlänge minus Start-Offset. Verwende stattdessen Null. - + Length of tangent vector is zero. Copy not aligned. Länge des Tangent-Vektors ist Null. Kopie nicht ausgerichtet. - - + + Length of normal vector is zero. Using a default axis instead. Die Länge des normalen Vektors ist Null. Verwende stattdessen eine Standardachse. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangente und normale Vektoren sind parallel. Normal ersetzt durch eine Standardachse. - + Cannot calculate normal vector. Using the default normal instead. Kann den normalen Vektor nicht berechnen. Stattdessen die Standardeinstellung verwenden. - + AlignMode {} is not implemented AlignMode {} ist nicht implementiert @@ -5237,24 +5237,24 @@ Der endgültige Winkel ist der Basiswinkel plus dieser Betrag. Falsche Eingabe: muss eine Zahl zwischen 0 und 100 sein. - + Activate this layer Diese Ebene aktivieren - + Select layer contents Ebeneninhalt auswählen - - + + Merge layer duplicates Ebenenduplikate zusammenführen - - + + Add new layer Neue Ebene hinzufügen @@ -5531,7 +5531,7 @@ Der endgültige Winkel ist der Basiswinkel plus dieser Betrag. 3 Knoten, eine bzw. mehrere Formen oder ein Objekt auswählen, um eine Arbeitsebene zu definieren - + Do you want to update the SVG pattern options of existing objects in all opened documents? Sollen die Optionen der SVG-Muster existierender @@ -5558,7 +5558,7 @@ of existing objects in all opened documents? aktualisierte Ansichtseigenschaften - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5646,7 +5646,7 @@ Ein Klick auf "Ja", gestattet FreeCAD den automatischen Download der Bibliotheke Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_el.ts b/src/Mod/Draft/Resources/translations/Draft_el.ts index f167b39689..d21156e101 100644 --- a/src/Mod/Draft/Resources/translations/Draft_el.ts +++ b/src/Mod/Draft/Resources/translations/Draft_el.ts @@ -2999,8 +2999,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3227,8 +3227,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Απενεργοποίηση Αυτόματης Ομαδοποίησης @@ -3322,32 +3322,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledΠαγκόσμιο - + Autogroup: Αυτόματη Ομαδοποίηση: - + Modify objects Modify objects - + Faces Όψεις - + Remove Αφαίρεση - + Add Προσθήκη - + Facebinder elements Facebinder elements @@ -4871,29 +4871,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5234,24 +5234,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5528,7 +5528,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5555,7 +5555,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5645,7 +5645,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_es-AR.qm b/src/Mod/Draft/Resources/translations/Draft_es-AR.qm index f53df02b21..2bac54a320 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_es-AR.qm and b/src/Mod/Draft/Resources/translations/Draft_es-AR.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_es-AR.ts b/src/Mod/Draft/Resources/translations/Draft_es-AR.ts index 15f4f683a5..cf4e025e8d 100644 --- a/src/Mod/Draft/Resources/translations/Draft_es-AR.ts +++ b/src/Mod/Draft/Resources/translations/Draft_es-AR.ts @@ -1162,7 +1162,7 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. If checked, a unit symbol is added to dimension texts - Si está marcado, un símbolo unitario es añadido a los textos de dimensión + Si está marcado, un símbolo unitario es añadido a los textos de cota @@ -1172,7 +1172,7 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. The distance the dimension line is extended past the extension lines - La distancia de la línea se extiende más allá de las líneas de extensión + La distancia que la línea de cota se extiende más allá de las líneas de referencia @@ -1240,20 +1240,20 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. - La longitud de las líneas de extensión. Utilice 0 para líneas de extensión completas. Un valor negativo -define la brecha entre los extremos de las líneas de extensión y los puntos medidos. -Un valor positivo define la longitud máxima de las líneas de extensión. Sólo se utiliza -para las dimensiones lineales. + La longitud de las líneas de referencia. Utilice 0 para líneas de referencia completas. Un valor negativo +define la brecha entre los extremos de las líneas de referencia y los puntos medidos. +Un valor positivo define la longitud máxima de las líneas de referencia. Sólo se utiliza +para las cotas lineales. Ext line overshoot - Prolongación de línea de extensión + Prolongación de línea de referencia The length of extension lines above the dimension line - La longitud de las líneas de extensión por encima de la línea de cota + La longitud de las líneas de referencia por encima de la línea de cota @@ -1656,14 +1656,14 @@ definiciones de patrones para ser añadido a los patrones estándarThe default font for texts, dimensions and labels. It can be a font name such as "Arial", a style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans", or a name with a style such as "Arial:Bold". - Fuente predeterminada para textos, dimensiones y etiquetas. Puede ser un nombre de fuente como + Fuente predeterminada para textos, cotas y etiquetas. Puede ser un nombre de fuente como como "Arial", un estilo como "sans", "serif" o "mono", o una familia como "Arial,Helvetica,sans", o un nombre con un estilo como "Arial:Bold". The default height for texts, dimension texts and label texts - La altura por defecto para los textos, textos de cotas y textos de etiquetas + La altura por defecto para los textos, los textos de cotas y etiquetas @@ -1828,12 +1828,12 @@ o cm, deje en blanco para usar la unidad actual definida en FreeCAD. The default distance the dimension line is extended past the extension lines - La distancia por defecto la línea de cota se extiende más allá de las líneas de extensión + La distancia por defecto la línea de cota se extiende más allá de las líneas de referencia Extension line length - Longitud de línea de extensión + Longitud de línea de referencia @@ -1841,15 +1841,15 @@ o cm, deje en blanco para usar la unidad actual definida en FreeCAD. - La longitud por defecto de las líneas de extensión. Utilice 0 para líneas de extensión completas. Un valor -negativo define la brecha entre los extremos de las líneas de extensión y los puntos medidos. -Un valor positivo define la longitud máxima de las líneas de extensión. Sólo se utiliza + La longitud por defecto de las líneas de referencia. Utilice 0 para líneas de referencia completas. Un valor +negativo define la brecha entre los extremos de las líneas de referencia y los puntos medidos. +Un valor positivo define la longitud máxima de las líneas de referencia. Sólo se utiliza para las cotas lineales. The default length of extension lines above the dimension line - La longitud por defecto de las líneas de extensión encima de la línea de cota + La longitud por defecto de las líneas de referencia encima de la línea de cota @@ -3004,8 +3004,8 @@ si coinciden con el eje X, Y o Z del sistema global de coordenadas - - + + None @@ -3231,8 +3231,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Desactivar Auto-agrupar @@ -3326,32 +3326,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogrupo: - + Modify objects Modificar objetos - + Faces Caras - + Remove Eliminar - + Add Agregar - + Facebinder elements Elementos Facebinder @@ -4125,12 +4125,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Este objeto no está soportado. Only a single face can be extruded. - Only a single face can be extruded. + Sólo una sola cara puede ser extruida. @@ -4875,29 +4875,29 @@ The final angle will be the base angle plus this amount. Desplazamiento final demasiado grande para la longitud del trayecto menos el Desplazamiento Inicial. Usando cero en su lugar. - + Length of tangent vector is zero. Copy not aligned. La longitud del vector tangente es cero. Copia no alineada. - - + + Length of normal vector is zero. Using a default axis instead. La longitud del vector normal es cero. Utilizando un eje predeterminado en su lugar. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Los vectores tangente y normal son paralelos. El normal se reemplaza por un eje por defecto. - + Cannot calculate normal vector. Using the default normal instead. No se puede calcular el vector normal. Utilizando la normal por defecto en su lugar. - + AlignMode {} is not implemented AlignMode {} no está implementado @@ -5238,24 +5238,24 @@ The final angle will be the base angle plus this amount. Entrada incorrecta: debe ser un número entre 0 y 100. - + Activate this layer Activar esta capa - + Select layer contents Seleccionar contenido de la capa - - + + Merge layer duplicates Combinar capas duplicadas - - + + Add new layer Añadir nueva capa @@ -5532,7 +5532,7 @@ The final angle will be the base angle plus this amount. Seleccione 3 vértices, una o más formas o un objeto para definir un plano de trabajo - + Do you want to update the SVG pattern options of existing objects in all opened documents? ¿Desea actualizar las opciones del patrón SVG @@ -5559,7 +5559,7 @@ de los objetos existentes en todos los documentos abiertos? propiedades de vista actualizadas - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5649,7 +5649,7 @@ Para habilitar a FreeCAD la descarga de estas bibliotecas, responda Sí. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -6014,9 +6014,7 @@ if any. If many objects or many subelements are selected, only the first one in each case will be used to provide information to the label. Crea una etiqueta, opcionalmente unida a un objeto o subelemento seleccionado. - Primero selecciona un vértice, una arista, o una cara de un objeto, después llama a este comando, y entonces establece la posición de la línea directriz y el texto de la etiqueta. La etiqueta será capaz de mostrar información sobre este objeto y, en su caso, sobre el subelemento seleccionado. - Si se seleccionan muchos objetos o muchos subelementos, solo se usará el primero en cada caso para proporcionar información a la etiqueta.
@@ -7890,7 +7888,7 @@ Esta propiedad es de solo lectura, así que el número depende de los puntos con The normal direction of the text of the dimension - La dirección normal del texto de la dimensión + La dirección normal del texto de la cota @@ -8269,12 +8267,12 @@ las propiedades de 'Primer ángulo' y 'Último ángulo'. Spacing between text and dimension line - Espacio entre el texto y la línea de dimensión + Espacio entre el texto y la línea de cota Rotate the dimension text 180 degrees - Girar el texto de dimensión 180 grados + Girar el texto de cota 180 grados @@ -8288,7 +8286,7 @@ Deja '(0,0,0)' para posición automática Text override. Write '$dim' so that it is replaced by the dimension length. Anulación de texto. -Escribe '$dim' para que sea reemplazado por la longitud de la dimensión. +Escribe '$dim' para que sea reemplazado por la longitud de la cota. @@ -8324,26 +8322,26 @@ Utilice 'arch' para forzar notación de arco de Estados Unidos Rotate the dimension arrows 180 degrees - Gira 180 grados las flechas de dimensión + Gira 180 grados las flechas de cota The distance the dimension line is extended past the extension lines - La distancia de la línea de dimensión se extiende -más allá de las líneas de extensión + La distancia de la línea de cota se extiende +más allá de las líneas de referencia Length of the extension lines - Longitud de las líneas auxiliares + Longitud de las líneas de referencia Length of the extension line beyond the dimension line - Longitud de la línea de extensión -más allá de la línea de dimensión + Longitud de la línea de referencia +más allá de la línea de cota diff --git a/src/Mod/Draft/Resources/translations/Draft_es-ES.qm b/src/Mod/Draft/Resources/translations/Draft_es-ES.qm index 56e3321910..a63be00b7a 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_es-ES.qm and b/src/Mod/Draft/Resources/translations/Draft_es-ES.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_es-ES.ts b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts index 230b7bc965..9953d3d02c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_es-ES.ts +++ b/src/Mod/Draft/Resources/translations/Draft_es-ES.ts @@ -98,7 +98,7 @@ The font to use for texts and dimensions - La fuente a usar para textos y dimensiones + La fuente a usar para textos y cotas @@ -136,7 +136,7 @@ The type of arrows or markers to use for dimensions and labels - El tipo de flechas o marcadores a usar para dimensiones y etiquetas + El tipo de flechas o marcadores a usar para cotas y etiquetas @@ -159,13 +159,13 @@ The distance the dimension line is additionally extended - La distancia que la línea de dimensión se amplía adicionalmente + La distancia que la línea de cota se amplía adicionalmente The distance the extension lines are additionally extended beyond the dimension line - La distancia que las líneas de extensión se extienden más allá de la línea de dimensión + La distancia que las líneas de referencia se extienden más allá de la línea de cota @@ -187,7 +187,7 @@ The color of texts, dimension texts and label texts - El color de los textos, la dimensión y etiquetas de los textos + El color de los textos, los textos de cotas y etiquetas @@ -308,23 +308,23 @@ Dimension overshoot - Dimensión excesiva + Prolongación de cota The length of the extension lines - La longitud de las líneas de prolongación + La longitud de las líneas de referencia Extension lines - Líneas de extensión + Líneas de referencia Extension overshoot - Extensión excesiva + Prolongación de línea de referencia
@@ -1107,7 +1107,7 @@ se moverá al centro de la vista. Dimensions - Dimensiones + Cotas @@ -1164,7 +1164,7 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. If checked, a unit symbol is added to dimension texts - Si está marcado, un símbolo unitario es añadido a los textos de dimensión + Si está marcado, un símbolo unitario es añadido a los textos de cota @@ -1174,7 +1174,7 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. The distance the dimension line is extended past the extension lines - La distancia de la línea se extiende más allá de las líneas de extensión + La distancia que la línea de cota se extiende más allá de las líneas de referencia @@ -1242,20 +1242,20 @@ widget de escala de anotación. Si la escala es 1:100 el multiplicador es 100. - La longitud de las líneas de extensión. Utilice 0 para líneas de extensión completas. Un valor negativo -define la brecha entre los extremos de las líneas de extensión y los puntos medidos. -Un valor positivo define la longitud máxima de las líneas de extensión. Sólo se utiliza -para las dimensiones lineales. + La longitud de las líneas de referencia. Utilice 0 para líneas de referencia completas. Un valor negativo +define la brecha entre los extremos de las líneas de referencia y los puntos medidos. +Un valor positivo define la longitud máxima de las líneas de referencia. Sólo se utiliza +para las cotas lineales. Ext line overshoot - Prolongación de línea de extensión + Prolongación de línea de referencia The length of extension lines above the dimension line - La longitud de las líneas de extensión por encima de la línea de cota + La longitud de las líneas de referencia por encima de la línea de cota @@ -1636,12 +1636,12 @@ definiciones de patrones para ser añadido a los patrones estándar Extension line overshoot - Extensión línea overshoot + Prolongación de línea de referencia Dimension line overshoot - Cota más allá de la línea de cota + Prolongación de línea de cota @@ -1658,14 +1658,14 @@ definiciones de patrones para ser añadido a los patrones estándarThe default font for texts, dimensions and labels. It can be a font name such as "Arial", a style such as "sans", "serif" or "mono", or a family such as "Arial,Helvetica,sans", or a name with a style such as "Arial:Bold". - Fuente predeterminada para textos, dimensiones y etiquetas. Puede ser un nombre de fuente como + Fuente predeterminada para textos, cotas y etiquetas. Puede ser un nombre de fuente como como "Arial", un estilo como "sans", "serif" o "mono", o una familia como "Arial,Helvetica,sans", o un nombre con un estilo como "Arial:Bold". The default height for texts, dimension texts and label texts - La altura por defecto para los textos, textos de cotas y textos de etiquetas + La altura por defecto para los textos, los textos de cotas y etiquetas @@ -1830,12 +1830,12 @@ o cm, deje en blanco para usar la unidad actual definida en FreeCAD. The default distance the dimension line is extended past the extension lines - La distancia por defecto la línea de cota se extiende más allá de las líneas de extensión + La distancia por defecto la línea de cota se extiende más allá de las líneas de referencia Extension line length - Longitud de línea de extensión + Longitud de línea de referencia @@ -1843,15 +1843,15 @@ o cm, deje en blanco para usar la unidad actual definida en FreeCAD. - La longitud por defecto de las líneas de extensión. Utilice 0 para líneas de extensión completas. Un valor -negativo define la brecha entre los extremos de las líneas de extensión y los puntos medidos. -Un valor positivo define la longitud máxima de las líneas de extensión. Sólo se utiliza + La longitud por defecto de las líneas de referencia. Utilice 0 para líneas de referencia completas. Un valor +negativo define la brecha entre los extremos de las líneas de referencia y los puntos medidos. +Un valor positivo define la longitud máxima de las líneas de referencia. Sólo se utiliza para las cotas lineales. The default length of extension lines above the dimension line - La longitud por defecto de las líneas de extensión encima de la línea de cota + La longitud por defecto de las líneas de referencia encima de la línea de cota @@ -3006,8 +3006,8 @@ si coinciden con el eje X, Y o Z del sistema global de coordenadas - - + + None @@ -3233,8 +3233,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Desactivar Auto-agrupar @@ -3328,32 +3328,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogrupo: - + Modify objects Modificar objetos - + Faces Caras - + Remove Quitar - + Add Añadir - + Facebinder elements Elementos Facebinder @@ -4127,12 +4127,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Este objeto no está soportado. Only a single face can be extruded. - Only a single face can be extruded. + Sólo una sola cara puede ser extruida. @@ -4877,29 +4877,29 @@ The final angle will be the base angle plus this amount. Desplazamiento final demasiado grande para la longitud del trayecto menos el Desplazamiento Inicial. Usando cero en su lugar. - + Length of tangent vector is zero. Copy not aligned. La longitud del vector tangente es cero. Copia no alineada. - - + + Length of normal vector is zero. Using a default axis instead. La longitud del vector normal es cero. Utilizando un eje predeterminado en su lugar. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Los vectores tangente y normal son paralelos. El normal se reemplaza por un eje por defecto. - + Cannot calculate normal vector. Using the default normal instead. No se puede calcular el vector normal. Utilizando la normal por defecto en su lugar. - + AlignMode {} is not implemented AlignMode {} no está implementado @@ -5240,24 +5240,24 @@ The final angle will be the base angle plus this amount. Entrada incorrecta: debe ser un número entre 0 y 100. - + Activate this layer Activar esta capa - + Select layer contents Seleccionar contenido de la capa - - + + Merge layer duplicates Combinar capas duplicadas - - + + Add new layer Añadir nueva capa @@ -5534,7 +5534,7 @@ The final angle will be the base angle plus this amount. Seleccione 3 vértices, una o más formas o un objeto para definir un plano de trabajo - + Do you want to update the SVG pattern options of existing objects in all opened documents? ¿Desea actualizar las opciones del patrón SVG @@ -5561,7 +5561,7 @@ de los objetos existentes en todos los documentos abiertos? propiedades de vista actualizadas - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5651,7 +5651,7 @@ Para habilitar a FreeCAD la descarga de estas bibliotecas, responda Sí. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -6016,9 +6016,7 @@ if any. If many objects or many subelements are selected, only the first one in each case will be used to provide information to the label. Crea una etiqueta, opcionalmente unida a un objeto o subelemento seleccionado. - Primero selecciona un vértice, una arista, o una cara de un objeto, después llama a este comando, y entonces establece la posición de la línea directriz y el texto de la etiqueta. La etiqueta será capaz de mostrar información sobre este objeto y, en su caso, sobre el subelemento seleccionado. - Si se seleccionan muchos objetos o muchos subelementos, solo se usará el primero en cada caso para proporcionar información a la etiqueta. @@ -7892,7 +7890,7 @@ Esta propiedad es de solo lectura, así que el número depende de los puntos con The normal direction of the text of the dimension - La dirección normal del texto de la dimensión + La dirección normal del texto de la cota @@ -8271,12 +8269,12 @@ las propiedades de 'Primer ángulo' y 'Último ángulo'. Spacing between text and dimension line - Espacio entre el texto y la línea de dimensión + Espacio entre el texto y la línea de cota Rotate the dimension text 180 degrees - Girar el texto de dimensión 180 grados + Girar el texto de cota 180 grados @@ -8290,7 +8288,7 @@ Deja '(0,0,0)' para posición automática Text override. Write '$dim' so that it is replaced by the dimension length. Anulación de texto. -Escribe '$dim' para que sea reemplazado por la longitud de la dimensión. +Escribe '$dim' para que sea reemplazado por la longitud de la cota. @@ -8326,26 +8324,26 @@ Utilice 'arch' para forzar notación de arco de Estados Unidos Rotate the dimension arrows 180 degrees - Gira 180 grados las flechas de dimensión + Gira 180 grados las flechas de cota The distance the dimension line is extended past the extension lines - La distancia de la línea de dimensión se extiende -más allá de las líneas de extensión + La distancia de la línea de cota se extiende +más allá de las líneas de referencia Length of the extension lines - Longitud de las líneas auxiliares + Longitud de las líneas de referencia Length of the extension line beyond the dimension line - Longitud de la línea de extensión -más allá de la línea de dimensión + Longitud de la línea de referencia +más allá de la línea de cota diff --git a/src/Mod/Draft/Resources/translations/Draft_eu.ts b/src/Mod/Draft/Resources/translations/Draft_eu.ts index e9473c4fb2..2d704254c4 100644 --- a/src/Mod/Draft/Resources/translations/Draft_eu.ts +++ b/src/Mod/Draft/Resources/translations/Draft_eu.ts @@ -3002,8 +3002,8 @@ koordenatu-sistema globalaren X, Y edo Z ardatzekin bat badatoz - - + + None @@ -3230,8 +3230,8 @@ Ez dago erabilgarri zirriborroen 'Erabili piezen jatorrizkoak' aukera gaituta ba - - + + Autogroup off Talde automatikoa desgaituta @@ -3325,32 +3325,32 @@ Ez dago erabilgarri zirriborroen 'Erabili piezen jatorrizkoak' aukera gaituta ba Globala {} - + Autogroup: Talde automatikoa: - + Modify objects Aldatu objektuak - + Faces Aurpegiak - + Remove Kendu - + Add Gehitu - + Facebinder elements Aurpegi-zorro elementuak @@ -4876,29 +4876,29 @@ Amaierako angelua oinarriko angelua gehi kantitate hau izango da. Amaierako desplazamendua luzeegia da bidearen luzera ken hasierako desplazamendurako. Zero erabiliko da horren ordez. - + Length of tangent vector is zero. Copy not aligned. Bektore tangentzialaren luzera zero da. Kopia ez dago lerrokatuta. - - + + Length of normal vector is zero. Using a default axis instead. Bektore normalaren luzera zero da. Ardatz lehenetsia erabiliko da haren ordez. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Bektore tangentziala eta normala paraleloak dira. Normala ardatz lehenetsi batekin ordezkatu da. - + Cannot calculate normal vector. Using the default normal instead. Ezin da bektore normala kalkulatu. Normal lehenetsia erabiliko da haren ordez. - + AlignMode {} is not implemented AlignMode {} ez dago inplementatuta @@ -5239,24 +5239,24 @@ Amaierako angelua oinarriko angelua gehi kantitate hau izango da. Okerreko sarrera: 0 eta 100 arteko zenbakia izan behar du. - + Activate this layer Aktibatu geruza hau - + Select layer contents Hautatu geruza-edukiak - - + + Merge layer duplicates Fusionatu geruza bikoiztuak - - + + Add new layer Gehitu geruza berria @@ -5533,7 +5533,7 @@ Amaierako angelua oinarriko angelua gehi kantitate hau izango da. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5560,7 +5560,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5650,7 +5650,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_fi.ts b/src/Mod/Draft/Resources/translations/Draft_fi.ts index c00d6482cf..3ad1055bcd 100644 --- a/src/Mod/Draft/Resources/translations/Draft_fi.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fi.ts @@ -3010,8 +3010,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3238,8 +3238,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3333,32 +3333,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Pintatahkot - + Remove Poista - + Add Lisää - + Facebinder elements Facebinder elements @@ -4884,29 +4884,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5247,24 +5247,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Aktivoi tämä taso - + Select layer contents Valitse tason sisältö - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Lisää uusi taso @@ -5541,7 +5541,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5568,7 +5568,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5658,7 +5658,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.qm b/src/Mod/Draft/Resources/translations/Draft_fr.qm index fb6d817559..ba52813f95 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_fr.qm and b/src/Mod/Draft/Resources/translations/Draft_fr.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_fr.ts b/src/Mod/Draft/Resources/translations/Draft_fr.ts index 6ae8bfe404..b819105ace 100644 --- a/src/Mod/Draft/Resources/translations/Draft_fr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_fr.ts @@ -3006,8 +3006,8 @@ soit nécessaire d'appuyer sur la touche pour l'aimantation. - - + + None @@ -3235,8 +3235,8 @@ vous n'aurez pas appuyé à nouveau sur le bouton de commande. - - + + Autogroup off Groupement automatique désactivé @@ -3330,32 +3330,32 @@ vous n'aurez pas appuyé à nouveau sur le bouton de commande. {} global - + Autogroup: Groupement automatique : - + Modify objects Modifier des objets - + Faces Faces - + Remove Supprimer - + Add Ajouter - + Facebinder elements Éléments d'une surface liée @@ -4130,12 +4130,12 @@ L'angle final sera l'angle de référence plus cette quantité. This object is not supported. - This object is not supported. + Cet objet n'est pas pris en compte. Only a single face can be extruded. - Only a single face can be extruded. + Une seule face peut être extrudée. @@ -4880,29 +4880,29 @@ L'angle final sera l'angle de référence plus cette quantité. Le décalage de la fin est trop important par rapport à la longueur de la courbe moins le décalage du début. Utiliser zéro à la place. - + Length of tangent vector is zero. Copy not aligned. La longueur du vecteur tangent est zéro. La copie est non alignée. - - + + Length of normal vector is zero. Using a default axis instead. La longueur du vecteur normal est zéro. Utiliser un axe par défaut à la place. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Les vecteurs tangents et normaux sont parallèles. La normale est remplacée par un axe par défaut. - + Cannot calculate normal vector. Using the default normal instead. Impossible de calculer le vecteur normal. Utiliser la normale par défaut à la place. - + AlignMode {} is not implemented Le mode aligner {} n'est pas implémenté @@ -5243,24 +5243,24 @@ L'angle final sera l'angle de référence plus cette quantité. Mauvaise saisie : cela doit être un nombre compris entre 0 et 100. - + Activate this layer Activer ce calque - + Select layer contents Sélectionner les contenus des calques - - + + Merge layer duplicates Fusionner les calques en double - - + + Add new layer Ajouter un nouveau calque @@ -5537,7 +5537,7 @@ L'angle final sera l'angle de référence plus cette quantité. Sélectionner 3 sommets, une ou plusieurs formes ou un objet pour définir un plan de travail. - + Do you want to update the SVG pattern options of existing objects in all opened documents? Voulez-vous mettre à jour les options des motifs SVG @@ -5564,7 +5564,7 @@ des objets existants dans tous les documents ouverts ? propriétés de la vue mises à jour - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5653,7 +5653,7 @@ Pour permettre à FreeCAD de télécharger ces bibliothèques, répondez Oui. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_hr.ts b/src/Mod/Draft/Resources/translations/Draft_hr.ts index 30adde5806..33298e335e 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hr.ts @@ -3042,8 +3042,8 @@ ako odgovaraju osi X, Y ili Z globalnog koordinatnog sustava - - + + None @@ -3270,8 +3270,8 @@ Nije dostupno ako je omogućena opcija 'Koristi se primitivni dio' postavki Nacr - - + + Autogroup off Automatsko grupiranje isključeno @@ -3365,32 +3365,32 @@ Nije dostupno ako je omogućena opcija 'Koristi se primitivni dio' postavki Nacr Globalno {} - + Autogroup: Automatsko grupiranje: - + Modify objects Modificiraj objekte - + Faces Plohe - + Remove Ukloniti - + Add Dodaj - + Facebinder elements Elementi povezivača lica @@ -4923,29 +4923,29 @@ Konačni kut bit će osnovni kut plus ovaj iznos. Pomak kraja je prevelik za duljinu putanje minus pomak početka. Umjesto toga koristi se nula. - + Length of tangent vector is zero. Copy not aligned. Duljina tangentnog vektora je nula. Kopija nije poravnata. - - + + Length of normal vector is zero. Using a default axis instead. Duljina normalnog vektora je nula. Umjesto toga upotrebljava se zadana os. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangentni i normalni vektori su paralelni. Normalno zamijenjeno zadanom osi. - + Cannot calculate normal vector. Using the default normal instead. Nije moguće izračunati normalni vektor. Umjesto toga koristi se zadana normala. - + AlignMode {} is not implemented PoravnanjeMod {} nije implementiran @@ -5287,24 +5287,24 @@ Konačni kut bit će osnovni kut plus ovaj iznos. Pogrešan unos: mora biti broj između 0 i 100. - + Activate this layer Aktiviraj ovaj sloj - + Select layer contents Odaberite sadržaj sloja - - + + Merge layer duplicates Spoji duplikate sloja - - + + Add new layer Dodaj novi sloj @@ -5582,7 +5582,7 @@ Konačni kut bit će osnovni kut plus ovaj iznos. Odaberite 3 vrha, jedan ili više oblika ili jedan objekt za definiranje radne ravnine - + Do you want to update the SVG pattern options of existing objects in all opened documents? Da li želite ažurirati opcije SVG uzorak objekta @@ -5609,7 +5609,7 @@ postojećih objekata u svim otvorenim dokumentima? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5699,7 +5699,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.qm b/src/Mod/Draft/Resources/translations/Draft_hu.qm index 96504ceff8..8fa137d3f6 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_hu.qm and b/src/Mod/Draft/Resources/translations/Draft_hu.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_hu.ts b/src/Mod/Draft/Resources/translations/Draft_hu.ts index 4395001abe..9e28f317a3 100644 --- a/src/Mod/Draft/Resources/translations/Draft_hu.ts +++ b/src/Mod/Draft/Resources/translations/Draft_hu.ts @@ -3005,8 +3005,8 @@ ha a globális koordináta-rendszer X, Y vagy Z tengelyekkel megegyeznek - - + + None @@ -3233,8 +3233,8 @@ Nem érhető el, ha a 'Rész-primitívek használata' beállítás engedélyezve - - + + Autogroup off Autócsoportosítás kikapcsolása @@ -3328,32 +3328,32 @@ Nem érhető el, ha a 'Rész-primitívek használata' beállítás engedélyezve Globális {} - + Autogroup: Autocsoport: - + Modify objects Tárgyak módosítása - + Faces Felületek - + Remove Eltávolítás - + Add Hozzáad - + Facebinder elements Felülettároló elemek @@ -4129,12 +4129,12 @@ A végső szög lesz az alapszög plusz ennek összege. This object is not supported. - This object is not supported. + Ez a tárgy nem támogatott. Only a single face can be extruded. - Only a single face can be extruded. + Csak egyetlen felületet lehet kihúzni. @@ -4879,29 +4879,29 @@ A végső szög lesz az alapszög plusz ennek összege. Eltolás vége túl nagy az útvonal hossza mínusz Eltolás kezdete. Helyette nullát használjunk. - + Length of tangent vector is zero. Copy not aligned. A vektor érintőjének hossza nulla. A másolat nem lesz hozzáigazítva. - - + + Length of normal vector is zero. Using a default axis instead. A aktuális vektor hossza nulla. Helyette az alapértelmezett tengely használata. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Az érintő és a normálvektorok párhuzamosak. Aktuális helyébe az alapértelmezett tengely lép. - + Cannot calculate normal vector. Using the default normal instead. Nem lehet kiszámítani az aktuális vektort. Helyette az alapértelmezett aktuális értéket használja. - + AlignMode {} is not implemented A {} igazítási mód nincs implementálva @@ -5242,24 +5242,24 @@ A végső szög lesz az alapszög plusz ennek összege. Hibás bemenet: 0 és 100 közötti számnak kell lennie. - + Activate this layer Ennek a rétegnek az aktiválása - + Select layer contents Réteg tartalom kijelölése - - + + Merge layer duplicates Megsokszorozott rétegek egyesítése - - + + Add new layer Új réteg hozzáadása @@ -5536,7 +5536,7 @@ A végső szög lesz az alapszög plusz ennek összege. Válasszon ki 3 csúcsot, egy vagy több alakzatot vagy egy tárgyat a munkasík meghatározásához - + Do you want to update the SVG pattern options of existing objects in all opened documents? Szeretné frissíteni a meglévő tárgyak SVG minta kehetőségeket az összes megnyitott dokumentumban? @@ -5562,7 +5562,7 @@ of existing objects in all opened documents? frissített nézeti tulajdonságok - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5652,7 +5652,7 @@ A FreeCAD letöltésének bekapcsolásához válassza az "Igen"-t. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_it.qm b/src/Mod/Draft/Resources/translations/Draft_it.qm index 8580746bf5..b4eea47458 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_it.qm and b/src/Mod/Draft/Resources/translations/Draft_it.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_it.ts b/src/Mod/Draft/Resources/translations/Draft_it.ts index 1e6144d6ce..d3e38519b6 100644 --- a/src/Mod/Draft/Resources/translations/Draft_it.ts +++ b/src/Mod/Draft/Resources/translations/Draft_it.ts @@ -82,12 +82,12 @@ Import styles from json file - Importa gli stili da json file + Importa gli stili da file JSON Export styles to json file - Esporta gli stili in json file + Esporta gli stili in file JSON @@ -511,7 +511,7 @@ Valori negativi si tradurranno in copie prodotte nella direzione negativa. Reset X - Resetta X + Reimposta X @@ -530,7 +530,7 @@ Valori negativi si tradurranno in copie prodotte nella direzione negativa. Reset Y - Resetta Y + Reimposta Y @@ -549,7 +549,7 @@ Valori negativi si tradurranno in copie prodotte nella direzione negativa. Reset Z - Resetta Z + Reimposta Z @@ -3009,8 +3009,8 @@ se corrispondono agli assi X, Y o Z del sistema di coordinate globali - - + + None @@ -3236,8 +3236,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Disattiva auto-gruppo @@ -3331,32 +3331,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobale {} - + Autogroup: Gruppo automatico: - + Modify objects Modifica oggetti - + Faces Facce - + Remove Rimuovi - + Add Aggiungi - + Facebinder elements Elementi di Lega facce (Facebinder) @@ -4130,12 +4130,12 @@ L'angolo finale sarà l'angolo base più questa quantità. This object is not supported. - This object is not supported. + Questo oggetto non è supportato. Only a single face can be extruded. - Only a single face can be extruded. + Solo una singola faccia può essere estrusa. @@ -4880,29 +4880,29 @@ L'angolo finale sarà l'angolo base più questa quantità. Offset finale troppo grande per la lunghezza del percorso meno Offset iniziale. Sostituito con zero. - + Length of tangent vector is zero. Copy not aligned. La lunghezza del vettore tangente è zero. Copia non allineata. - - + + Length of normal vector is zero. Using a default axis instead. La lunghezza del vettore normale è zero. Viene usato un asse predefinito al suo posto. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangente e vettori normali sono paralleli. Normale sostituita da un asse predefinito. - + Cannot calculate normal vector. Using the default normal instead. Impossibile calcolare il vettore normale. Viene usato il vettore normale predefinito. - + AlignMode {} is not implemented AlignMode {} non è implementata @@ -5243,24 +5243,24 @@ L'angolo finale sarà l'angolo base più questa quantità. Input errato: deve essere un numero compreso tra 0 e 100. - + Activate this layer Attiva questo livello - + Select layer contents Seleziona il contenuto del livello - - + + Merge layer duplicates Unisci i livelli duplicati - - + + Add new layer Aggiungi nuovo livello @@ -5537,7 +5537,7 @@ L'angolo finale sarà l'angolo base più questa quantità. Selezionare 3 vertici, una o più forme o un oggetto per definire un piano di lavoro - + Do you want to update the SVG pattern options of existing objects in all opened documents? Vuoi aggiornare le opzioni di campitura SVG @@ -5564,7 +5564,7 @@ degli oggetti esistenti in tutti i documenti aperti? proprietà di visualizzazione aggiornate - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5651,7 +5651,7 @@ Per abilitare FreeCAD a scaricare queste librerie, rispondere Sì. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ja.ts b/src/Mod/Draft/Resources/translations/Draft_ja.ts index 9267e9f635..44a95e7cbb 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ja.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ja.ts @@ -2997,8 +2997,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3225,8 +3225,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3320,32 +3320,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces - + Remove 削除 - + Add 追加 - + Facebinder elements Facebinder elements @@ -4871,29 +4871,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5234,24 +5234,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer このレイヤーをアクティブにする - + Select layer contents レイヤーの内容を選択 - - + + Merge layer duplicates レイヤーの重複をマージ - - + + Add new layer 新規レイヤーを作成 @@ -5528,7 +5528,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? 全てのドキュメントの既存のオブジェクトのSVGパターンオプションを更新しますか? @@ -5554,7 +5554,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5644,7 +5644,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ka.qm b/src/Mod/Draft/Resources/translations/Draft_ka.qm index 731cdbf720..2385459404 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ka.qm and b/src/Mod/Draft/Resources/translations/Draft_ka.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ka.ts b/src/Mod/Draft/Resources/translations/Draft_ka.ts index b28bc3ec3c..1de0283a03 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ka.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ka.ts @@ -3009,8 +3009,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3236,8 +3236,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off ავტოდაჯგუფების გამორთვა @@ -3331,32 +3331,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledგლობალური {} - + Autogroup: ავტოდაჯგუფება: - + Modify objects ობიექტების შეცვლა - + Faces ზედაპირები - + Remove წაშლა - + Add დამატება - + Facebinder elements Facebinder-ის ელემენტები @@ -4130,7 +4130,7 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + ეს ობიექტი მხარდაჭერილი არაა. @@ -4880,29 +4880,29 @@ The final angle will be the base angle plus this amount. საბოლოო წანაცვლება ძალიან დიდია ბილიკის სიგრძეს მინუს საწყისი წანაცვლება. გამოიყენება 0. - + Length of tangent vector is zero. Copy not aligned. მხები ვექტორის სიგრძე ნულის ტოლია. ასლი გასწორებული არ იქნება. - - + + Length of normal vector is zero. Using a default axis instead. ნორმალის ვექტორის სიგრძე ნულის ტოლია. მის მაგიერ ნაგულისხმევი ღერძი იქნება გამოყენებული. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. მხები და ნორმალი ვექტორები პარალელურია. ნორმალი ნაგულისხმევი ღერძით ჩანაცვლდება. - + Cannot calculate normal vector. Using the default normal instead. ნორმალის ვექტორის გამოთვლა შეუძლებელია. გამოყენებული იქნება ნაგულისხმევი ნორმალი. - + AlignMode {} is not implemented AlignMode {} ჯერ განუხორციელებელია @@ -5243,24 +5243,24 @@ The final angle will be the base angle plus this amount. არასწორი შეყვანა: უნდა იყოს რიცხვი 0-დან 100-მდე. - + Activate this layer ამ ფენის გააქტიურება - + Select layer contents ფენის შიგთავსის მონიშვნა - - + + Merge layer duplicates ფენის დუბლიკატების შერწყმა - - + + Add new layer ახალი ფენის დამატება @@ -5537,7 +5537,7 @@ The final angle will be the base angle plus this amount. სამუშაო სიბრტყის აღსაწერად აირჩიეთ 3 წვერო და ერთი ან მეტი მოხაზულობა ან ობიექტი - + Do you want to update the SVG pattern options of existing objects in all opened documents? გნებავთ ყველა ღია დოკუმენტში არსებული @@ -5564,7 +5564,7 @@ of existing objects in all opened documents? განახლებული ხედის თვისებები - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5653,7 +5653,7 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ko.qm b/src/Mod/Draft/Resources/translations/Draft_ko.qm index 529c940185..7c59e5b33c 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ko.qm and b/src/Mod/Draft/Resources/translations/Draft_ko.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ko.ts b/src/Mod/Draft/Resources/translations/Draft_ko.ts index 2753b5d4fe..e10b1a7981 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ko.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ko.ts @@ -192,7 +192,7 @@ Text color - 텍스트 색 + 문자 색 @@ -720,7 +720,7 @@ A Link array is more efficient when creating multiple copies, but it cannot be f Text to be made into ShapeString - Text to be made into ShapeString + 문자 형상으로 만들 문자 @@ -860,19 +860,19 @@ will be moved to the center of the view. Grid color - Grid color + 격자선 색상 The distance between grid lines - The distance between grid lines + 격자선 사이의 거리 The number of squares between major grid lines - The number of squares between major grid lines + 주 격자선 사이의 사각형 갯수 @@ -889,7 +889,7 @@ will be moved to the center of the view. The number of squares in the X and Y direction of the grid - The number of squares in the X and Y direction of the grid + 격자의 X 및 Y방향의 사각형 갯수 @@ -965,7 +965,7 @@ will be moved to the center of the view. Shape appearance - Shape appearance + 형상의 외관 @@ -985,12 +985,12 @@ will be moved to the center of the view. Shape transparency - Shape transparency + 형상 투명도 Shape shininess - Shape shininess + 형상의 광택 @@ -1074,12 +1074,12 @@ will be moved to the center of the view. Point color - Point color + 점 색상 Point size - Point size + 점 크기 @@ -1104,7 +1104,7 @@ will be moved to the center of the view. Text color - 텍스트 색 + 문자 색 @@ -1119,7 +1119,7 @@ will be moved to the center of the view. Annotation - Annotation + 주석 @@ -1526,7 +1526,7 @@ accidentally and modifying the entered value. Construction - Construction + 보조선 @@ -1694,7 +1694,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. Text color - 텍스트 색 + 문자 색 @@ -1724,7 +1724,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. The default line width - The default line width + 기본 선 두께 @@ -2323,8 +2323,8 @@ DXF R12 이후 템플릿 에서는 실패할 수도 있습니다. The number of squares between major grid lines. Major grid lines are thicker than minor grid lines. - The number of squares between major grid lines. -Major grid lines are thicker than minor grid lines. + 주 격자선 사이의 사각형 갯수입니다. +주 격자선은 보조 격자선보다 두껍습니다. @@ -2335,7 +2335,7 @@ Major grid lines are thicker than minor grid lines. The number of squares in the X and Y direction of the grid - The number of squares in the X and Y direction of the grid + 격자의 X 및 Y방향의 사각형 갯수 @@ -2391,7 +2391,7 @@ Use Draft ToggleGrid to change this for the active view. The distance between grid lines - The distance between grid lines + 격자선 사이의 거리 @@ -2476,7 +2476,7 @@ if they match the X, Y or Z axis of the global coordinate system Grid transparency - Grid transparency + 격자 투명도 @@ -2486,7 +2486,7 @@ if they match the X, Y or Z axis of the global coordinate system Grid color - Grid color + 격자선 색상 @@ -2762,7 +2762,7 @@ if they match the X, Y or Z axis of the global coordinate system Undo - Undo + 실행취소 @@ -2787,7 +2787,7 @@ if they match the X, Y or Z axis of the global coordinate system Snap - 스냅 + 포착 @@ -3009,8 +3009,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3158,7 +3158,7 @@ Not available if Draft preference option 'Use Part Primitives' is enabled Undo - Undo + 실행취소 @@ -3218,12 +3218,12 @@ Not available if Draft preference option 'Use Part Primitives' is enabled Create text - Create text + 문자 생성 Press this button to create the text object, or finish your text with two blank lines - Press this button to create the text object, or finish your text with two blank lines + 이 단추를 눌러 문자를 생성하거나, 빈 줄 두개로 문자를 마무리 하세요. @@ -3237,8 +3237,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3332,32 +3332,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Faces - + Remove 제거 - + Add 추가하기 - + Facebinder elements Facebinder elements @@ -3427,7 +3427,7 @@ or try saving to a lower DWG version. All Shapes must be coplanar - All Shapes must be coplanar + 모든 형상들은 동일 평면상에 있어야 합니다. @@ -3711,7 +3711,7 @@ or try saving to a lower DWG version. Create Text - Create Text + 문자 생성 @@ -3842,7 +3842,7 @@ or try saving to a lower DWG version. Toggle grid - Toggle grid + 격자 전환 @@ -4078,27 +4078,27 @@ The final angle will be the base angle plus this amount. Fillet radius - Fillet radius + 모깎기 반지름 Radius of fillet - Radius of fillet + 모깎기 반지름 Enter radius. - Enter radius. + 반지름 입력. Fillet cannot be created - Fillet cannot be created + 모깎기를 만들 수 없습니다 Create fillet - 생성: 모깍기(Fillet) + 모깍기 @@ -4174,7 +4174,7 @@ The final angle will be the base angle plus this amount. B-Spline - B-스플라인 + B-조절곡선 @@ -4883,29 +4883,29 @@ The final angle will be the base angle plus this amount. 경로 길이에 비해 종료 편차가 너무 큽니다. 대신 0을 사용하세요. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -4922,17 +4922,17 @@ The final angle will be the base angle plus this amount. Two objects are needed. - Two objects are needed. + 두 대상이 필요합니다. One object is not valid. - One object is not valid. + 한쪽이 유효하지 않습니다. Edges are not connected or radius is too large. - Edges are not connected or radius is too large. + 모서리가 연결되지 않았거나 반지름이 너무 큽니다. @@ -5246,24 +5246,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5540,7 +5540,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5567,7 +5567,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5657,7 +5657,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -5678,12 +5678,12 @@ from menu Tools -> Addon Manager Delete original objects - Delete original objects + 원본을 삭제합니다 Create chamfer - Create chamfer + 모따기 @@ -6215,7 +6215,7 @@ However, a single sketch with disconnected traces will be converted into several Snap angle - Snap angle + 포착 각도 @@ -6392,7 +6392,7 @@ CTRL to snap, SHIFT to constrain. Toggle grid - Toggle grid + 격자 전환 @@ -7362,7 +7362,7 @@ set True for fusion or False for compound Radius to use to fillet the corners - Radius to use to fillet the corners + 모퉁이를 모깎기하는데 사용할 반지름 @@ -7903,7 +7903,7 @@ This property is read-only, as the number depends on the points in 'Point Object Radius to use to fillet the corner. - Radius to use to fillet the corner. + 모퉁이를 모깎기하는데 사용할 반지름 @@ -8173,7 +8173,7 @@ the 'First Angle' and 'Last Angle' properties. Text color - 텍스트 색 + 문자 색 diff --git a/src/Mod/Draft/Resources/translations/Draft_lt.ts b/src/Mod/Draft/Resources/translations/Draft_lt.ts index 027744bc4f..09f91aa7ac 100644 --- a/src/Mod/Draft/Resources/translations/Draft_lt.ts +++ b/src/Mod/Draft/Resources/translations/Draft_lt.ts @@ -3010,8 +3010,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3238,8 +3238,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3333,32 +3333,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Sienos - + Remove Pašalinti - + Add Pridėti - + Facebinder elements Facebinder elements @@ -4884,29 +4884,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5247,24 +5247,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5541,7 +5541,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5568,7 +5568,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5658,7 +5658,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.qm b/src/Mod/Draft/Resources/translations/Draft_nl.qm index b7e91b84d2..af7a9f5f9b 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_nl.qm and b/src/Mod/Draft/Resources/translations/Draft_nl.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_nl.ts b/src/Mod/Draft/Resources/translations/Draft_nl.ts index 9771c4defa..bd957729f2 100644 --- a/src/Mod/Draft/Resources/translations/Draft_nl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_nl.ts @@ -3000,8 +3000,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3010,7 +3010,7 @@ if they match the X, Y or Z axis of the global coordinate system active command: - active command: + actief commando: @@ -3228,8 +3228,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3323,32 +3323,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobaal {} - + Autogroup: Autogroup: - + Modify objects Pas objecten aan - + Faces Vlakken - + Remove Verwijderen - + Add Toevoegen - + Facebinder elements Facebinder elements @@ -4122,7 +4122,7 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Dit object wordt niet ondersteund. @@ -4872,29 +4872,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5235,24 +5235,24 @@ The final angle will be the base angle plus this amount. Verkeerde invoer: moet een getal tussen 0 en 100 zijn. - + Activate this layer Activeer deze laag - + Select layer contents Select layer contents - - + + Merge layer duplicates Dubbele laag samenvoegen - - + + Add new layer Nieuwe laag toevoegen @@ -5529,7 +5529,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5556,7 +5556,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5646,7 +5646,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.qm b/src/Mod/Draft/Resources/translations/Draft_pl.qm index 3767ce68c7..6d8d9063fe 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_pl.qm and b/src/Mod/Draft/Resources/translations/Draft_pl.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_pl.ts b/src/Mod/Draft/Resources/translations/Draft_pl.ts index 171dde09d0..087fb1799b 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pl.ts @@ -518,8 +518,8 @@ Przy wartościach ujemnych kopie tworzone będą w kierunku przeciwnym. Odległość między elementami w kierunku Y. -Zazwyczaj tylko wartość Y jest konieczna; pozostałe dwie wartości mogą spowodować dodatkowe przesunięcie w swoich kierunkach. -Wartości ujemne będą skutkować kopiami wykonanymi w przeciwnym kierunku. +Zazwyczaj tylko wartość Y jest potrzebna; podanie pozostałych dwóch wartości spowoduje dodatkowe przesunięcie w danych kierunkach. +Przy wartościach ujemnych kopie tworzone będą w kierunku przeciwnym. @@ -3011,8 +3011,8 @@ będzie widoczny tylko podczas wykonywania poleceń - - + + None @@ -3239,8 +3239,8 @@ Opcja jest niedostępna, jeśli opcja preferencji Rysunku Roboczego "używaj ele - - + + Autogroup off Wyłącz automatyczne grupowanie @@ -3334,32 +3334,32 @@ Opcja jest niedostępna, jeśli opcja preferencji Rysunku Roboczego "używaj ele Globalnie {} - + Autogroup: Grupowanie automatyczne: - + Modify objects Modyfikuj obiekty - + Faces Ściany - + Remove Usuń - + Add Dodaj - + Facebinder elements Elementy łącznika ścian @@ -4137,12 +4137,12 @@ Kąt końcowy będzie równy kątowi podstawowemu plus ta wartość. This object is not supported. - This object is not supported. + Ten obiekt nie jest obsługiwany. Only a single face can be extruded. - Only a single face can be extruded. + Tylko jedna ściana może być wyciągana. @@ -4887,29 +4887,29 @@ Kąt końcowy będzie równy kątowi podstawowemu plus ta wartość.Zakończenie odsunięcia zbyt duże dla długości ścieżki pomniejszonej o rozpoczęcie odsunięcia. Zamiast tego użyj zera. - + Length of tangent vector is zero. Copy not aligned. Długość stycznej wektora wynosi zero. Kopia nie będzie ustawiona. - - + + Length of normal vector is zero. Using a default axis instead. Długość wektora normalnego wynosi zero. Używanie domyślnej osi zamiast niego. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Styczne i normalne wektory są równoległe. Normalne zastąpione przez oś domyślną. - + Cannot calculate normal vector. Using the default normal instead. Nie można obliczyć wektora normalnego. Używanie domyślnego normalnego zamiast niego. - + AlignMode {} is not implemented Tryb wyrównania {} nie jest zaimplementowany @@ -5251,24 +5251,24 @@ typ_etykiety musi być jednym z następujących: Błędne dane wejściowe: spodziewana liczba z zakresu od 0 do 100. - + Activate this layer Aktywuj wybraną warstwę - + Select layer contents Wybierz zawartość warstwy - - + + Merge layer duplicates Scal zduplikowane warstwy - - + + Add new layer Dodaj nową warstwę @@ -5545,7 +5545,7 @@ typ_etykiety musi być jednym z następujących: Wybierz trzy wierzchołki, jeden lub więcej kształtów lub obiekt, aby zdefiniować płaszczyznę roboczą - + Do you want to update the SVG pattern options of existing objects in all opened documents? Czy chcesz zaktualizować opcje wzorów SVG @@ -5572,7 +5572,7 @@ istniejących obiektów we wszystkich otwartych dokumentach? zaktualizowano właściwości widoku - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5661,7 +5661,7 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm b/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm index 53f56a56ff..e020f83661 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm and b/src/Mod/Draft/Resources/translations/Draft_pt-BR.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts b/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts index 124a4567dd..da6b23accc 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pt-BR.ts @@ -98,7 +98,7 @@ The font to use for texts and dimensions - A fonte para usar para textos e dimensões + A fonte a usar para textos e dimensões @@ -142,7 +142,7 @@ The size of the arrows or markers in system units - O tamanho das setas ou marcadores em unidades de sistema + O tamanho das setas ou marcadores em unidades do sistema @@ -187,7 +187,7 @@ The color of texts, dimension texts and label texts - A cor dos textos, textos de dimensão e de rótulos + A cor dos textos, textos de dimensão e de etiquetas @@ -2994,8 +2994,8 @@ correspondendo aos eixos X, Y ou Z do sistema de coordenadas global - - + + None @@ -3221,8 +3221,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Auto-agrupamento desligado @@ -3316,32 +3316,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Auto agrupar: - + Modify objects Modificar objetos - + Faces Faces - + Remove Remover - + Add Adicionar - + Facebinder elements Elementos da Película @@ -4115,12 +4115,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Este objeto não é suportado. Only a single face can be extruded. - Only a single face can be extruded. + Só uma única face pode ser extrudada. @@ -4865,29 +4865,29 @@ The final angle will be the base angle plus this amount. Deslocamento final muito largo para o comprimento do caminho. Usando zero em seu lugar. - + Length of tangent vector is zero. Copy not aligned. Comprimento do vetor tangente é zero. Cópia não alinhada. - - + + Length of normal vector is zero. Using a default axis instead. Comprimento do vetor normal é zero. Utilizando um eixo padrão em seu lugar. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Os vetores tangentes e normais são paralelos. O normal foi substituído por um eixo padrão. - + Cannot calculate normal vector. Using the default normal instead. Impossível calcular vetor normal. Utilizando o normal padrão em seu lugar. - + AlignMode {} is not implemented AlignMode {} não está implementado @@ -5228,24 +5228,24 @@ The final angle will be the base angle plus this amount. Entrada errada: deve ser um número entre 0 e 100. - + Activate this layer Ativar esta camada - + Select layer contents Selecionar conteúdo da camada - - + + Merge layer duplicates Mesclar camadas duplicadas - - + + Add new layer Adicionar nova camada @@ -5522,7 +5522,7 @@ The final angle will be the base angle plus this amount. Selecione 3 vértices, uma ou mais formas ou um objeto para definir um plano de trabalho - + Do you want to update the SVG pattern options of existing objects in all opened documents? Deseja atualizar as opções de padrão SVG @@ -5549,7 +5549,7 @@ dos objetos existentes em todos os documentos abertos? propriedades de visualização atualizadas - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5639,7 +5639,7 @@ Para permitir que o FreeCAD baixe estas bibliotecas, responda Sim. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm b/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm index 60bff84b1c..bf4cd42374 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm and b/src/Mod/Draft/Resources/translations/Draft_pt-PT.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts b/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts index fca541eee7..fd83e5eb30 100644 --- a/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts +++ b/src/Mod/Draft/Resources/translations/Draft_pt-PT.ts @@ -868,7 +868,7 @@ será movido para o centro da vista. The distance between grid lines - The distance between grid lines + A distância entre as linhas da grade @@ -2393,7 +2393,7 @@ Use Draft ToggleGrid to change this for the active view. The distance between grid lines - The distance between grid lines + A distância entre as linhas da grade @@ -3011,8 +3011,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3238,8 +3238,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autoagrupar desactivado @@ -3333,32 +3333,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Faces - + Remove Remover - + Add Adicionar - + Facebinder elements Facebinder elements @@ -4884,29 +4884,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. O comprimento do vetor tangente é zero. Copia não alinhada. - - + + Length of normal vector is zero. Using a default axis instead. Comprimento do vetor normal é zero. Usando um eixo predefinido em substituição. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Os vetores Tangentes e normais são paralelos. Normal substituído por um eixo predefinido. - + Cannot calculate normal vector. Using the default normal instead. Não é possível calcular o vetor normal. Usando o normal predefinido em substituição. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5247,24 +5247,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5541,7 +5541,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5568,7 +5568,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5658,7 +5658,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ro.ts b/src/Mod/Draft/Resources/translations/Draft_ro.ts index b347fd711c..7193eeb4aa 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ro.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ro.ts @@ -3010,8 +3010,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3238,8 +3238,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3333,32 +3333,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Fete - + Remove Elimină - + Add Adaugă - + Facebinder elements Facebinder elements @@ -4884,29 +4884,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5247,24 +5247,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5541,7 +5541,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5568,7 +5568,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5658,7 +5658,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_ru.qm b/src/Mod/Draft/Resources/translations/Draft_ru.qm index fae195b453..7a45205ac9 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_ru.qm and b/src/Mod/Draft/Resources/translations/Draft_ru.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_ru.ts b/src/Mod/Draft/Resources/translations/Draft_ru.ts index b0d4012743..d8048fdb07 100644 --- a/src/Mod/Draft/Resources/translations/Draft_ru.ts +++ b/src/Mod/Draft/Resources/translations/Draft_ru.ts @@ -3000,8 +3000,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3227,8 +3227,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Автогруппирование выключено @@ -3322,32 +3322,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledГлобальный {} - + Autogroup: Автогруппировка: - + Modify objects Изменить объекты - + Faces Грани - + Remove Удалить - + Add Добавить - + Facebinder elements Элементы связывания фасок (граней) @@ -4121,12 +4121,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Этот объект не поддерживается. Only a single face can be extruded. - Only a single face can be extruded. + Выдавливать можно только одну грань. @@ -4871,29 +4871,29 @@ The final angle will be the base angle plus this amount. Конечное смещение слишком велико для длины пути минус начало. Вместо этого используется ноль. - + Length of tangent vector is zero. Copy not aligned. Длина касательного вектора равна нулю. Копия не выровнена. - - + + Length of normal vector is zero. Using a default axis instead. Длина вектора нормали равна нулю. Вместо этого используйте ось по умолчанию. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Векторы касательной и нормали параллельны. Нормальная заменена осью по умолчанию. - + Cannot calculate normal vector. Using the default normal instead. Невозможно вычислить вектор нормали. Вместо этого используйте стандартную нормаль. - + AlignMode {} is not implemented AlignMode {} -выравнивание - не реализован @@ -5234,24 +5234,24 @@ The final angle will be the base angle plus this amount. Неверный ввод: должно быть число от 0 до 100. - + Activate this layer Активировать этот слой - + Select layer contents Выбрать содержимое слоя - - + + Merge layer duplicates Объединить дубликаты слоя - - + + Add new layer Добавить новый слой @@ -5528,7 +5528,7 @@ The final angle will be the base angle plus this amount. Выберите 3 вершины, одну или несколько фигур или объект, чтобы определить рабочую плоскость - + Do you want to update the SVG pattern options of existing objects in all opened documents? Хотите обновить параметры шаблона SVG? @@ -5555,7 +5555,7 @@ of existing objects in all opened documents? обновлены свойства представления - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5644,7 +5644,7 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_sl.ts b/src/Mod/Draft/Resources/translations/Draft_sl.ts index b675bc5c4f..fafb47a31c 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sl.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sl.ts @@ -3004,8 +3004,8 @@ občega koordinatnega sistema, obarvajo rdeče, zeleno ali modro - - + + None @@ -3232,8 +3232,8 @@ Ta možnost ni na voljo, če je v prednastavitvah izrisovanja možnost "Uporabi - - + + Autogroup off Samodejno združevanje izklopljeno @@ -3327,32 +3327,32 @@ Ta možnost ni na voljo, če je v prednastavitvah izrisovanja možnost "Uporabi Obče {} - + Autogroup: Samozdruževanje: - + Modify objects Preoblikuj predmete - + Faces Ploskve - + Remove Odstrani - + Add Dodaj - + Facebinder elements Predmeti vezalnika površij @@ -4878,29 +4878,29 @@ Končni kót bo seštevek izhodiščnega in tega kóta. Končni zamik prevelik glede na dolžino poti minus začetn zamik. Upoštevan bo zamik nič. - + Length of tangent vector is zero. Copy not aligned. Dolžina dotikalnega vekorja je nič. Dvojnik ni priravnan. - - + + Length of normal vector is zero. Using a default axis instead. Dolžina vektorja normale je nič. Namesto tega je uporabljena privzeta os. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Vektorja normale in dotikalnice sta vzporedna. Normala nadomeščena s privzeto osjo. - + Cannot calculate normal vector. Using the default normal instead. Vektorja normale ni mogoče izračunati. Namesto tega se uporablja privzeta normala. - + AlignMode {} is not implemented Način poravnave {} ni uveljavljen @@ -5241,24 +5241,24 @@ Končni kót bo seštevek izhodiščnega in tega kóta. Napačen vnos: mora biti število med 0 in 100. - + Activate this layer Omogoči to plast - + Select layer contents Izberite vsebino plasti - - + + Merge layer duplicates Združi podvojene plasti - - + + Add new layer Dodaj novo plast @@ -5535,7 +5535,7 @@ Končni kót bo seštevek izhodiščnega in tega kóta. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Ali želite posodobiti možnosti SVG vzorcev @@ -5562,7 +5562,7 @@ obstoječih predmetov v vseh odprtih dokumentih? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5652,7 +5652,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_sr-CS.qm b/src/Mod/Draft/Resources/translations/Draft_sr-CS.qm index 80bcfd6b9e..f8b04ff747 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_sr-CS.qm and b/src/Mod/Draft/Resources/translations/Draft_sr-CS.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_sr-CS.ts b/src/Mod/Draft/Resources/translations/Draft_sr-CS.ts index 78fb7904fa..c3f955705e 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sr-CS.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sr-CS.ts @@ -1106,7 +1106,7 @@ will be moved to the center of the view. Dimensions - Dimenzije + Kote @@ -1995,7 +1995,7 @@ Ova vrednost je maksimalna dužina segmenta. Python importer is used, otherwise the newer C++ is used. Note: C++ importer is faster, but is not as featureful yet - Koristi se Pithon importer, u suprotnom slučaju se koristi noviji C++. + Koristi se Python importer, u suprotnom slučaju se koristi noviji C++. Napomena: C++ importer je brži, ali još nije toliko funkcionalan @@ -2054,7 +2054,7 @@ iz Menadžera dodataka. If you want the non-named blocks (beginning with a *) to be imported too - Ako želi[ da se uvezu i neimenovani blokovi (koji počinju sa *) + Ako želiš da se uvezu i neimenovani blokovi (koji počinju sa *) @@ -2993,8 +2993,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3220,8 +3220,8 @@ Nije dostupno ako je omogućena opcija podešavanja 'Koristi Part primitive' - - + + Autogroup off Automatsko grupisanje isključeno @@ -3315,32 +3315,32 @@ Nije dostupno ako je omogućena opcija podešavanja 'Koristi Part primitive'Opšto {} - + Autogroup: Automatsko grupisanje: - + Modify objects Izmeni objekte - + Faces Stranice - + Remove Ukloni - + Add Dodaj - + Facebinder elements Elementi Povezivača stranica @@ -4114,12 +4114,12 @@ Krajnji ugao će biti početni ugao plus ovaj iznos. This object is not supported. - This object is not supported. + Ovaj objekat nije podržan. Only a single face can be extruded. - Only a single face can be extruded. + Izvlačiti se može samo jedna stranica. @@ -4864,29 +4864,29 @@ Krajnji ugao će biti početni ugao plus ovaj iznos. Krajnji odmak je prevelik za razliku između dužine putanje i početnog odmaka. Koristi nulu umesto. - + Length of tangent vector is zero. Copy not aligned. Dužina tangentnog vektora je nula. Kopija nije poravnata. - - + + Length of normal vector is zero. Using a default axis instead. Dužina vektora normale je nula. Umesto njega koristite podrazumevanu osu. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangentni i normalni vektori su paralelni. Normalni je zamenjen podrazumevanom osom. - + Cannot calculate normal vector. Using the default normal instead. Nije moguće izračunati normalni vektor. Umesto toga koristite podrazumevanu normalu. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5227,24 +5227,24 @@ Krajnji ugao će biti početni ugao plus ovaj iznos. Pogrešan unos: mora biti broj između 0 i 100. - + Activate this layer Aktiviraj ovaj sloj - + Select layer contents Izaberi sadržaj sloja - - + + Merge layer duplicates Objedini duplikate sloja - - + + Add new layer Dodaj novi sloj @@ -5521,7 +5521,7 @@ Krajnji ugao će biti početni ugao plus ovaj iznos. Da bi odredio radnu ravan izaberi 3 tačke, jedan ili više oblika ili objekat - + Do you want to update the SVG pattern options of existing objects in all opened documents? Želite li da ažurirate opcije SVG šablona @@ -5548,7 +5548,7 @@ postojećih objekata u svim otvorenim dokumentima? osvežena svojstva prikaza - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5638,7 +5638,7 @@ Da bi omogućio FreeCAD-u da preuzme ove biblioteke, odgovori sa Da. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -7868,7 +7868,7 @@ Ova osobina je samo za čitanje, pošto broj zavisi od tačaka u tačkastom obje The start point of this line. - Početna tačka ove linije. + Početna tačka duži. diff --git a/src/Mod/Draft/Resources/translations/Draft_sr.qm b/src/Mod/Draft/Resources/translations/Draft_sr.qm index d393930acc..99d1603ab7 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_sr.qm and b/src/Mod/Draft/Resources/translations/Draft_sr.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_sr.ts b/src/Mod/Draft/Resources/translations/Draft_sr.ts index 5cbd346ec0..a7de4bcb00 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sr.ts @@ -704,7 +704,7 @@ A Link array is more efficient when creating multiple copies, but it cannot be f Reset 3d point selection - Ресетуј избор 3D тачке + Ресетуј избор 3Д тачке @@ -1997,7 +1997,7 @@ This value is the maximum segment length. Python importer is used, otherwise the newer C++ is used. Note: C++ importer is faster, but is not as featureful yet - Користи се Питхон импортер, у супротном случају се користи новији C++. + Користи се Python импортер, у супротном случају се користи новији C++. Напомена: C++ импортер је бржи, али још није толико функционалан @@ -2995,8 +2995,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3222,8 +3222,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Аутоматско груписање искључено @@ -3317,32 +3317,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledОпштo {} - + Autogroup: Аутоматско груписање: - + Modify objects Измени објекте - + Faces Странице - + Remove Уклони - + Add Додај - + Facebinder elements Елементи Повезивача страница @@ -4116,12 +4116,12 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Овај објекат није подржан. Only a single face can be extruded. - Only a single face can be extruded. + Извлачити се може само једна страница. @@ -4866,29 +4866,29 @@ The final angle will be the base angle plus this amount. Крајњи одмак је превелик за разлику између дужине путање и почетног одмака. Користи нулу уместо. - + Length of tangent vector is zero. Copy not aligned. Дужина тангентног вектора је нула. Копија није поравната. - - + + Length of normal vector is zero. Using a default axis instead. Дужина вектора нормале је нула. Уместо њега користите подразумевану осу. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Тангентни и нормални вектори су паралелни. Нормални је замењен подразумеваном осом. - + Cannot calculate normal vector. Using the default normal instead. Није могуће израчунати нормални вектор. Уместо тога користите подразумевану нормалу. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5229,24 +5229,24 @@ The final angle will be the base angle plus this amount. Погрешан унос: мора бити број између 0 и 100. - + Activate this layer Активирај овај слој - + Select layer contents Изабери садржај слоја - - + + Merge layer duplicates Обједини дупликате слоја - - + + Add new layer Додај нови слој @@ -5523,7 +5523,7 @@ The final angle will be the base angle plus this amount. Да би одредио радну раван изабери 3 тачке, један или више облика или објекат - + Do you want to update the SVG pattern options of existing objects in all opened documents? Желите ли да ажурирате опције SVG шаблона @@ -5550,7 +5550,7 @@ of existing objects in all opened documents? освежена својства приказа - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5640,7 +5640,7 @@ https://github.com/yorikvanhavre/Draft-dxf-importer Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts b/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts index 90ea65580d..26fa8ee117 100644 --- a/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts +++ b/src/Mod/Draft/Resources/translations/Draft_sv-SE.ts @@ -2999,8 +2999,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3227,8 +3227,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3322,32 +3322,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Ytor - + Remove Ta bort - + Add Lägg till - + Facebinder elements Facebinder elements @@ -4873,29 +4873,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5236,24 +5236,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Aktivera detta lager - + Select layer contents Välj lagerinnehåll - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Lägg till nytt lager @@ -5530,7 +5530,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5557,7 +5557,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5647,7 +5647,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_tr.ts b/src/Mod/Draft/Resources/translations/Draft_tr.ts index dc3d18b89c..90d1f1c455 100644 --- a/src/Mod/Draft/Resources/translations/Draft_tr.ts +++ b/src/Mod/Draft/Resources/translations/Draft_tr.ts @@ -3008,8 +3008,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3236,8 +3236,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3331,32 +3331,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Yüzler - + Remove Kaldır - + Add Ekle - + Facebinder elements Facebinder elements @@ -4882,29 +4882,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5245,24 +5245,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5539,7 +5539,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5566,7 +5566,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5656,7 +5656,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_uk.qm b/src/Mod/Draft/Resources/translations/Draft_uk.qm index 355cabdcae..b52b1f73a5 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_uk.qm and b/src/Mod/Draft/Resources/translations/Draft_uk.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_uk.ts b/src/Mod/Draft/Resources/translations/Draft_uk.ts index 6d54c66826..0dc3d90595 100644 --- a/src/Mod/Draft/Resources/translations/Draft_uk.ts +++ b/src/Mod/Draft/Resources/translations/Draft_uk.ts @@ -3012,8 +3012,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3240,8 +3240,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Автогрупування вимкнено @@ -3335,32 +3335,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledГлобально {} - + Autogroup: Автогрупування: - + Modify objects Змінити об'єкти - + Faces Грані - + Remove Видалити - + Add Додати - + Facebinder elements Елементи сполучених поверхонь @@ -4136,7 +4136,7 @@ The final angle will be the base angle plus this amount. This object is not supported. - This object is not supported. + Цей об'єкт не підтримується. @@ -4886,29 +4886,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Не вдається обчислити вектор нормалі. Замість цього використовується типова нормаль. - + AlignMode {} is not implemented AlignMode {} не реалізовано @@ -5249,24 +5249,24 @@ The final angle will be the base angle plus this amount. Неправильний вхід: має бути число від 0 до 100. - + Activate this layer Активуйте цей шар - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Додати новий шар @@ -5543,7 +5543,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Бажаєте оновити параметри шаблону SVG @@ -5570,7 +5570,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5660,7 +5660,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_val-ES.ts b/src/Mod/Draft/Resources/translations/Draft_val-ES.ts index 91eb96eba7..30922ec052 100644 --- a/src/Mod/Draft/Resources/translations/Draft_val-ES.ts +++ b/src/Mod/Draft/Resources/translations/Draft_val-ES.ts @@ -2997,8 +2997,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3225,8 +3225,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off Autogroup off @@ -3320,32 +3320,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabledGlobal {} - + Autogroup: Autogroup: - + Modify objects Modify objects - + Faces Cares - + Remove Elimina - + Add Afegir - + Facebinder elements Facebinder elements @@ -4871,29 +4871,29 @@ The final angle will be the base angle plus this amount. End Offset too large for path length minus Start Offset. Using zero instead. - + Length of tangent vector is zero. Copy not aligned. Length of tangent vector is zero. Copy not aligned. - - + + Length of normal vector is zero. Using a default axis instead. Length of normal vector is zero. Using a default axis instead. - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. Tangent and normal vectors are parallel. Normal replaced by a default axis. - + Cannot calculate normal vector. Using the default normal instead. Cannot calculate normal vector. Using the default normal instead. - + AlignMode {} is not implemented AlignMode {} is not implemented @@ -5234,24 +5234,24 @@ The final angle will be the base angle plus this amount. Wrong input: must be a number between 0 and 100. - + Activate this layer Activate this layer - + Select layer contents Select layer contents - - + + Merge layer duplicates Merge layer duplicates - - + + Add new layer Add new layer @@ -5528,7 +5528,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5555,7 +5555,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5645,7 +5645,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts index 49a7948bc8..5d09860adb 100644 --- a/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts +++ b/src/Mod/Draft/Resources/translations/Draft_zh-CN.ts @@ -2988,8 +2988,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3216,8 +3216,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off 关闭自动分组 @@ -3311,32 +3311,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabled全局 {} - + Autogroup: 自动组: - + Modify objects Modify objects - + Faces - + Remove 删除 - + Add 添加 - + Facebinder elements Facebinder 面连接器构件 @@ -4862,29 +4862,29 @@ The final angle will be the base angle plus this amount. 結束偏移超出路徑長度減去開始偏移的範圍。將使用零值代替。 - + Length of tangent vector is zero. Copy not aligned. 切向量长度为零。复制未对齐。 - - + + Length of normal vector is zero. Using a default axis instead. 法線向量的長度為零。將使用預設軸代替。 - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. 切線和法向量平行。法線被替換為預設軸。 - + Cannot calculate normal vector. Using the default normal instead. 無法計算法向量。將使用預設法線。 - + AlignMode {} is not implemented 对齐模式 {} 尚未实现 @@ -5225,24 +5225,24 @@ The final angle will be the base angle plus this amount. 输入错误:必须是0到100之间的数字。 - + Activate this layer 激活此图层 - + Select layer contents 选择图层内容 - - + + Merge layer duplicates 合并图层重复 - - + + Add new layer 添加新图层 @@ -5519,7 +5519,7 @@ The final angle will be the base angle plus this amount. 选择三个顶点,一个或多个形状或对象来定义一个工作面 - + Do you want to update the SVG pattern options of existing objects in all opened documents? 您想要更新所有打开文档中存在的对象的 SVG 模式选项 @@ -5546,7 +5546,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5636,7 +5636,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm b/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm index f62509a355..10a27568cb 100644 Binary files a/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm and b/src/Mod/Draft/Resources/translations/Draft_zh-TW.qm differ diff --git a/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts index 1272a0fb64..74b19ee6b5 100644 --- a/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts +++ b/src/Mod/Draft/Resources/translations/Draft_zh-TW.ts @@ -877,7 +877,7 @@ will be moved to the center of the view. squares - squares + 正方形 @@ -969,12 +969,12 @@ will be moved to the center of the view. Emissive shape color - Emissive shape color + 自發光形狀顏色 Specular shape color - Specular shape color + 鏡面反射形狀顏色 @@ -984,7 +984,7 @@ will be moved to the center of the view. Shape shininess - Shape shininess + 形狀光澤度 @@ -1225,12 +1225,12 @@ Annotation scale widget. If the scale is 1:100 the multiplier is 100. Dim line overshoot - Dim line overshoot + 標註尺寸線超越量 Ext line length - Ext line length + 延伸線長度 @@ -1246,7 +1246,7 @@ for linear dimensions. Ext line overshoot - Ext line overshoot + 延伸線超越量 @@ -1647,7 +1647,7 @@ pattern definitions to be added to the standard patterns Font name or family - Font name or family + 字體名稱或家族 @@ -1769,7 +1769,7 @@ in the Annotation scale widget. If the scale is 1:100 the multiplier is 100. The default arrow size - The default arrow size + 預設箭頭尺寸 @@ -2320,7 +2320,7 @@ Major grid lines are thicker than minor grid lines. squares - squares + 正方形 @@ -2999,8 +2999,8 @@ if they match the X, Y or Z axis of the global coordinate system - - + + None @@ -3226,8 +3226,8 @@ Not available if Draft preference option 'Use Part Primitives' is enabled - - + + Autogroup off 關閉自動群組 @@ -3321,32 +3321,32 @@ Not available if Draft preference option 'Use Part Primitives' is enabled全域 {} - + Autogroup: 自動群組: - + Modify objects Modify objects - + Faces - + Remove 移除 - + Add 新增 - + Facebinder elements 面連接器元件 @@ -4870,29 +4870,29 @@ The final angle will be the base angle plus this amount. 結束偏移超出路徑長度減去開始偏移的範圍。將使用零值代替。 - + Length of tangent vector is zero. Copy not aligned. 切線向量的長度為零。副本未對齊。 - - + + Length of normal vector is zero. Using a default axis instead. 法線向量的長度為零。將使用預設軸代替。 - - + + Tangent and normal vectors are parallel. Normal replaced by a default axis. 切線和法向量平行。法線被替換為預設軸。 - + Cannot calculate normal vector. Using the default normal instead. 無法計算法向量。將使用預設法線。 - + AlignMode {} is not implemented 對齊模式 {} 並未實施 @@ -5233,24 +5233,24 @@ The final angle will be the base angle plus this amount. 錯誤輸入: 必須是在 0 到 100 間的數字。 - + Activate this layer 啟動圖層 - + Select layer contents 選擇圖層內容 - - + + Merge layer duplicates 合併重複圖層 - - + + Add new layer 新增圖層 @@ -5527,7 +5527,7 @@ The final angle will be the base angle plus this amount. Select 3 vertices, one or more shapes or an object to define a working plane - + Do you want to update the SVG pattern options of existing objects in all opened documents? Do you want to update the SVG pattern options @@ -5554,7 +5554,7 @@ of existing objects in all opened documents? updated view properties - + The DXF import/export libraries needed by FreeCAD to handle the DXF format were not found on this system. Please either allow FreeCAD to download these libraries: @@ -5644,7 +5644,7 @@ To enabled FreeCAD to download these libraries, answer Yes. Draft - + Download of dxf libraries failed. Please install the dxf Library addon manually from menu Tools -> Addon Manager @@ -5998,7 +5998,7 @@ A 'Link array' is more efficient when handling many copies but the 'Fuse' option Label - Label + 標籤 @@ -7780,7 +7780,7 @@ This property is read-only, as the number depends on the points in 'Point Object Continuity - Continuity + 連續性 diff --git a/src/Mod/Draft/draftfunctions/svg.py b/src/Mod/Draft/draftfunctions/svg.py index 11896b34ae..93571f71a1 100644 --- a/src/Mod/Draft/draftfunctions/svg.py +++ b/src/Mod/Draft/draftfunctions/svg.py @@ -904,14 +904,26 @@ def get_svg(obj, return svg +# Similar function as in view_layer.py +def _get_layer(obj): + """Get the layer the object belongs to.""" + finds = obj.Document.findObjects(Name="LayerContainer") + if not finds: + return None + for layer in finds[0].Group: + if utils.get_type(layer) == "Layer" and obj in layer.Group: + return layer + return None + + def get_print_color(obj): - """returns the print color of the parent layer, if available""" - for parent in obj.InListRecursive: - if (hasattr(parent,"ViewObject") - and hasattr(parent.ViewObject,"UsePrintColor") - and parent.ViewObject.UsePrintColor): - if hasattr(parent.ViewObject,"LinePrintColor"): - return parent.ViewObject.LinePrintColor + """Return the print color of the parent layer, if available.""" + # Layers are not in the Inlist of obj because a layer's Group is App::PropertyLinkListHidden: + layer = _get_layer(obj) + if layer is None: + return None + if layer.ViewObject.UsePrintColor: + return layer.ViewObject.LinePrintColor return None diff --git a/src/Mod/Draft/draftguitools/gui_trackers.py b/src/Mod/Draft/draftguitools/gui_trackers.py index 4fe4d406c1..6da39c00be 100644 --- a/src/Mod/Draft/draftguitools/gui_trackers.py +++ b/src/Mod/Draft/draftguitools/gui_trackers.py @@ -1431,10 +1431,8 @@ class archDimTracker(Tracker): p2node = coin.SbVec3f([p2.x, p2.y, p2.z]) self.dimnode.pnts.setValues([p1node, p2node]) self.dimnode.lineWidth = 1 - color = utils.get_rgba_tuple(params.get_param("snapcolor"))[:3] - self.dimnode.textColor.setValue(coin.SbVec3f(color)) - self.dimnode.size = 11 - self.size_pixel = self.dimnode.size.getValue()*96/72 + self.setColor() + self.setSize() self.offset = 0.5 self.mode = mode self.matrix = self.transform.matrix @@ -1449,6 +1447,19 @@ class archDimTracker(Tracker): self.setString() super().__init__(children=[self.transform, self.dimnode], name="archDimTracker") + def setColor(self, color=None): + """Set the color.""" + if color is None: + self.color = utils.get_rgba_tuple(params.get_param("snapcolor"))[:3] + else: + self.color.rgb = color + self.dimnode.textColor.setValue(coin.SbVec3f(self.color)) + + def setSize(self): + """Set the text size.""" + self.dimnode.size = params.get_param_view("MarkerSize") * 2 + self.size_pixel = self.dimnode.size.getValue() * 96 / 72 + def setString(self, text=None): """Set the dim string to the given value or auto value.""" plane = self._get_wp() diff --git a/src/Mod/Draft/draftobjects/shapestring.py b/src/Mod/Draft/draftobjects/shapestring.py index 3a13b6343a..05c5a564e7 100644 --- a/src/Mod/Draft/draftobjects/shapestring.py +++ b/src/Mod/Draft/draftobjects/shapestring.py @@ -127,8 +127,7 @@ class ShapeString(DraftObject): return if obj.String and obj.FontFile: - if obj.Placement: - plm = obj.Placement + plm = obj.Placement fill = obj.MakeFace if fill is True: @@ -159,6 +158,10 @@ class ShapeString(DraftObject): if fill and obj.Fuse: ss_shape = shapes[0].fuse(shapes[1:]) ss_shape = faces.concatenate(ss_shape) + # Concatenate returns a Face or a Compound. We always + # need a Compound as we use ss_shape.SubShapes later. + if ss_shape.ShapeType == "Face": + ss_shape = Part.Compound([ss_shape]) else: ss_shape = Part.Compound(shapes) cap_char = Part.makeWireString("M", obj.FontFile, obj.Size, obj.Tracking)[0] @@ -186,8 +189,7 @@ class ShapeString(DraftObject): else: App.Console.PrintWarning(translate("draft", "ShapeString: string has no wires") + "\n") - if plm: - obj.Placement = plm + obj.Placement = plm obj.positionBySupport() self.props_changed_clear() diff --git a/src/Mod/Draft/draftutils/params.py b/src/Mod/Draft/draftutils/params.py index cd98573d8f..9df76f5872 100644 --- a/src/Mod/Draft/draftutils/params.py +++ b/src/Mod/Draft/draftutils/params.py @@ -76,7 +76,9 @@ class ParamObserverView: if entry in ("DefaultShapeColor", "DefaultShapeLineColor", "DefaultShapeLineWidth"): _param_observer_callback_tray() return - + if entry == "MarkerSize": + _param_observer_callback_snaptextsize() + return def _param_observer_callback_tray(): if not hasattr(Gui, "draftToolBar"): @@ -144,8 +146,18 @@ def _param_observer_callback_snapstyle(): def _param_observer_callback_snapcolor(): if hasattr(Gui, "Snapper"): - for snap_track in Gui.Snapper.trackers[2]: - snap_track.setColor() + tracker_list = [2, 5, 6] + for each_tracker in tracker_list: + for snap_track in Gui.Snapper.trackers[each_tracker]: + snap_track.setColor() + + +def _param_observer_callback_snaptextsize(): + if hasattr(Gui, "Snapper"): + tracker_list = [5, 6] + for each_tracker in tracker_list: + for snap_track in Gui.Snapper.trackers[each_tracker]: + snap_track.setSize() def _param_observer_callback_svg_pattern(): diff --git a/src/Mod/Draft/draftviewproviders/view_layer.py b/src/Mod/Draft/draftviewproviders/view_layer.py index 04c0199921..a4d676ebb9 100644 --- a/src/Mod/Draft/draftviewproviders/view_layer.py +++ b/src/Mod/Draft/draftviewproviders/view_layer.py @@ -228,16 +228,15 @@ class ViewProviderLayer: # Return if the property does not exist if not hasattr(vobj, prop): return + # If the override properties are not set return without change + if prop == "LineColor" and not vobj.OverrideLineColorChildren: + return + elif prop == "ShapeAppearance" and not vobj.OverrideShapeAppearanceChildren: + return for target_obj in obj.Group: target_vobj = target_obj.ViewObject - # If the override properties are not set return without change - if prop == "LineColor" and not vobj.OverrideLineColorChildren: - return - elif prop == "ShapeAppearance" and not vobj.OverrideShapeAppearanceChildren: - return - # This checks that the property exists in the target object, # and then sets the target property accordingly if hasattr(target_vobj, prop): diff --git a/src/Mod/Draft/importDXF.py b/src/Mod/Draft/importDXF.py index 2222f20e1d..9868aa1077 100644 --- a/src/Mod/Draft/importDXF.py +++ b/src/Mod/Draft/importDXF.py @@ -1927,11 +1927,24 @@ def addObject(shape, name="Shape", layer=None): if layer: lay = locateLayer(layer) # For old style layers, which are just groups - if hasattr(lay, "addObject"): - lay.addObject(newob) + if hasattr(lay, "Group"): + pass # For new Draft Layers - elif hasattr(lay, "Proxy") and hasattr(lay.Proxy, "addObject"): - lay.Proxy.addObject(lay, newob) + elif hasattr(lay, "Proxy") and hasattr(lay.Proxy, "Group"): + lay = lay.Proxy + else: + lay = None + + if lay != None: + if lay not in layerObjects: + l = [] + layerObjects[lay] = l + else: + l = layerObjects[lay] + l.append(newob) + + + formatObject(newob) return newob @@ -2227,6 +2240,8 @@ def processdxf(document, filename, getShapes=False, reComputeFlag=True): badobjects = [] global layerBlocks layerBlocks = {} + global layerObjects + layerObjects = {} sketch = None shapes = [] @@ -2724,6 +2739,10 @@ def processdxf(document, filename, getShapes=False, reComputeFlag=True): formatObject(newob, insert) num += 1 + # Move layer contents to layers + for (l, contents) in layerObjects.items(): + l.Group += contents + # Make blocks, if any if dxfMakeBlocks: print("creating layerblocks...") @@ -2813,10 +2832,11 @@ def open(filename): FreeCAD.setActiveDocument(doc.Name) try: import ImportGui - ImportGui.readDXF(filename) except Exception: import Import Import.readDXF(filename) + else: + ImportGui.readDXF(filename) Draft.convert_draft_texts() # convert annotations to Draft texts doc.recompute() @@ -2855,10 +2875,11 @@ def insert(filename, docname): else: try: import ImportGui - ImportGui.readDXF(filename) except Exception: import Import Import.readDXF(filename) + else: + ImportGui.readDXF(filename) Draft.convert_draft_texts() # convert annotations to Draft texts doc.recompute() diff --git a/src/Mod/Fem/App/FemConstraint.cpp b/src/Mod/Fem/App/FemConstraint.cpp index d0b1a8b366..19e07ca102 100644 --- a/src/Mod/Fem/App/FemConstraint.cpp +++ b/src/Mod/Fem/App/FemConstraint.cpp @@ -436,7 +436,11 @@ bool Constraint::getPoints(std::vector& points, BRepGProp::LinearProperties(compCurve.Wire(), linProps); double outWireLength = linProps.Mass(); int stepWire = stepsu + stepsv; - ShapeAnalysis_Surface surfAnalysis(surface.Surface().Surface()); + // apply subshape transformation to the geometry + gp_Trsf faceTrans = face.Location().Transformation(); + Handle(Geom_Geometry) transGeo = + surface.Surface().Surface()->Transformed(faceTrans); + ShapeAnalysis_Surface surfAnalysis(Handle(Geom_Surface)::DownCast(transGeo)); for (int i = 0; i < stepWire; ++i) { gp_Pnt p = compCurve.Value(outWireLength * i / stepWire); gp_Pnt2d pUV = surfAnalysis.ValueOfUV(p, Precision::Confusion()); diff --git a/src/Mod/Fem/App/FemMeshPy.xml b/src/Mod/Fem/App/FemMeshPy.xml index c9710a5eb7..e3f11ca5e8 100755 --- a/src/Mod/Fem/App/FemMeshPy.xml +++ b/src/Mod/Fem/App/FemMeshPy.xml @@ -44,11 +44,21 @@ Add an edge by setting two node indices.
+ + + Add list of edges by list of node indices and list of nodes per edge. + + Add a face by setting three node indices. + + + Add list of faces by list of node indices and list of nodes per face. + + Add a quad by setting four node indices. @@ -59,6 +69,11 @@ Add a volume by setting an arbitrary number of node indices. + + + Add list of volumes by list of node indices and list of nodes per volume. + + Read in a various FEM mesh file formats. diff --git a/src/Mod/Fem/App/FemMeshPyImp.cpp b/src/Mod/Fem/App/FemMeshPyImp.cpp index 146ac4f41c..e4e5e8d354 100644 --- a/src/Mod/Fem/App/FemMeshPyImp.cpp +++ b/src/Mod/Fem/App/FemMeshPyImp.cpp @@ -809,6 +809,275 @@ PyObject* FemMeshPy::addVolume(PyObject* args) return nullptr; } +PyObject* FemMeshPy::addEdgeList(PyObject* args) +{ + PyObject* nodesObj = nullptr; + PyObject* npObj = nullptr; + ; + if (!PyArg_ParseTuple(args, "O!O!", &PyList_Type, &nodesObj, &PyList_Type, &npObj)) { + return nullptr; + } + + Py::List nodesList(nodesObj); + Py::List npList(npObj); + SMESHDS_Mesh* meshDS = getFemMeshPtr()->getSMesh()->GetMeshDS(); + + std::vector nodes; + for (Py::List::iterator it = nodesList.begin(); it != nodesList.end(); ++it) { + Py::Long n(*it); + const SMDS_MeshNode* node = meshDS->FindNode(static_cast(n)); + if (!node) { + throw std::runtime_error("Failed to get node of the given indices"); + } + nodes.push_back(node); + } + + std::vector::iterator nodeIt = nodes.begin(); + SMDS_MeshEdge* edge = nullptr; + Py::List result; + int np = 0; + for (Py::List::iterator it = npList.begin(); it != npList.end(); ++it, nodeIt += np) { + np = Py::Long(*it); + std::vector nodesElem(nodeIt, nodeIt + np); + switch (np) { + case 2: + edge = meshDS->AddEdge(nodesElem[0], nodesElem[1]); + break; + case 3: + edge = meshDS->AddEdge(nodesElem[0], nodesElem[1], nodesElem[2]); + break; + default: + PyErr_SetString(PyExc_TypeError, "Unknown node count, [2|3] are allowed"); + return nullptr; + } + if (edge) { + result.append(Py::Long(edge->GetID())); + } + else { + PyErr_SetString(PyExc_TypeError, "Failed to add edge"); + return nullptr; + } + } + + return Py::new_reference_to(result); +} + + +PyObject* FemMeshPy::addFaceList(PyObject* args) +{ + PyObject* nodesObj = nullptr; + PyObject* npObj = nullptr; + ; + if (!PyArg_ParseTuple(args, "O!O!", &PyList_Type, &nodesObj, &PyList_Type, &npObj)) { + return nullptr; + } + + Py::List nodesList(nodesObj); + Py::List npList(npObj); + SMESHDS_Mesh* meshDS = getFemMeshPtr()->getSMesh()->GetMeshDS(); + + std::vector nodes; + for (Py::List::iterator it = nodesList.begin(); it != nodesList.end(); ++it) { + Py::Long n(*it); + const SMDS_MeshNode* node = meshDS->FindNode(static_cast(n)); + if (!node) { + throw std::runtime_error("Failed to get node of the given indices"); + } + nodes.push_back(node); + } + + std::vector::iterator nodeIt = nodes.begin(); + SMDS_MeshFace* face = nullptr; + Py::List result; + int np = 0; + for (Py::List::iterator it = npList.begin(); it != npList.end(); ++it, nodeIt += np) { + np = Py::Long(*it); + std::vector nodesElem(nodeIt, nodeIt + np); + switch (np) { + case 3: + face = meshDS->AddFace(nodesElem[0], nodesElem[1], nodesElem[2]); + break; + case 4: + face = meshDS->AddFace(nodesElem[0], nodesElem[1], nodesElem[2], nodesElem[3]); + break; + case 6: + face = meshDS->AddFace(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5]); + break; + case 8: + face = meshDS->AddFace(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7]); + break; + default: + PyErr_SetString(PyExc_TypeError, "Unknown node count, [3|4|6|8] are allowed"); + return nullptr; + } + if (face) { + result.append(Py::Long(face->GetID())); + } + else { + PyErr_SetString(PyExc_TypeError, "Failed to add face"); + return nullptr; + } + } + + return Py::new_reference_to(result); +} + + +PyObject* FemMeshPy::addVolumeList(PyObject* args) +{ + PyObject* nodesObj = nullptr; + PyObject* npObj = nullptr; + ; + if (!PyArg_ParseTuple(args, "O!O!", &PyList_Type, &nodesObj, &PyList_Type, &npObj)) { + return nullptr; + } + + Py::List nodesList(nodesObj); + Py::List npList(npObj); + SMESHDS_Mesh* meshDS = getFemMeshPtr()->getSMesh()->GetMeshDS(); + + std::vector nodes; + for (Py::List::iterator it = nodesList.begin(); it != nodesList.end(); ++it) { + Py::Long n(*it); + const SMDS_MeshNode* node = meshDS->FindNode(static_cast(n)); + if (!node) { + throw std::runtime_error("Failed to get node of the given indices"); + } + nodes.push_back(node); + } + + std::vector::iterator nodeIt = nodes.begin(); + SMDS_MeshVolume* vol = nullptr; + Py::List result; + int np = 0; + for (Py::List::iterator it = npList.begin(); it != npList.end(); ++it, nodeIt += np) { + np = Py::Long(*it); + std::vector nodesElem(nodeIt, nodeIt + np); + switch (np) { + case 4: + vol = meshDS->AddVolume(nodesElem[0], nodesElem[1], nodesElem[2], nodesElem[3]); + break; + case 5: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4]); + break; + case 6: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5]); + break; + case 8: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7]); + break; + case 10: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7], + nodesElem[8], + nodesElem[9]); + break; + case 13: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7], + nodesElem[8], + nodesElem[9], + nodesElem[10], + nodesElem[11], + nodesElem[12]); + break; + case 15: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7], + nodesElem[8], + nodesElem[9], + nodesElem[10], + nodesElem[11], + nodesElem[12], + nodesElem[13], + nodesElem[14]); + break; + case 20: + vol = meshDS->AddVolume(nodesElem[0], + nodesElem[1], + nodesElem[2], + nodesElem[3], + nodesElem[4], + nodesElem[5], + nodesElem[6], + nodesElem[7], + nodesElem[8], + nodesElem[9], + nodesElem[10], + nodesElem[11], + nodesElem[12], + nodesElem[13], + nodesElem[14], + nodesElem[15], + nodesElem[16], + nodesElem[17], + nodesElem[18], + nodesElem[19]); + break; + default: + PyErr_SetString(PyExc_TypeError, + "Unknown node count, [4|5|6|8|10|13|15|20] are allowed"); + return nullptr; + } + if (vol) { + result.append(Py::Long(vol->GetID())); + } + else { + PyErr_SetString(PyExc_TypeError, "Failed to add face"); + return nullptr; + } + } + + return Py::new_reference_to(result); +} + + PyObject* FemMeshPy::copy(PyObject* args) { if (!PyArg_ParseTuple(args, "")) { diff --git a/src/Mod/Fem/CMakeLists.txt b/src/Mod/Fem/CMakeLists.txt index b793c570c7..da61e3e816 100755 --- a/src/Mod/Fem/CMakeLists.txt +++ b/src/Mod/Fem/CMakeLists.txt @@ -165,6 +165,7 @@ SET(FemMesh_SRCS femmesh/gmshtools.py femmesh/meshsetsgetter.py femmesh/meshtools.py + femmesh/netgentools.py ) SET(FemObjects_SRCS @@ -194,6 +195,7 @@ SET(FemObjects_SRCS femobjects/mesh_boundarylayer.py femobjects/mesh_gmsh.py femobjects/mesh_group.py + femobjects/mesh_netgen.py femobjects/mesh_region.py femobjects/mesh_result.py femobjects/result_mechanical.py @@ -571,6 +573,7 @@ SET(FemGuiObjects_SRCS SET(FemGuiTaskPanels_SRCS femtaskpanels/__init__.py femtaskpanels/base_femtaskpanel.py + femtaskpanels/base_femmeshtaskpanel.py femtaskpanels/task_constraint_bodyheatsource.py femtaskpanels/task_constraint_centrif.py femtaskpanels/task_constraint_currentdensity.py @@ -591,6 +594,7 @@ SET(FemGuiTaskPanels_SRCS femtaskpanels/task_mesh_gmsh.py femtaskpanels/task_mesh_group.py femtaskpanels/task_mesh_region.py + femtaskpanels/task_mesh_netgen.py femtaskpanels/task_result_mechanical.py femtaskpanels/task_solver_ccxtools.py ) @@ -635,6 +639,7 @@ SET(FemGuiViewProvider_SRCS femviewprovider/view_mesh_boundarylayer.py femviewprovider/view_mesh_gmsh.py femviewprovider/view_mesh_group.py + femviewprovider/view_mesh_netgen.py femviewprovider/view_mesh_region.py femviewprovider/view_mesh_result.py femviewprovider/view_result_mechanical.py diff --git a/src/Mod/Fem/Gui/CMakeLists.txt b/src/Mod/Fem/Gui/CMakeLists.txt index 302f201b33..ec05485b75 100755 --- a/src/Mod/Fem/Gui/CMakeLists.txt +++ b/src/Mod/Fem/Gui/CMakeLists.txt @@ -415,6 +415,7 @@ SET(FemGuiPythonUI_SRCS Resources/ui/MeshGmsh.ui Resources/ui/MeshGroup.ui Resources/ui/MeshGroupXDMFExport.ui + Resources/ui/MeshNetgen.ui Resources/ui/MeshRegion.ui Resources/ui/ResultHints.ui Resources/ui/ResultShow.ui diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem.ts b/src/Mod/Fem/Gui/Resources/translations/Fem.ts index 4d5a131f68..2946ff9af5 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem.ts @@ -1656,13 +1656,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error - + You must specify at least one reference @@ -3431,33 +3431,27 @@ Note: for 2D only setting for x is possible, - - - 0 mm - - - - + Min element size (0.0 = Auto): - + Element order: - + Gmsh - + Time: - + Gmsh version @@ -5610,12 +5604,12 @@ used for the Elmer solver FEM_ResultShow - + Show result - + Shows and visualizes selected result data @@ -5623,12 +5617,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results - + Purges all results from active analysis @@ -5636,12 +5630,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools @@ -5649,12 +5643,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control - + Changes solver attributes and runs the calculations for the selected solver @@ -5662,12 +5656,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer - + Creates a FEM solver Elmer @@ -5675,12 +5669,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran - + Creates a FEM solver Mystran @@ -5688,12 +5682,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations - + Runs the calculations for the selected solver @@ -5701,12 +5695,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 - + Creates a FEM solver Z88 @@ -6147,12 +6141,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) @@ -6303,12 +6297,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement - + Creates a FEM mesh refinement @@ -6582,4 +6576,67 @@ Please select a result type first. + + NetgenMesh + + + FEM Mesh by Netgen + + + + + Mesh Parameters + + + + + Fineness: + + + + + Maximal Size: + + + + + Minimal Size: + + + + + Second Order + + + + + Growth Rate: + + + + + Curvature Safety: + + + + + Segments Per Edge: + + + + + Netgen + + + + + Time: + + + + + Netgen version + + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_be.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_be.ts index 67a4b58aa2..fd169b6829 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_be.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_be.ts @@ -1689,13 +1689,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Памылка ўводу - + You must specify at least one reference Вы павінны паказаць хаця б адзін спасылак @@ -3479,33 +3479,27 @@ Note: for 2D only setting for x is possible, Найбольшы памер элемента (0.0 = Аўтаматычна): - - - 0 mm - 0 мм - - - + Min element size (0.0 = Auto): Найменшы памер элемента (0.0 = Аўтаматычна): - + Element order: Парадак элементу: - + Gmsh Gmsh - + Time: Час: - + Gmsh version Версія Gmsh @@ -5661,12 +5655,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Паказаць вынік - + Shows and visualizes selected result data Паказвае і візуалізуе абраныя выніковыя дадзеныя @@ -5674,12 +5668,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Ачысціць вынікі - + Purges all results from active analysis Ачысціць усе вынікі актыўнага даследавання @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Стандартны сродак рашэння CalculiX - + Creates a standard FEM solver CalculiX with ccx tools Стварае стандартны сродак рашэння МКЭ CalculiX з дапамогай інструментаў CalculiX @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Кіраванне заданнямі сродку рашэння - + Changes solver attributes and runs the calculations for the selected solver Змяняе атрыбуты сродку рашэння і выконвае вылічэнні для абранага сродку рашэння @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Сродак рашэння Elmer - + Creates a FEM solver Elmer Стварае задачу МКЭ для сродку рашэння Elmer @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Сродак рашэння Mystran - + Creates a FEM solver Mystran Стварае задачу МКЭ для сродку рашэння Mystran @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Запусціць вылічэнні сродку рашэння - + Runs the calculations for the selected solver Выконвае вылічэнні для абранага сродку рашэння @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Сродак рашэння Z88 - + Creates a FEM solver Z88 Стварае задачу МКЭ для сродку рашэння Z88 @@ -6199,12 +6193,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Cродак рашэння CalculiX (новы фрэймворк) - + Creates a FEM solver CalculiX new framework (less result error handling) Стварае новы фреймворк сродку рашэння МКЭ CalculiX (менш апрацоўкі памылак у выніку) @@ -6355,12 +6349,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement Удасканаліць паліганальную сетку МКЭ - + Creates a FEM mesh refinement Стварае ўдасканаленую паліганальную сетку МКЭ @@ -6635,4 +6629,67 @@ Please select a result type first. Стварыць набор элементаў з шматкутніка + + NetgenMesh + + + FEM Mesh by Netgen + Паліганальная сетка МКЭ ад Netgen + + + + Mesh Parameters + Налады паліганальнай сеткі + + + + Fineness: + Дакладнасць: + + + + Maximal Size: + Найбольшы памер: + + + + Minimal Size: + Найменшы памер: + + + + Second Order + Другі парадак + + + + Growth Rate: + Тэмп росту: + + + + Curvature Safety: + Бяспека пры крывізне: + + + + Segments Per Edge: + Сегментаў на рабро: + + + + Netgen + Netgen + + + + Time: + Час: + + + + Netgen version + Версія Netgen + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ca.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ca.ts index 268d5b47ab..9da026bef4 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ca.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ca.ts @@ -1705,13 +1705,13 @@ Si us plau, especifiqueu un altre fitxer. FemGui::TaskDlgFemConstraint - - + + Input error Error d'entrada - + You must specify at least one reference S'ha d'especificar com a mínim una referència @@ -3496,33 +3496,27 @@ Nota: només és possible la configuració de x per a 2D, Mida màxima de l'element (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Mida mínima de l'element (0.0 = Auto): - + Element order: Ordre d'elements: - + Gmsh Gmsh - + Time: Temps: - + Gmsh version Versió Gmsh @@ -5685,12 +5679,12 @@ utilitzada pel solucionador Elmer FEM_ResultShow - + Show result Mostra el resultat - + Shows and visualizes selected result data Mostra i visualitza les dades dels resultats seleccionats @@ -5698,12 +5692,12 @@ utilitzada pel solucionador Elmer FEM_ResultsPurge - + Purge results Purgar resultats - + Purges all results from active analysis Purga tots els resultats d'anàlisis actives @@ -5711,12 +5705,12 @@ utilitzada pel solucionador Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solucionador estàndard CalculiX - + Creates a standard FEM solver CalculiX with ccx tools Crea un solucionador FEM estàndard CalculiX amb eines ccx @@ -5724,12 +5718,12 @@ utilitzada pel solucionador Elmer FEM_SolverControl - + Solver job control Control de treball del solucionador - + Changes solver attributes and runs the calculations for the selected solver Canvia els atributs del solucionador i executa els càlculs per al solucionador seleccionat @@ -5737,12 +5731,12 @@ utilitzada pel solucionador Elmer FEM_SolverElmer - + Solver Elmer Solucionador Elmer - + Creates a FEM solver Elmer Crea un solucionador FEM Elmer @@ -5750,12 +5744,12 @@ utilitzada pel solucionador Elmer FEM_SolverMystran - + Solver Mystran Solucionador Mystran - + Creates a FEM solver Mystran Crea un solucionador FEM Mystran @@ -5763,12 +5757,12 @@ utilitzada pel solucionador Elmer FEM_SolverRun - + Run solver calculations Executa els càlculs del solucionador - + Runs the calculations for the selected solver Executa els càlculs del solucionador seleccionat @@ -5776,12 +5770,12 @@ utilitzada pel solucionador Elmer FEM_SolverZ88 - + Solver Z88 Solucionador Z88 - + Creates a FEM solver Z88 Crea un solucionador FEM Z88 @@ -6223,12 +6217,12 @@ Primer, seleccioneu un tipus de resultat. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solucionador CalculiX (framework nou) - + Creates a FEM solver CalculiX new framework (less result error handling) Crea un framework nou del solucionador FEM CalculiX (menys gestió d'errors de resultats) @@ -6379,12 +6373,12 @@ Primer, seleccioneu un tipus de resultat. FEM_MeshRegion - + FEM mesh refinement Refinament de malla FEM - + Creates a FEM mesh refinement Crea un refinament de malla FEM @@ -6659,4 +6653,67 @@ Primer, seleccioneu un tipus de resultat. Crea un conjunt d'elements per polígons + + NetgenMesh + + + FEM Mesh by Netgen + Malla FEM per Netgen + + + + Mesh Parameters + Paràmetres de malla + + + + Fineness: + Precisió: + + + + Maximal Size: + Mida màxima: + + + + Minimal Size: + Mida mínima: + + + + Second Order + Segon ordre + + + + Growth Rate: + Taxa de creixement: + + + + Curvature Safety: + Seguretat de la curvatura: + + + + Segments Per Edge: + Segments per aresta: + + + + Netgen + Netgen + + + + Time: + Temps: + + + + Netgen version + Versió de Netgen + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts index d3feacc2ca..336e57e96c 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_cs.ts @@ -1706,13 +1706,13 @@ Zadejte prosím jiný soubor. FemGui::TaskDlgFemConstraint - - + + Input error Chyba zadání - + You must specify at least one reference Musíte specifikovat nejméně jednu referenci @@ -3215,7 +3215,7 @@ Poznámka: nemá žádný účinek, pokud bylo vybráno těleso Farfield / Electric infinity - Farfield / Elektrické nekonečno + Vzdálené pole / Elektrické nekonečno @@ -3498,33 +3498,27 @@ Poznámka: pro 2D je možné pouze nastavení pro x, Maximální velikost prvku (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimální velikost prvku (0.0 = Auto): - + Element order: Pořadí prvků: - + Gmsh Gmsh - + Time: Čas: - + Gmsh version Gmsh verze @@ -5687,12 +5681,12 @@ používá se pro řešič Elmer FEM_ResultShow - + Show result Zobrazit výsledek - + Shows and visualizes selected result data Zobrazuje a vizualizuje vybraná data výsledků @@ -5700,12 +5694,12 @@ používá se pro řešič Elmer FEM_ResultsPurge - + Purge results Vymazat výsledky - + Purges all results from active analysis Vymaže všechny výsledky z aktivní analýzy @@ -5713,12 +5707,12 @@ používá se pro řešič Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Řešič CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Vytvoří standardní MKP řešič CalculiX s nástroji ccx @@ -5726,12 +5720,12 @@ používá se pro řešič Elmer FEM_SolverControl - + Solver job control Ovládání úlohy řešiče - + Changes solver attributes and runs the calculations for the selected solver Změní atributy řešiče a spustí výpočty pro vybraný řešič @@ -5739,12 +5733,12 @@ používá se pro řešič Elmer FEM_SolverElmer - + Solver Elmer Řešič Elmer - + Creates a FEM solver Elmer Vytvoří MKP řešič Elmer @@ -5752,12 +5746,12 @@ používá se pro řešič Elmer FEM_SolverMystran - + Solver Mystran Řešič Mystran - + Creates a FEM solver Mystran Vytvoří MKP řešič Mystran @@ -5765,12 +5759,12 @@ používá se pro řešič Elmer FEM_SolverRun - + Run solver calculations Spustit výpočty řešiče - + Runs the calculations for the selected solver Spustí výpočty pro vybraný řešič @@ -5778,12 +5772,12 @@ používá se pro řešič Elmer FEM_SolverZ88 - + Solver Z88 Řešič Z88 - + Creates a FEM solver Z88 Vytvoří MKP řešič Z88 @@ -6225,12 +6219,12 @@ Nejprve prosím vyberte typ výsledku. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (nový framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Vytvoří MKP řešič CalculiX nový framework (méně výsledné zpracování chyb) @@ -6381,12 +6375,12 @@ Nejprve prosím vyberte typ výsledku. FEM_MeshRegion - + FEM mesh refinement Zahuštění MKP sítě - + Creates a FEM mesh refinement Vytvoří zahuštění MKP sítě @@ -6661,4 +6655,67 @@ Nejprve prosím vyberte typ výsledku. Vytvořit sadu uzlů pomocí polygonu + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Jemnost: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Poměr nárůstu: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Čas: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_da.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_da.ts index 9f92841203..6b26178793 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_da.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_da.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Input error - + You must specify at least one reference You must specify at least one reference @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Max element size (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Min element size (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Time: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Show result - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Fineness: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Growth Rate: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Time: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts index cf515ab926..b8603b57fa 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_de.ts @@ -1696,13 +1696,13 @@ Bitte eine andere Datei angeben. FemGui::TaskDlgFemConstraint - - + + Input error Eingabefehler - + You must specify at least one reference Mindestens eine Referenz angeben @@ -3488,33 +3488,27 @@ Hinweis: Für 2D ist nur für x möglich, Maximale Elementgröße (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimale Elementgröße (0.0 = Auto): - + Element order: Elementordnung: - + Gmsh Gmsh - + Time: Zeit: - + Gmsh version Gmsh-Version @@ -5677,12 +5671,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Ergebnis anzeigen - + Shows and visualizes selected result data Zeigen und sichtbar machen der ausgewählten Ergebnisse @@ -5690,12 +5684,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Ergebnisse löschen - + Purges all results from active analysis Löscht alle Ergebnisse aus der aktiven Analyse @@ -5703,12 +5697,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Löser CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Erstellt ein standard CalculiX FEM Solver mit CCX Werkzeugen @@ -5716,12 +5710,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Löser-Auftragssteuerung - + Changes solver attributes and runs the calculations for the selected solver Ändert Löser-Attribute und führt die Berechnungen für den ausgewählten Löser aus @@ -5729,12 +5723,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Löser Elmer - + Creates a FEM solver Elmer Erzeugt den FEM-Löser Elmer @@ -5742,12 +5736,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Löser Mystran - + Creates a FEM solver Mystran Erzeugt den FEM-Löser Mystran @@ -5755,12 +5749,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Berechnungen des Lösers starten - + Runs the calculations for the selected solver Starten der Berechnungen für den ausgewählten Löser @@ -5768,12 +5762,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Z88 Löser - + Creates a FEM solver Z88 Erstellt einen Z88 FEM-Löser @@ -6215,12 +6209,12 @@ Bitte zuerst einen Ergebnistyp auswählen. FEM_SolverCalculiX - + Solver CalculiX (new framework) Löser CalculiX (neues Framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Erstellt ein neues Framework des FEM-Lösers CalculiX (weniger Fehlerbehandlung bei Ergebnissen) @@ -6371,12 +6365,12 @@ Bitte zuerst einen Ergebnistyp auswählen. FEM_MeshRegion - + FEM mesh refinement FEM Netzverfeinerung - + Creates a FEM mesh refinement Erzeugt eine FEM-Netzverfeinerung @@ -6651,4 +6645,67 @@ Bitte zuerst einen Ergebnistyp auswählen. Elementset durch Polygon erstellen + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Feinheit: + + + + Maximal Size: + Maximale Größe: + + + + Minimal Size: + Minimale Größe: + + + + Second Order + Second Order + + + + Growth Rate: + Wachstumsrate: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Zeit: + + + + Netgen version + Netgen-Version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts index 6aabefa73e..6fc4f55770 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_el.ts @@ -1702,13 +1702,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Σφάλμα εισαγωγής - + You must specify at least one reference Πρέπει να καθορίσετε τουλάχιστον μια αναφορά @@ -3494,33 +3494,27 @@ Note: for 2D only setting for x is possible, Μέγιστο μέγεθος στοιχείου (0.0 = αυτόματο): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Ελάχιστο μέγεθος στοιχείου (0.0 = αυτόματο): - + Element order: Σειρά στοιχείου: - + Gmsh Gmsh - + Time: Ώρα: - + Gmsh version Έκδοση Gmsh @@ -5681,12 +5675,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Εμφανίστε το αποτέλεσμα - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5694,12 +5688,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Εκκαθάριση αποτελεσμάτων - + Purges all results from active analysis Διαγραφεί όλα τα αποτελέσματα από την ενεργή ανάλυση @@ -5707,12 +5701,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5720,12 +5714,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Έλεγχος εργασίας επιλυτή - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5733,12 +5727,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5746,12 +5740,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5759,12 +5753,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5772,12 +5766,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Επιλυτής Z88 - + Creates a FEM solver Z88 Δημιουργεί έναν επιλυτή Z88 FEM @@ -6219,12 +6213,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6375,12 +6369,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement Βελτίωση πλέγματος FEM - + Creates a FEM mesh refinement Δημιουργεί βελτίωση πλέγματος FEM @@ -6656,4 +6650,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Λεπτότητα: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Ρυθμός ανάπτυξης: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen αυτόματη 3D τετραεδρική γεννήτρια πλέγματος + + + + Time: + Ώρα: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_es-AR.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_es-AR.ts index 3ca7c86db2..ab3dac398a 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_es-AR.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_es-AR.ts @@ -1705,13 +1705,13 @@ Especifique otro archivo, por favor. FemGui::TaskDlgFemConstraint - - + + Input error Error de entrada - + You must specify at least one reference Debe especificar al menos una referencia @@ -3497,33 +3497,27 @@ Nota: para 2D solo la configuración para x es posible, Tamaño máximo del elemento (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Tamaño mínimo del elemento (0.0 = Auto): - + Element order: Orden de elemento: - + Gmsh Gmsh - + Time: Tiempo: - + Gmsh version Versión Gmsh @@ -4212,7 +4206,7 @@ Para posibles variables, vea el cuadro de descripción a continuación. Clearance Adjustment - Clearance Adjustment + Ajuste de tolerancia @@ -5686,12 +5680,12 @@ usada por el solver Elmer FEM_ResultShow - + Show result Mostrar resultado - + Shows and visualizes selected result data Muestra y visualiza los datos de resultados seleccionados @@ -5699,12 +5693,12 @@ usada por el solver Elmer FEM_ResultsPurge - + Purge results Purgar resultados - + Purges all results from active analysis Purga todos los resultados de los análisis activos @@ -5712,12 +5706,12 @@ usada por el solver Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX estándar - + Creates a standard FEM solver CalculiX with ccx tools Crea un solver FEM estándar CalculiX con herramientas de ccx @@ -5725,12 +5719,12 @@ usada por el solver Elmer FEM_SolverControl - + Solver job control Control de trabajo del solucionador - + Changes solver attributes and runs the calculations for the selected solver Cambia atributos del solucionador y ejecuta los cálculos @@ -5738,12 +5732,12 @@ usada por el solver Elmer FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Crea un solver FEM Elmer @@ -5751,12 +5745,12 @@ usada por el solver Elmer FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Crea un solver FEM Mystran @@ -5764,12 +5758,12 @@ usada por el solver Elmer FEM_SolverRun - + Run solver calculations Ejecutar cálculos del solver - + Runs the calculations for the selected solver Ejecuta los cálculos del solver seleccionado @@ -5777,12 +5771,12 @@ usada por el solver Elmer FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Crea un solver FEM Z88 @@ -6224,12 +6218,12 @@ Por favor, primero seleccione un tipo de resultado. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (nuevo marco de trabajo) - + Creates a FEM solver CalculiX new framework (less result error handling) Crea un nuevo marco de trabajo para el solucionador de FEM CalculiX (menos manejo de errores de resultado) @@ -6343,12 +6337,12 @@ Por favor, primero seleccione un tipo de resultado. Section print feature - Section print feature + Característica de sección de impresión Creates a section print feature - Creates a section print feature + Crear la visualización de variables de salida @@ -6380,12 +6374,12 @@ Por favor, primero seleccione un tipo de resultado. FEM_MeshRegion - + FEM mesh refinement Refinamiento de malla FEM - + Creates a FEM mesh refinement Crea un refinamiento de malla FEM @@ -6660,4 +6654,67 @@ Por favor, primero seleccione un tipo de resultado. Crear un conjunto de elementos definido por polígonos + + NetgenMesh + + + FEM Mesh by Netgen + Malla FEM por Netgen + + + + Mesh Parameters + Parámetros de malla + + + + Fineness: + Precisión: + + + + Maximal Size: + Tamaño máximo: + + + + Minimal Size: + Tamaño mínimo: + + + + Second Order + Segundo orden + + + + Growth Rate: + Tasa de crecimiento: + + + + Curvature Safety: + Seguridad de curvatura: + + + + Segments Per Edge: + Segmentos por arista: + + + + Netgen + Netgen + + + + Time: + Tiempo: + + + + Netgen version + Versión de Netgen + + 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 5136b25b33..51c1336ab7 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_es-ES.ts @@ -1705,13 +1705,13 @@ Especifique otro archivo, por favor. FemGui::TaskDlgFemConstraint - - + + Input error Error de entrada - + You must specify at least one reference Debe especificar al menos una referencia @@ -3497,33 +3497,27 @@ Nota: para 2D solo la configuración para x es posible, Tamaño máximo del elemento (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Tamaño mínimo del elemento (0.0 = Auto): - + Element order: Orden de elemento: - + Gmsh Gmsh - + Time: Tiempo: - + Gmsh version Versión Gmsh @@ -4212,7 +4206,7 @@ Para posibles variables, vea el cuadro de descripción a continuación. Clearance Adjustment - Clearance Adjustment + Ajuste de tolerancia @@ -5686,12 +5680,12 @@ usada por el solver Elmer FEM_ResultShow - + Show result Mostrar resultado - + Shows and visualizes selected result data Muestra y visualiza los datos de resultados seleccionados @@ -5699,12 +5693,12 @@ usada por el solver Elmer FEM_ResultsPurge - + Purge results Purgar resultados - + Purges all results from active analysis Purga todos los resultados de los análisis activos @@ -5712,12 +5706,12 @@ usada por el solver Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX estándar - + Creates a standard FEM solver CalculiX with ccx tools Crea un solver FEM estándar CalculiX con herramientas de ccx @@ -5725,12 +5719,12 @@ usada por el solver Elmer FEM_SolverControl - + Solver job control Control de trabajo del solucionador - + Changes solver attributes and runs the calculations for the selected solver Cambia atributos del solucionador y ejecuta los cálculos @@ -5738,12 +5732,12 @@ usada por el solver Elmer FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Crea un solver FEM Elmer @@ -5751,12 +5745,12 @@ usada por el solver Elmer FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Crea un solver FEM Mystran @@ -5764,12 +5758,12 @@ usada por el solver Elmer FEM_SolverRun - + Run solver calculations Ejecutar cálculos del solver - + Runs the calculations for the selected solver Ejecuta los cálculos del solver seleccionado @@ -5777,12 +5771,12 @@ usada por el solver Elmer FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Crea un solver FEM Z88 @@ -6224,12 +6218,12 @@ Por favor, primero seleccione un tipo de resultado. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (nuevo marco de trabajo) - + Creates a FEM solver CalculiX new framework (less result error handling) Crea un nuevo marco de trabajo para el solucionador de FEM CalculiX (menos manejo de errores de resultado) @@ -6343,12 +6337,12 @@ Por favor, primero seleccione un tipo de resultado. Section print feature - Section print feature + Característica de sección de impresión Creates a section print feature - Creates a section print feature + Crear la visualización de variables de salida @@ -6380,12 +6374,12 @@ Por favor, primero seleccione un tipo de resultado. FEM_MeshRegion - + FEM mesh refinement Refinamiento de malla FEM - + Creates a FEM mesh refinement Crea un refinamiento de malla FEM @@ -6660,4 +6654,67 @@ Por favor, primero seleccione un tipo de resultado. Crear un conjunto de elementos definido por polígonos + + NetgenMesh + + + FEM Mesh by Netgen + Malla FEM por Netgen + + + + Mesh Parameters + Parámetros de malla + + + + Fineness: + Precisión: + + + + Maximal Size: + Tamaño máximo: + + + + Minimal Size: + Tamaño mínimo: + + + + Second Order + Segundo orden + + + + Growth Rate: + Tasa de crecimiento: + + + + Curvature Safety: + Seguridad de curvatura: + + + + Segments Per Edge: + Segmentos por arista: + + + + Netgen + Netgen + + + + Time: + Tiempo: + + + + Netgen version + Versión de Netgen + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_eu.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_eu.ts index 2802e48aca..bafbb0d106 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_eu.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_eu.ts @@ -1707,13 +1707,13 @@ Zehaztu beste fitxategi bat. FemGui::TaskDlgFemConstraint - - + + Input error Sarrera-errorea - + You must specify at least one reference Gutxienez erreferentzia bat adierazi behar duzu @@ -3499,33 +3499,27 @@ Oharra: 2D kasuetan soilik, X-en ezarpena posible da, Elementu-tamaina maximoa (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Elementu-tamaina minimoa (0.0 = Auto): - + Element order: Elementuen ordena: - + Gmsh Gmsh - + Time: Denbora: - + Gmsh version Gmsh bertsioa @@ -5688,12 +5682,12 @@ Elmer ebazlean FEM_ResultShow - + Show result Erakutsi emaitza - + Shows and visualizes selected result data Hautatutako emaitza-datuak erakusten eta bistaratzen ditu @@ -5701,12 +5695,12 @@ Elmer ebazlean FEM_ResultsPurge - + Purge results Araztu emaitzak - + Purges all results from active analysis Analisi aktiboetako emaitza guztiak arazten ditu @@ -5714,12 +5708,12 @@ Elmer ebazlean FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard CalculiX ebazle estandarra - + Creates a standard FEM solver CalculiX with ccx tools FEM CalculiX ebazle estandarra sortzen du ccx tresnekin @@ -5727,12 +5721,12 @@ Elmer ebazlean FEM_SolverControl - + Solver job control Ebazle-lanaren kontrola - + Changes solver attributes and runs the calculations for the selected solver Ebazlearen atributuak aldatzen ditu eta hautatutako ebazlerako kalkuluak exekutatzen ditu @@ -5740,12 +5734,12 @@ Elmer ebazlean FEM_SolverElmer - + Solver Elmer Elmer ebazlea - + Creates a FEM solver Elmer FEM Elmer ebazlea sortzen du @@ -5753,12 +5747,12 @@ Elmer ebazlean FEM_SolverMystran - + Solver Mystran Mystran ebazlea - + Creates a FEM solver Mystran FEM Mystran ebazlea sortzen du @@ -5766,12 +5760,12 @@ Elmer ebazlean FEM_SolverRun - + Run solver calculations Exekutatu ebazlearen kalkuluak - + Runs the calculations for the selected solver Hautatutako ebazlearen kalkuluak exekutatzen ditu @@ -5779,12 +5773,12 @@ Elmer ebazlean FEM_SolverZ88 - + Solver Z88 Z88 ebazlea - + Creates a FEM solver Z88 FEM Z88 ebazlea sortzen du @@ -6226,12 +6220,12 @@ Hasteko, hautatu emaitza mota bat. FEM_SolverCalculiX - + Solver CalculiX (new framework) CalculiX ebazlea (lan-marko berria) - + Creates a FEM solver CalculiX new framework (less result error handling) FEM CalculiX ebazlearen lan-marko berria sortzen du (emaitzen errore-maneiatze gutxiago) @@ -6382,12 +6376,12 @@ Hasteko, hautatu emaitza mota bat. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6662,4 +6656,67 @@ Hasteko, hautatu emaitza mota bat. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Fintasuna: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Hazkunde-tasa: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Denbora: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts index 21f908c477..60eff0ef1b 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_fi.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Syötteen virhe - + You must specify at least one reference Sinun on määritettävä vähintään yksi viittaus @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Max elementin koko (0.0 = Automaattinen): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimi elementin koko (0,0 = Automaattinen): - + Element order: Element order: - + Gmsh Gmsh - + Time: Aika: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Näytä tulos - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Hienous: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Kasvunopeus: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Aika: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts index 2e7aca3278..8e78f785ed 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_fr.ts @@ -1689,13 +1689,13 @@ Spécifier un autre fichier. FemGui::TaskDlgFemConstraint - - + + Input error Erreur de saisie - + You must specify at least one reference Vous devez spécifier au moins une référence @@ -3478,33 +3478,27 @@ Remarque : pour la 2D, seul le réglage en X est possible, le réglage en Y sera Taille maximale des éléments (0.0 = Auto) : - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Taille minimale des éléments (0.0 = Auto) : - + Element order: Ordre des éléments : - + Gmsh Gmsh - + Time: Temps : - + Gmsh version Version du mailleur Gmsh @@ -5660,12 +5654,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Afficher le résultat - + Shows and visualizes selected result data Affiche et visualise les données des résultats sélectionnés @@ -5673,12 +5667,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purger les résultats - + Purges all results from active analysis Purger tous les résultats de l'analyse active @@ -5686,12 +5680,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solveur CalculiX standard - + Creates a standard FEM solver CalculiX with ccx tools Créer un solveur standard FEM CalculiX avec les outils ccx @@ -5699,12 +5693,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Contrôle des tâches du solveur - + Changes solver attributes and runs the calculations for the selected solver Modifier les attributs du solveur et lancer les calculs pour le solveur sélectionné @@ -5712,12 +5706,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solveur Elmer - + Creates a FEM solver Elmer Créer un solveur FEM Elmer @@ -5725,12 +5719,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solveur Mystran - + Creates a FEM solver Mystran Créer un solveur FEM Mystran @@ -5738,12 +5732,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Lancer les calculs du solveur - + Runs the calculations for the selected solver Lancer les calculs pour le solveur sélectionné @@ -5751,12 +5745,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solveur Z88 - + Creates a FEM solver Z88 Créer un solveur FEM Z88 @@ -6198,12 +6192,12 @@ Sélectionner d'abord un type de résultat. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solveur CalculiX (nouveau modèle) - + Creates a FEM solver CalculiX new framework (less result error handling) Créer un solveur nouveau modèle FEM CalculiX (moins de traitement des erreurs de résultat) @@ -6354,12 +6348,12 @@ Sélectionner d'abord un type de résultat. FEM_MeshRegion - + FEM mesh refinement Mailler plus finement - + Creates a FEM mesh refinement Créer un maillage FEM plus fin @@ -6633,4 +6627,67 @@ Sélectionner d'abord un type de résultat. Créer un jeu d'éléments défini par polygone + + NetgenMesh + + + FEM Mesh by Netgen + Maillage FEM par Netgen + + + + Mesh Parameters + Paramètres de maillage + + + + Fineness: + Précision : + + + + Maximal Size: + Taille maximale : + + + + Minimal Size: + Taille minimale : + + + + Second Order + Second ordre + + + + Growth Rate: + Taux de croissance : + + + + Curvature Safety: + Sécurité de la courbure : + + + + Segments Per Edge: + Segments par arête : + + + + Netgen + Netgen + + + + Time: + Temps : + + + + Netgen version + Version de Netgen + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts index 6066071b03..f6962c192e 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_hr.ts @@ -1709,13 +1709,13 @@ Navedi drugu datoteku molim. FemGui::TaskDlgFemConstraint - - + + Input error Pogreška na ulazu - + You must specify at least one reference Morate odabrati najmanje jednu referencu @@ -3502,33 +3502,27 @@ Napomena: u 2D je moguće samo podešavanje za x Maksimalna veličina elementa (0,0 = Automatski): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimalna veličina elementa (0,0 = Automatski): - + Element order: Red elementa: - + Gmsh Gmsh - + Time: Vrijeme: - + Gmsh version Gmsh verzija @@ -5690,12 +5684,12 @@ koristiti za Elmerov rješavač FEM_ResultShow - + Show result Pokaži rezultat - + Shows and visualizes selected result data Pokazuje i vizualizira odabrane rezultate podataka @@ -5703,12 +5697,12 @@ koristiti za Elmerov rješavač FEM_ResultsPurge - + Purge results Brisanje rezultata - + Purges all results from active analysis Briše sve rezultate iz aktivne analize @@ -5716,12 +5710,12 @@ koristiti za Elmerov rješavač FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Alat za rješavanje CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Stvara standardni FEM CalculiX rješavač sa ccx alatom @@ -5729,12 +5723,12 @@ koristiti za Elmerov rješavač FEM_SolverControl - + Solver job control Kontrola posla rješavača - + Changes solver attributes and runs the calculations for the selected solver Mijenja atribute rješavača i izvodi izračune za odabrani alat za rješavanje @@ -5742,12 +5736,12 @@ koristiti za Elmerov rješavač FEM_SolverElmer - + Solver Elmer Alat za rješavanje Elmer - + Creates a FEM solver Elmer Stvara FEM rješavača Elmer @@ -5755,12 +5749,12 @@ koristiti za Elmerov rješavač FEM_SolverMystran - + Solver Mystran Alat za rješavanje Mystran - + Creates a FEM solver Mystran Stvara FEM rješavač Mystran @@ -5768,12 +5762,12 @@ koristiti za Elmerov rješavač FEM_SolverRun - + Run solver calculations Pokrenuti rješavanje izračuna - + Runs the calculations for the selected solver Izvodi izračune sa odabranim alatom za rješavanje @@ -5781,12 +5775,12 @@ koristiti za Elmerov rješavač FEM_SolverZ88 - + Solver Z88 Rješavač Z88 - + Creates a FEM solver Z88 Stvara FEM rješavača Z88 @@ -6229,12 +6223,12 @@ Molimo odaberite vrstu rezultata prvo. FEM_SolverCalculiX - + Solver CalculiX (new framework) Alat za rješavanje CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Stvori FEM alat za rješavanje CalculiX new framework (manje rukovanje pogreškama rezultata) @@ -6385,12 +6379,12 @@ Molimo odaberite vrstu rezultata prvo. FEM_MeshRegion - + FEM mesh refinement FEM izglađivanje mreže - + Creates a FEM mesh refinement Stvori FEM izglađivanje mreže @@ -6665,4 +6659,67 @@ Molimo odaberite vrstu rezultata prvo. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Finoća: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Stopa rasta: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Vrijeme: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts index f65caebc4e..bc4d603e7f 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_hu.ts @@ -1696,13 +1696,13 @@ Kérjük, adjon meg egy másik fájlt. FemGui::TaskDlgFemConstraint - - + + Input error Bemeneti hiba - + You must specify at least one reference Meg kell adnia legalább egy hivatkozást @@ -3488,33 +3488,27 @@ Megjegyzés: 2D esetén csak az x beállítása lehetséges, Maximális elemméret (0,0 = Automatikus): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimális elemméret (0,0 = Automatikus): - + Element order: Elemek sorrendje: - + Gmsh Gmsh ( http://gmsh.info/ ) - + Time: Idő: - + Gmsh version Gmsh verzió @@ -5676,12 +5670,12 @@ az Elmer megoldóhoz FEM_ResultShow - + Show result Eredmény megjelenítése - + Shows and visualizes selected result data Mutatja és megjeleníti a kiválasztott eredmény adatokat @@ -5689,12 +5683,12 @@ az Elmer megoldóhoz FEM_ResultsPurge - + Purge results Eredmények finomítása - + Purges all results from active analysis Az aktív elemzés összes eredményeinek finomítása @@ -5702,12 +5696,12 @@ az Elmer megoldóhoz FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard CalculiX alapértelmezett megoldó - + Creates a standard FEM solver CalculiX with ccx tools Létrehoz egy normál CalculiX VEM megoldót ccx eszközzel @@ -5715,12 +5709,12 @@ az Elmer megoldóhoz FEM_SolverControl - + Solver job control Munka megoldó ellenőrzés - + Changes solver attributes and runs the calculations for the selected solver Megoldó attribútumainak módosítása és a kiválasztott megoldó számításainak elindítása @@ -5728,12 +5722,12 @@ az Elmer megoldóhoz FEM_SolverElmer - + Solver Elmer Elmer megoldó - + Creates a FEM solver Elmer Létrehoz egy VEM Z88 megoldót @@ -5741,12 +5735,12 @@ az Elmer megoldóhoz FEM_SolverMystran - + Solver Mystran Mystran megoldó - + Creates a FEM solver Mystran Létrehoz egy VEM Mystran megoldót @@ -5754,12 +5748,12 @@ az Elmer megoldóhoz FEM_SolverRun - + Run solver calculations Megoldó számításainak elindítása - + Runs the calculations for the selected solver A kiválasztott megoldó számításainak elindítása @@ -5767,12 +5761,12 @@ az Elmer megoldóhoz FEM_SolverZ88 - + Solver Z88 Z88 megoldó - + Creates a FEM solver Z88 Létrehoz egy VEM Z88 megoldót @@ -6214,12 +6208,12 @@ Kérjük, először válassza ki az eredmény típusát. FEM_SolverCalculiX - + Solver CalculiX (new framework) CalculiX megoldó (új keretrendszer) - + Creates a FEM solver CalculiX new framework (less result error handling) Hozzáadja a CalculiX új keretrendszer VEM megoldót (kevesebb eredményhiba kezelése) @@ -6370,12 +6364,12 @@ Kérjük, először válassza ki az eredmény típusát. FEM_MeshRegion - + FEM mesh refinement VEM háló finomítás - + Creates a FEM mesh refinement Egy FEM-háló finomítást hoz létre @@ -6650,4 +6644,67 @@ Kérjük, először válassza ki az eredmény típusát. Elemkészlet létrehozása sokszögek szerint + + NetgenMesh + + + FEM Mesh by Netgen + VEM háló Netgen által + + + + Mesh Parameters + VEM háló paraméterek + + + + Fineness: + Finomság: + + + + Maximal Size: + Maximális méret: + + + + Minimal Size: + Maximális méret: + + + + Second Order + Második sorrend + + + + Growth Rate: + Emelkedési ráta: + + + + Curvature Safety: + Görbületbiztonság: + + + + Segments Per Edge: + Élenkénti szakaszok: + + + + Netgen + Netgen + + + + Time: + Idő: + + + + Netgen version + Netgen verzió + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts index 2edf86206c..dbaa633158 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_it.ts @@ -1706,13 +1706,13 @@ Specificare un altro file. FemGui::TaskDlgFemConstraint - - + + Input error Errore di input - + You must specify at least one reference È necessario specificare almeno un riferimento @@ -3498,33 +3498,27 @@ Nota: per l'impostazione 2D solo per x è possibile, Dimensione massima dell'elemento (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Dimensione minima dell'elemento (0.0 = Auto): - + Element order: Ordine elemento: - + Gmsh Gmsh - + Time: Tempo: - + Gmsh version Versione Gmsh @@ -5687,12 +5681,12 @@ usata per il solutore Elmer FEM_ResultShow - + Show result Mostra i risultati - + Shows and visualizes selected result data Mostra e visualizza i dati dei risultati selezionati @@ -5700,12 +5694,12 @@ usata per il solutore Elmer FEM_ResultsPurge - + Purge results Azzera i risultati - + Purges all results from active analysis Elimina tutti i risultati dall'analisi attiva @@ -5713,12 +5707,12 @@ usata per il solutore Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Risolutore CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Crea un risolutore FEM standard CalculiX con strumenti ccx @@ -5726,12 +5720,12 @@ usata per il solutore Elmer FEM_SolverControl - + Solver job control Controlli del solutore - + Changes solver attributes and runs the calculations for the selected solver Cambia gli attributi di solutore ed esegue i calcoli per il solutore selezionato @@ -5739,12 +5733,12 @@ usata per il solutore Elmer FEM_SolverElmer - + Solver Elmer Risolutore Elmer - + Creates a FEM solver Elmer Crea un risolutore FEM Elmer @@ -5752,12 +5746,12 @@ usata per il solutore Elmer FEM_SolverMystran - + Solver Mystran Risolutore Mystran - + Creates a FEM solver Mystran Crea un risolutore FEM Mystran @@ -5765,12 +5759,12 @@ usata per il solutore Elmer FEM_SolverRun - + Run solver calculations Esegue calcoli del risolutore - + Runs the calculations for the selected solver Esegue i calcoli per il risolutore selezionato @@ -5778,12 +5772,12 @@ usata per il solutore Elmer FEM_SolverZ88 - + Solver Z88 Risolutore Z88 - + Creates a FEM solver Z88 Crea un solutore FEM Z88 @@ -5823,7 +5817,7 @@ usata per il solutore Elmer Run - esegui + Esegui @@ -6225,12 +6219,12 @@ Per favore seleziona prima un tipo di risultato. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solutore CalculiX (nuovo framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Crea un solutore FEM CalculiX nuovo framework (meno gestione degli errori di risultato) @@ -6381,12 +6375,12 @@ Per favore seleziona prima un tipo di risultato. FEM_MeshRegion - + FEM mesh refinement Raffinamento della mesh FEM - + Creates a FEM mesh refinement Crea un raffinamento della mesh FEM @@ -6661,4 +6655,67 @@ Per favore seleziona prima un tipo di risultato. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Parametri Mesh + + + + Fineness: + Finezza: + + + + Maximal Size: + Grandezza massima: + + + + Minimal Size: + Grandezza minima: + + + + Second Order + Secondo ordine + + + + Growth Rate: + Tasso di crescita: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Numero di elementi per spigolo: + + + + Netgen + Netgen + + + + Time: + Tempo: + + + + Netgen version + Versione Netgen + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts index 8011003f48..828ccc55a7 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ja.ts @@ -1690,13 +1690,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error 入力エラー - + You must specify at least one reference 少なくとも 1 つの参照を指定する必要があります。 @@ -3475,33 +3475,27 @@ Note: for 2D only setting for x is possible, 最大要素サイズ (0.0 = 自動): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): 最小要素サイズ (0.0 = 自動): - + Element order: 要素の次数: - + Gmsh Gmsh - + Time: 時間: - + Gmsh version Gmshバージョン @@ -5655,12 +5649,12 @@ used for the Elmer solver FEM_ResultShow - + Show result 結果表示 - + Shows and visualizes selected result data 選択した結果データを表示、可視化 @@ -5668,12 +5662,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results 結果を消去 - + Purges all results from active analysis アクティブな解析からすべての結果を削除 @@ -5681,12 +5675,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard ソルバー CalculiX 標準 - + Creates a standard FEM solver CalculiX with ccx tools 標準FEMソルバーであるccxツール付属CalculiXを作成 @@ -5694,12 +5688,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control ソルバー ジョブ制御 - + Changes solver attributes and runs the calculations for the selected solver ソルバー属性を変更し、選択したソルバーのための計算を実行 @@ -5707,12 +5701,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer ソルバー Elmer - + Creates a FEM solver Elmer FEMソルバーElmerを作成 @@ -5720,12 +5714,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran ソルバー Mystran - + Creates a FEM solver Mystran FEMソルバーMystranを作成 @@ -5733,12 +5727,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations ソルバー計算の実行 - + Runs the calculations for the selected solver 選択したソルバーの計算を実行 @@ -5746,12 +5740,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 ソルバー Z88 - + Creates a FEM solver Z88 FEMソルバーZ88を作成 @@ -6193,12 +6187,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) ソルバー CalculiX (新しいフレームワーク) - + Creates a FEM solver CalculiX new framework (less result error handling) FEMソルバーCalculiXの新しいフレームワークを作成 (結果エラー処理が減少) @@ -6349,12 +6343,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEMメッシュ再分割 - + Creates a FEM mesh refinement FEMメッシュ再分割を作成 @@ -6629,4 +6623,67 @@ Please select a result type first. ポリゴンから要素セットを作成 + + NetgenMesh + + + FEM Mesh by Netgen + NetgenによるFEMメッシュ + + + + Mesh Parameters + メッシュパラメーター + + + + Fineness: + 細かさ: + + + + Maximal Size: + 最大サイズ: + + + + Minimal Size: + 最小サイズ: + + + + Second Order + 2次精度 + + + + Growth Rate: + 増加率: + + + + Curvature Safety: + 曲率の安全性: + + + + Segments Per Edge: + エッジあたりのセグメント: + + + + Netgen + Netgen + + + + Time: + 時間: + + + + Netgen version + Netgenのバージョン + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ka.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ka.ts index 8386a2994d..1df36cc5d3 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ka.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ka.ts @@ -1700,13 +1700,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error შეყვანის შეცდომა - + You must specify at least one reference აუცილებელია მიუთითოთ ერთი ბმა მაინც @@ -3492,33 +3492,27 @@ Note: for 2D only setting for x is possible, მაქს ელემენტის ზომა (0.0 = ავტომატური) - - - 0 mm - 0 მმ - - - + Min element size (0.0 = Auto): მინ ელემენტის ზომა (0.0 = ავტომატური) - + Element order: ელემენტის რიგი: - + Gmsh Gmsh - + Time: დრო: - + Gmsh version Gmsh-ის ვერსია @@ -5679,12 +5673,12 @@ used for the Elmer solver FEM_ResultShow - + Show result შედეგების ჩვენება - + Shows and visualizes selected result data შედეგის მონიშნული მონაცემების ჩვენება და ვიზუალიზაცია @@ -5692,12 +5686,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results შედეგების გასუფთავება - + Purges all results from active analysis აქტიური ანალიზის ყველა შედეგის წაშლა @@ -5705,12 +5699,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard ამომხსნელის CalculiX სტანდარტი - + Creates a standard FEM solver CalculiX with ccx tools Cxx ხელსაწყოებით სტანდარტული CalculiX სემ ამომხსნელის შექმნა @@ -5718,12 +5712,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control გადამწყვეტის ამოცანების კონტროლი - + Changes solver attributes and runs the calculations for the selected solver ცვლის ამომხსნელის ატრიბუტებს და აწარმოებს გამოთვლებს არჩეული ამომხსნელისთვის @@ -5731,12 +5725,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer გადამწყვეტი Elmder - + Creates a FEM solver Elmer სემ „Elmer“ ამოხსნელის შექმნა @@ -5744,12 +5738,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Mystran ამომხსნელი - + Creates a FEM solver Mystran სემ „Mystran“ ამოხსნელის შექმნა @@ -5757,12 +5751,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations ამომხსნელის გამოთვლების გაშვება - + Runs the calculations for the selected solver გამოთვლების არჩეული ამომხსნელით გაშვება @@ -5770,12 +5764,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 გადამწყვეტი Z88 - + Creates a FEM solver Z88 სემ Z88 ამოხსნელისთვის ამოცანის შექმნა @@ -6217,12 +6211,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) ამომხსნელი CalculiX-ი (ახალი framework) - + Creates a FEM solver CalculiX new framework (less result error handling) სემ ამომხსნელის CalculiX ახალი Framework-ით შექმნა (ნაკლები შედეგის შეცდომები) @@ -6373,12 +6367,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement სემ ბადის გაუმჯობესება - + Creates a FEM mesh refinement სემ ბადის გაუმჯობესების შექმნა @@ -6653,4 +6647,67 @@ Please select a result type first. მრავალკუთხედით დაყენებული ელემენტის შექმნა + + NetgenMesh + + + FEM Mesh by Netgen + სემ ბადე Netgen-თ + + + + Mesh Parameters + ბადის პარამეტრები + + + + Fineness: + სიზუსტე: + + + + Maximal Size: + მაქსიმალური ზომა: + + + + Minimal Size: + მინიმალური ზომა: + + + + Second Order + მეორე რიგი + + + + Growth Rate: + ზრდის ტემპი: + + + + Curvature Safety: + სიმრუდის უსაფრთხოება: + + + + Segments Per Edge: + სეგმენტი თითოეული წიბოსთვის: + + + + Netgen + Netgen + + + + Time: + დრო: + + + + Netgen version + Netgen-ის ვერსია + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ko.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ko.ts index 5bd9a612e0..797ea2729a 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ko.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ko.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error 입력 오류 - + You must specify at least one reference You must specify at least one reference @@ -3251,7 +3251,7 @@ Note: has no effect if a solid was selected Diameter: - 직경: + 지름: @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Max element size (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Min element size (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: 시간: - + Gmsh version Gmsh version @@ -3980,7 +3974,7 @@ For possible variables, see the description box below. Center - 센터 + 중심 @@ -4092,7 +4086,7 @@ For possible variables, see the description box below. Reverse direction - Reverse direction + 역방향 @@ -4417,7 +4411,7 @@ normal vector of the face is used as direction Reverse direction - Reverse direction + 역방향 @@ -4501,7 +4495,7 @@ normal vector of the face is used as direction Reverse direction - Reverse direction + 역방향 @@ -4865,7 +4859,7 @@ used for the Elmer solver Center - 센터 + 중심 @@ -5682,12 +5676,12 @@ used for the Elmer solver FEM_ResultShow - + Show result 결과 표시 - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5695,12 +5689,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5708,12 +5702,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5721,12 +5715,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5734,12 +5728,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5747,12 +5741,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5760,12 +5754,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5773,12 +5767,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6145,7 +6139,7 @@ Please select a result type first. Center - 센터 + 중심 @@ -6186,7 +6180,7 @@ Please select a result type first. Center - 센터 + 중심 @@ -6220,12 +6214,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6376,12 +6370,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6656,4 +6650,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + 세밀도: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Growth Rate: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + 시간: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_lt.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_lt.ts index 03340e7c78..11864fb5ab 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_lt.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_lt.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Input error - + You must specify at least one reference You must specify at least one reference @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Didžiausios akies dydis (0.0 = Apskaičiuojamas savaime): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Smulkiausios akies dydis (0.0 = Apskaičiuojamas savaime): - + Element order: Element order: - + Gmsh „Gmsh“ - + Time: Laikas: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Show result - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Smulkumas: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Growth Rate: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Laikas: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts index 741587baa7..9d43cc039e 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_nl.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Invoerfout - + You must specify at least one reference U moet minstens één referentie specificeren @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Maximale elementgrootte (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimale elementgrootte (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Tijd: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Toon resultaat - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh door Netgen + + + + Mesh Parameters + Mesh parameters + + + + Fineness: + Fijnheid: + + + + Maximal Size: + Maximale Grootte: + + + + Minimal Size: + Minimale grootte: + + + + Second Order + Tweede orde + + + + Growth Rate: + Groeipercentage: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segmenten per rand: + + + + Netgen + Netgen + + + + Time: + Tijd: + + + + Netgen version + Netgen versie + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts index 5f554630ac..6fe072e95e 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pl.ts @@ -1706,13 +1706,13 @@ Proszę, wybierz inny. FemGui::TaskDlgFemConstraint - - + + Input error Błąd danych wejściowych - + You must specify at least one reference Należy określić co najmniej jedno odniesienie @@ -3498,33 +3498,27 @@ Uwaga: w 2D tylko ustawienie dla x jest możliwe, Maksymalny rozmiar elementu (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimalny rozmiar elementu (0,0 = Auto): - + Element order: Rząd elementów: - + Gmsh Gmsh - + Time: Czas: - + Gmsh version Wersja Gmsh @@ -5074,7 +5068,7 @@ użyta przez solver Elmer Fineness: - Stopień rozdrobnienia: + Stopień zagęszczenia: @@ -5293,7 +5287,7 @@ użyta przez solver Elmer &Results - &Wyniki + W&yniki @@ -5308,7 +5302,7 @@ użyta przez solver Elmer Utilities - Narzędzia + &Narzędzia @@ -5686,12 +5680,12 @@ użyta przez solver Elmer FEM_ResultShow - + Show result Pokaż wynik - + Shows and visualizes selected result data Pokazuje i wizualizuje wybrane wyniki @@ -5699,12 +5693,12 @@ użyta przez solver Elmer FEM_ResultsPurge - + Purge results Usuń wyniki - + Purges all results from active analysis Usuwa wszystkie wyniki z aktywnej analizy @@ -5712,12 +5706,12 @@ użyta przez solver Elmer FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX - + Creates a standard FEM solver CalculiX with ccx tools Tworzy standardowy solver MES CalculiX korzystając z narzędzi ccx @@ -5725,12 +5719,12 @@ użyta przez solver Elmer FEM_SolverControl - + Solver job control Kontrola pracy solvera - + Changes solver attributes and runs the calculations for the selected solver Zmienia nastawy wybranego solvera i uruchamia obliczenia @@ -5738,12 +5732,12 @@ użyta przez solver Elmer FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Dodaje solver Elmer w MES @@ -5751,12 +5745,12 @@ użyta przez solver Elmer FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Tworzy analizę MES w Mystran @@ -5764,12 +5758,12 @@ użyta przez solver Elmer FEM_SolverRun - + Run solver calculations Uruchom obliczenia solvera - + Runs the calculations for the selected solver Uruchamia obliczenia dla wybranego solvera @@ -5777,12 +5771,12 @@ użyta przez solver Elmer FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Tworzy analizę MES w Z88 @@ -6224,12 +6218,12 @@ Proszę najpierw wybrać typ wyniku. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (nowa struktura) - + Creates a FEM solver CalculiX new framework (less result error handling) Dodaje solver CalculiX z nową strukturą (mniejsza obsługa błędów wynikowych) @@ -6380,12 +6374,12 @@ Proszę najpierw wybrać typ wyniku. FEM_MeshRegion - + FEM mesh refinement Zagęszczenie siatki MES - + Creates a FEM mesh refinement Dodaje zagęszczenie siatki MES @@ -6561,7 +6555,7 @@ Proszę najpierw wybrać typ wyniku. Restore - Восстановить + Przywróć @@ -6660,4 +6654,67 @@ Proszę najpierw wybrać typ wyniku. Utwórz zbiór elementów wybranych przez wielokąt + + NetgenMesh + + + FEM Mesh by Netgen + Siatka MES przy użyciu Netgen + + + + Mesh Parameters + Parametry siatki + + + + Fineness: + Stopień zagęszczenia: + + + + Maximal Size: + Rozmiar maksymalny: + + + + Minimal Size: + Rozmiar minimalny: + + + + Second Order + Elementy drugiego rzędu + + + + Growth Rate: + Współczynnik wzrostu: + + + + Curvature Safety: + Bezpieczeństwo krzywizny: + + + + Segments Per Edge: + Liczba segmentów na krawędź: + + + + Netgen + Netgen + + + + Time: + Czas: + + + + Netgen version + Wersja Netgen + + 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 56ba6b6774..dd1d5c2a15 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-BR.ts @@ -661,7 +661,7 @@ Make pulley constraint - Make pulley constraint + Criar uma restrição de polia @@ -1704,13 +1704,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Erro de entrada - + You must specify at least one reference Você deve especificar pelo menos uma referência @@ -3496,33 +3496,27 @@ Nota: para configuração apenas 2D para x é possível, Tamanho máximo do elemento (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Tamanho mínimo do elemento (0.0 = Auto): - + Element order: Ordem do elemento: - + Gmsh Gmsh - + Time: Tempo: - + Gmsh version Gmsh version @@ -3820,22 +3814,22 @@ For possible variables, see the description box below. stress: sxx, syy, szz, sxy, sxz, syz - stress: sxx, syy, szz, sxy, sxz, syz + estresse: sxx, syy, szz, sxy, sxz, syz network pressure: NP - network pressure: NP + pressão de rede: NP strain: exx, eyy, ezz, exy, exz, eyz - strain: exx, eyy, ezz, exy, exz, eyz + deformação: exx, eyy, ezz, exy, exz, eyz mass flow rate: MF - mass flow rate: MF + vazão mássica: MF @@ -3845,7 +3839,7 @@ For possible variables, see the description box below. max shear stress: MS - max shear stress: MS + tensão de cisalhamento máxima: MS @@ -4216,17 +4210,17 @@ For possible variables, see the description box below. Enable Friction - Enable Friction + Habilitar Atrito Friction Coefficient - Friction Coefficient + Coeficiente de Atrito Stick Slope - Stick Slope + Inclinação de Aderência @@ -5685,12 +5679,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Mostrar resultado - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5698,12 +5692,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5711,12 +5705,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX padrão - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5724,12 +5718,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5737,12 +5731,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5750,12 +5744,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Criar um solucionador MEF usando o Mystram @@ -5763,12 +5757,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Executar os cálculos do solucionador - + Runs the calculations for the selected solver Executa os cálculos usando o solucionador selecionado @@ -5776,12 +5770,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solucionador Z88 - + Creates a FEM solver Z88 Executar os cálculos do solucionador Z88 @@ -6223,12 +6217,12 @@ Por favor, selecione primeiramente um tipo de resultado. FEM_SolverCalculiX - + Solver CalculiX (new framework) Calculador CalculiX (experimental) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6379,12 +6373,12 @@ Por favor, selecione primeiramente um tipo de resultado. FEM_MeshRegion - + FEM mesh refinement Refinamento de malha - + Creates a FEM mesh refinement Cria uma região com refinamento de malha FEM @@ -6659,4 +6653,67 @@ Por favor, selecione primeiramente um tipo de resultado. Cria um conjunto de elementos definidos por polígonos + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Espessura: + + + + Maximal Size: + Tamanho Máximo: + + + + Minimal Size: + Tamanho Mínimo: + + + + Second Order + Segunda ordem + + + + Growth Rate: + Taxa de crescimento: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Tempo: + + + + Netgen version + Netgen version + + 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 ef734cca89..2b2b44dd39 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_pt-PT.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Erro de Inserção - + You must specify at least one reference Deve especificar pelo menos uma referência @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Tamanho máximo do elemento (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Tamanho mínimo do elemento (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Tempo: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Mostrar resultado - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Espessura: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Taxa de crescimento: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Tempo: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts index 904993154c..f904ad7299 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ro.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Eroare de intrare - + You must specify at least one reference Trebuie să specificați cel puțin o referință @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Dimensiunea maximă a elementului (0,0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Dimensiunea minimă a elementului (0,0 = Auto): - + Element order: Element order: - + Gmsh Zgură - + Time: Timp: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Arată rezultatul - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Finețe: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Rată de creştere: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Timp: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts index b778ba37a9..ee17b07715 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_ru.ts @@ -301,7 +301,7 @@ Select a single FEM Mesh, please. - Select a single FEM Mesh, please. + Выберите, пожалуйста, одну сетку FEM. @@ -692,12 +692,12 @@ Edit Elements set - Edit Elements set + Редактировать набор элементов Create Elements set - Create Elements set + Создать набор элементов @@ -1010,12 +1010,12 @@ Spooles equation solver - Spooles equation solver + Решение для уравнения Sparse Object Oriented Linear Equations Solver Cholesky iterative solver - Cholesky iterative solver + Итерационный решатель Холецкого @@ -1106,7 +1106,7 @@ Specify another file please. Multi-core CPU support: - Multi-core CPU support: + Поддержка многоядерных процессоров: @@ -1276,7 +1276,7 @@ the constraint or material is applied. Working directory for solving analysis and Gmsh meshing - Working directory for solving analysis and Gmsh meshing + Рабочий каталог для анализа решений и построения сетки Gmsh @@ -1372,7 +1372,7 @@ when the results dialog is opened Hide analysis features when opening result dialog - Hide analysis features when opening result dialog + Скрывать функции анализа при открытии диалогового окна результатов @@ -1422,7 +1422,7 @@ adding an analysis container Leave blank to use default Gmsh binary file - Leave blank to use default Gmsh binary file + Оставьте поле пустым, чтобы использовать исполняемый файл gmsh по умолчанию @@ -1576,7 +1576,7 @@ Specify another file please. Leave blank to use default Z88, z88r binary file - Leave blank to use default Z88, z88r binary file + Оставьте поле пустым, чтобы использовать исполняемый файл Z88 z88r по умолчанию @@ -1697,13 +1697,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Ошибка ввода - + You must specify at least one reference Необходимо указать как минимум одну ссылку @@ -2069,7 +2069,7 @@ Specify another file please. Length Scale [m] - Length Scale [m] + Масштаб длины [м] @@ -2628,12 +2628,12 @@ Specify another file please. Use FreeCAD material editor - Use FreeCAD material editor + Использовать редактор материала FreeCAD Use this task panel - Use this task panel + Использовать эту панель задач @@ -2688,12 +2688,12 @@ Specify another file please. Thermal Properties - Thermal Properties + Свойства Термала Specific Heat Capacity: - Specific Heat Capacity: + Удельная теплоемкость: @@ -2869,7 +2869,7 @@ Specify another file please. Head Loss [mm] - Head Loss [mm] + Потери напора [mm] @@ -3463,7 +3463,7 @@ Note: for 2D only setting for x is possible, Dissipation Rate: - Dissipation Rate: + Уровень рассеивания: @@ -3476,7 +3476,7 @@ Note: for 2D only setting for x is possible, FEM Mesh Parameters - FEM Mesh Parameters + Параметр FEM сетки @@ -3489,33 +3489,27 @@ Note: for 2D only setting for x is possible, Максимальный размер элемента (0.0 = Авто): - - - 0 mm - 0 мм - - - + Min element size (0.0 = Auto): Минимальный размер элемента (0.0 = Авто): - + Element order: Порядок элемента: - + Gmsh Gmsh - + Time: Время: - + Gmsh version Версия Gmsh @@ -4738,7 +4732,7 @@ used for the Elmer solver System Rotation - System Rotation + Вращение системы @@ -5107,12 +5101,12 @@ used for the Elmer solver Number of Segments per Edge: - Number of Segments per Edge: + Количество сегментов на ребро: Number of Segments per Radius: - Number of Segments per Radius: + Количество сегментов на радиус: @@ -5451,7 +5445,7 @@ used for the Elmer solver Creates a FEM equation for elasticity (stress) - Creates a FEM equation for elasticity (stress) + Создает уравнение МКЭ для расчета упругости (напряжения) @@ -5678,12 +5672,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Показать результат - + Shows and visualizes selected result data Наглядно показывает выбранные данные результата анализа @@ -5691,12 +5685,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Очистить результаты - + Purges all results from active analysis Удаляет все результаты из активного блока анализа @@ -5704,12 +5698,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Решатель CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Создает стандартный решатель МКЭ CalculiX с помощью инструментов ccx @@ -5717,12 +5711,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Управление работой решателя - + Changes solver attributes and runs the calculations for the selected solver Изменяет атрибуты решателя и выполняет алгоритмы вычисления выбранного решателя @@ -5730,12 +5724,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Решатель Elmer - + Creates a FEM solver Elmer Создает задачу МКЭ для решателя Elmer @@ -5743,12 +5737,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Решатель Mystran - + Creates a FEM solver Mystran Создает задачу МКЭ для решателя Mystran @@ -5756,12 +5750,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Запустить алгоритм расчета решателя - + Runs the calculations for the selected solver Запускает вычисления для выбранного решателя @@ -5769,12 +5763,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Решатель Z88 - + Creates a FEM solver Z88 Создает задачу для решателя МКЭ Z88 @@ -5856,7 +5850,7 @@ used for the Elmer solver To add references: select them in the 3D view and click "Add". - To add references: select them in the 3D view and click "Add". + Чтобы добавить ссылки: выберите их в 3D-виде и нажмите «Добавить». @@ -6011,7 +6005,8 @@ Please select a result type first. Creates a FEM equation for 2D magnetodynamic forces - Creates a FEM equation for 2D magnetodynamic forces + Создает уравнение МКЭ для +магнитодинамических сил @@ -6038,7 +6033,7 @@ Please select a result type first. Creates a FEM equation for magnetodynamic forces - Creates a FEM equation for magnetodynamic forces + Создает уравнение МКЭ длямагнитодинамических сил @@ -6118,7 +6113,7 @@ Please select a result type first. Creates a FEM equation for deformation (nonlinear elasticity) - Creates a FEM equation for deformation (nonlinear elasticity) + Создать FEM уравнение для деформации (нелинейная эластичность) @@ -6216,12 +6211,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Решатель CalculiX (новый фреймворк) - + Creates a FEM solver CalculiX new framework (less result error handling) Создает новую структуру решателя МКЭ CalculiX (меньше обработки ошибок результатов) @@ -6372,12 +6367,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement Уточнение сетки МКЭ - + Creates a FEM mesh refinement Создает сетку ПЭМ @@ -6493,7 +6488,7 @@ Please select a result type first. Creates a rigid body constraint for a geometric entity - Creates a rigid body constraint for a geometric entity + Создает жесткое ограничение для геометрического объекта @@ -6522,7 +6517,7 @@ Please select a result type first. Only one type of selection (vertex, face or edge) per constraint allowed! - Only one type of selection (vertex, face or edge) per constraint allowed! + Допускается только один тип выбора (вершина, грань или ребро) на одно ограничение! @@ -6548,7 +6543,7 @@ Please select a result type first. Erase Elements by Polygon - Erase Elements by Polygon + Стереть элементы из полигона @@ -6585,18 +6580,18 @@ Please select a result type first. Can't copy ResultMesh to ResultMesh - Can't copy ResultMesh to ResultMesh + Невозможно скопировать ResultMesh в ResultMesh Mesh must be a Results mesh - Mesh must be a Results mesh + Сетка должна быть сетью результатов No Data To Restore - No Data To Restore + Нет данных для восстановления @@ -6607,7 +6602,7 @@ Please select a result type first. All Elements Erased - no mesh generated. - All Elements Erased - no mesh generated. + Все элементы удалены - сетка не создана. @@ -6622,7 +6617,7 @@ Please select a result type first. Creates a FEM mesh elements set - Creates a FEM mesh elements set + Создает набор элементов сетки FEM @@ -6643,13 +6638,76 @@ Please select a result type first. Element set by poly - Element set by poly + Элемент, заданный полигоном Create Element set by Poly - Create Element set by Poly + Создать элемент набора Полигон + + + + NetgenMesh + + + FEM Mesh by Netgen + Сетка FEM от Netgen + + + + Mesh Parameters + Параметры сетки + + + + Fineness: + Точность: + + + + Maximal Size: + Максимальный размер: + + + + Minimal Size: + Минимальный размер: + + + + Second Order + Второй порядок + + + + Growth Rate: + Темп роста: + + + + Curvature Safety: + Безопасность кривизны: + + + + Segments Per Edge: + Сегментов на ребро: + + + + Netgen + Netgen + + + + Time: + Время: + + + + Netgen version + Версия Netgen diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sl.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sl.ts index 71c518c762..160dcc71c2 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sl.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sl.ts @@ -1706,13 +1706,13 @@ Določite drugo datoteko. FemGui::TaskDlgFemConstraint - - + + Input error Napaka vnosa - + You must specify at least one reference Navesti morate vsaj en sklic @@ -3498,33 +3498,27 @@ Opomba: pri 2D je mogoče nastavili le x, Največja dopustna velikost prvine (0.0 = Samodejno): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Najmanjša dopustna velikost prvine (0.0 = Samodejno): - + Element order: Element order: - + Gmsh Gmsh - + Time: Čas: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Prikaži rezultat - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Podrobnost: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Hitrost naraščanja: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Čas: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sr-CS.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sr-CS.ts index 498ed9ccdc..1c4fbd5789 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sr-CS.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sr-CS.ts @@ -1705,13 +1705,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Input error - + You must specify at least one reference Moraš navesti bar jednu referencu @@ -3497,33 +3497,27 @@ Note: for 2D only setting for x is possible, Maksimalna veličina elementa (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Minimalna veličina elementa (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Vreme: - + Gmsh version Gmsh verzija @@ -5686,12 +5680,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Prikaži rezultat - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5699,12 +5693,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5712,12 +5706,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Standardni CalculiX solver - + Creates a standard FEM solver CalculiX with ccx tools Napravi standardni MKЕ solver CalculiX sa ccx alatima @@ -5725,12 +5719,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Kontrola zadataka algoritma za rešavanje - + Changes solver attributes and runs the calculations for the selected solver Menja atribute i pokreće proračune za izabrani solver @@ -5738,12 +5732,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Elmer solver - + Creates a FEM solver Elmer Napravi MKЕ solver Elmer @@ -5751,12 +5745,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Mystran solver - + Creates a FEM solver Mystran Napravi MKЕ solver Mystran @@ -5764,12 +5758,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Pokreni solver - + Runs the calculations for the selected solver Pokreni proračun izabranim solver-om @@ -5777,12 +5771,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Z88 solver - + Creates a FEM solver Z88 Napravi MKЕ solver Z88 @@ -6224,12 +6218,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) CalculiX solver (nove generacije) - + Creates a FEM solver CalculiX new framework (less result error handling) Napravi MKЕ solver CalculiX nove generacije (poboljšana obrada grešaka) @@ -6380,12 +6374,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6660,4 +6654,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Finoća: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Stopa Rasta: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Vreme: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts index c5567eafad..cfccbfaad9 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sr.ts @@ -1705,13 +1705,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Грешка приликом уноса - + You must specify at least one reference Мораш навести бар једну референцу @@ -3497,33 +3497,27 @@ Note: for 2D only setting for x is possible, Максимална величина елемента (0.0 = Ауто): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Минимална величина елемента (0.0 = Ауто): - + Element order: Element order: - + Gmsh Gmsh - + Time: Време: - + Gmsh version Gmsh верзија @@ -5686,12 +5680,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Прикажи резултат - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5699,12 +5693,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5712,12 +5706,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Стандардни CalculiX солвер - + Creates a standard FEM solver CalculiX with ccx tools Направи стандардни МКЕ солвер CalculiX са ccx алатима @@ -5725,12 +5719,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Контрола задатака алгоритма за решавање - + Changes solver attributes and runs the calculations for the selected solver Мења атрибуте и покреће прорачуне за изабрани солвер @@ -5738,12 +5732,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Elmer солвер - + Creates a FEM solver Elmer Направи МКЕ солвер Elmer @@ -5751,12 +5745,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Mystran солвер - + Creates a FEM solver Mystran Направи МКЕ солвер Mystran @@ -5764,12 +5758,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Покрени солвер - + Runs the calculations for the selected solver Покрени прорачун изабраним солвером @@ -5777,12 +5771,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Z88 солвер - + Creates a FEM solver Z88 Направи МКЕ солвер Z88 @@ -6224,12 +6218,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) CalculiX солвер (нове генерације) - + Creates a FEM solver CalculiX new framework (less result error handling) Направи МКЕ солвер CalculiX нове генерације (побољшана обрада грешака) @@ -6380,12 +6374,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6660,4 +6654,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Финоћа: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Стопа Раста: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Време: + + + + Netgen version + Netgen version + + 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 29fac084a9..b12cffcb78 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_sv-SE.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Inmatningsfel - + You must specify at least one reference Du måste ange minst en referens @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Max element size (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Min element size (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Tid: - + Gmsh version Gmsh-version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Visa resultat - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Finhet: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Tillväxthastighet: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Tid: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts index b037c5b035..9a0ad3b341 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_tr.ts @@ -1699,13 +1699,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Girdi hatası - + You must specify at least one reference En az bir referans belirtmeniz gerekir @@ -3491,33 +3491,27 @@ Note: for 2D only setting for x is possible, En fazla eleman boyutu (0.0 = Oto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): En az eleman boyutu (0.0 = Oto): - + Element order: Eleman sırası: - + Gmsh Gmsh - + Time: Zaman: - + Gmsh version Gmsh sürümü @@ -5680,12 +5674,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Sonuçları göster - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5693,12 +5687,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5706,12 +5700,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5719,12 +5713,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5732,12 +5726,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5745,12 +5739,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5758,12 +5752,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5771,12 +5765,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6218,12 +6212,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6374,12 +6368,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6654,4 +6648,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + İnceliği: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Büyüme hızı: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Zaman: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts index a21a895be1..d3d97f48dd 100755 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_uk.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Помилка вводу - + You must specify at least one reference Потрібно вказати принаймні одне посилання @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Макс. розмір елемента (0.0 = авто): - - - 0 mm - 0 мм - - - + Min element size (0.0 = Auto): Мін. розмір елемента (0.0 = авто): - + Element order: Порядок елементів: - + Gmsh Gmsh - + Time: Час: - + Gmsh version Gmsh версія @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Показати результат - + Shows and visualizes selected result data Показує та візуалізує вибрані дані результатів @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Очистити результати - + Purges all results from active analysis Видаляє всі результати активного аналізу @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Розв’язувач CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Створює стандартний МСЕ розв'язувач CalculiX за допомогою інструментів ccx @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Керування завданнями розв'язувача - + Changes solver attributes and runs the calculations for the selected solver Змінює атрибути розв'язувача та запускає обчислення для вибраного розв'язувача @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Розв'язувач Elmer - + Creates a FEM solver Elmer Створює розв'язувач МСЕ Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Розв'язувач Містрана - + Creates a FEM solver Mystran Створено МСЕ розв'язувач Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Запустити обчислення розв'язувача - + Runs the calculations for the selected solver Запускає обчислення для обраного розв'язувача @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Розв'язувач Z88 - + Creates a FEM solver Z88 Створює розв'язувач Z88 МСЕ @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Розв'язувач CalculiX (новий фреймворк) - + Creates a FEM solver CalculiX new framework (less result error handling) Створює нову платформу для МСЕ-розв'язувача CalculiX (менше обробки помилок у результатах) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement Уточнення сітки МСЕ - + Creates a FEM mesh refinement Створює уточнення сітки МСЕ @@ -6661,4 +6655,67 @@ Please select a result type first. Створити набір елементів із багатокутника + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Параметри сітки + + + + Fineness: + Чистота: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Темп зростання: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Час: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_val-ES.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_val-ES.ts index f698d8b3bb..21077acb11 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_val-ES.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_val-ES.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error Input error - + You must specify at least one reference Heu d'especificar com a mínim una referència @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Mida màxima de l'element (0,0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Mida mínima de l'element (0,0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: Temps: - + Gmsh version Gmsh version @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result Mostra el resultat - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + Precisió: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + Taxa de creixement: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + Temps: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts index 09f1fb0e43..c2c6f8677a 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-CN.ts @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error 输入错误 - + You must specify at least one reference 您必须至少指定一个参考 @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, 最大元素大小(0.0 = 自动): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): 最小元素大小(0.0 = 自动): - + Element order: Element order: - + Gmsh Gmsh - + Time: 时间: - + Gmsh version Gmsh 版本 @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result 显示结果 - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Elmer求解器 - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Mystran求解器 - + Creates a FEM solver Mystran 创建Mystran有限元求解器 @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Z88求解器 - + Creates a FEM solver Z88 建立Z88有限元求解器 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + 精细度: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + 增长率: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + 时间: + + + + Netgen version + Netgen version + + 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 2818bf6e01..b181a95e6f 100644 --- a/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts +++ b/src/Mod/Fem/Gui/Resources/translations/Fem_zh-TW.ts @@ -155,7 +155,7 @@ Initial temperature - Initial temperature + 初始溫度 @@ -497,7 +497,7 @@ Total Plot legend item label - Total + 總計 @@ -631,7 +631,7 @@ Make gear constraint - Make gear constraint + 建立齒輪拘束 @@ -737,12 +737,12 @@ Id - Id + Id Label - Label + 標籤 @@ -752,12 +752,12 @@ Not Marked - Not Marked + 未標記 Marked - Marked + 已標記 @@ -768,7 +768,7 @@ Temperature: - Temperature: + 溫度: @@ -828,7 +828,7 @@ CalculiX binary - CalculiX binary + CalculiX 二進位 @@ -848,7 +848,7 @@ Input file Editor - Input file Editor + 輸入檔案編輯器 @@ -903,7 +903,7 @@ Check Mesh - Check Mesh + 檢查網格 @@ -976,12 +976,12 @@ s - s + Time End - Time End + 結束時間 @@ -1706,13 +1706,13 @@ Specify another file please. FemGui::TaskDlgFemConstraint - - + + Input error 輸入錯誤 - + You must specify at least one reference 您必須至少指定一個參考 @@ -3350,7 +3350,7 @@ Note: has no effect if a solid was selected Label - Label + 標籤 @@ -3498,33 +3498,27 @@ Note: for 2D only setting for x is possible, Max element size (0.0 = Auto): - - - 0 mm - 0 mm - - - + Min element size (0.0 = Auto): Min element size (0.0 = Auto): - + Element order: Element order: - + Gmsh Gmsh - + Time: 時間: - + Gmsh version Gmsh version @@ -3930,7 +3924,7 @@ For possible variables, see the description box below. Check Mesh - Check Mesh + 檢查網格 @@ -5687,12 +5681,12 @@ used for the Elmer solver FEM_ResultShow - + Show result 顯示結果 - + Shows and visualizes selected result data Shows and visualizes selected result data @@ -5700,12 +5694,12 @@ used for the Elmer solver FEM_ResultsPurge - + Purge results Purge results - + Purges all results from active analysis Purges all results from active analysis @@ -5713,12 +5707,12 @@ used for the Elmer solver FEM_SolverCalculiXCcxTools - + Solver CalculiX Standard Solver CalculiX Standard - + Creates a standard FEM solver CalculiX with ccx tools Creates a standard FEM solver CalculiX with ccx tools @@ -5726,12 +5720,12 @@ used for the Elmer solver FEM_SolverControl - + Solver job control Solver job control - + Changes solver attributes and runs the calculations for the selected solver Changes solver attributes and runs the calculations for the selected solver @@ -5739,12 +5733,12 @@ used for the Elmer solver FEM_SolverElmer - + Solver Elmer Solver Elmer - + Creates a FEM solver Elmer Creates a FEM solver Elmer @@ -5752,12 +5746,12 @@ used for the Elmer solver FEM_SolverMystran - + Solver Mystran Solver Mystran - + Creates a FEM solver Mystran Creates a FEM solver Mystran @@ -5765,12 +5759,12 @@ used for the Elmer solver FEM_SolverRun - + Run solver calculations Run solver calculations - + Runs the calculations for the selected solver Runs the calculations for the selected solver @@ -5778,12 +5772,12 @@ used for the Elmer solver FEM_SolverZ88 - + Solver Z88 Solver Z88 - + Creates a FEM solver Z88 Creates a FEM solver Z88 @@ -6225,12 +6219,12 @@ Please select a result type first. FEM_SolverCalculiX - + Solver CalculiX (new framework) Solver CalculiX (new framework) - + Creates a FEM solver CalculiX new framework (less result error handling) Creates a FEM solver CalculiX new framework (less result error handling) @@ -6381,12 +6375,12 @@ Please select a result type first. FEM_MeshRegion - + FEM mesh refinement FEM mesh refinement - + Creates a FEM mesh refinement Creates a FEM mesh refinement @@ -6661,4 +6655,67 @@ Please select a result type first. Create Element set by Poly + + NetgenMesh + + + FEM Mesh by Netgen + FEM Mesh by Netgen + + + + Mesh Parameters + Mesh Parameters + + + + Fineness: + 精細度: + + + + Maximal Size: + Maximal Size: + + + + Minimal Size: + Minimal Size: + + + + Second Order + Second Order + + + + Growth Rate: + 成長率: + + + + Curvature Safety: + Curvature Safety: + + + + Segments Per Edge: + Segments Per Edge: + + + + Netgen + Netgen + + + + Time: + 時間: + + + + Netgen version + Netgen version + + diff --git a/src/Mod/Fem/Gui/Resources/ui/MeshGmsh.ui b/src/Mod/Fem/Gui/Resources/ui/MeshGmsh.ui index a8ae88a12b..be66475ca2 100644 --- a/src/Mod/Fem/Gui/Resources/ui/MeshGmsh.ui +++ b/src/Mod/Fem/Gui/Resources/ui/MeshGmsh.ui @@ -49,38 +49,35 @@ - - - - 0 - 0 - - - - - 80 - 20 - - - - 0 mm - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 1.000000000000000 - - - 1000000000.000000000000000 + + + true mm - - 2 + + + 100 + 20 + - + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + 0.000000000000000 + + + 1000000000000000000000.000000000000000 + + + 1.000000000000000 + + 0.000000000000000 @@ -93,38 +90,35 @@ - - - - 0 - 0 - - - - - 80 - 20 - - - - 0 mm - - - Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter - - - 1.000000000000000 - - - 1000000000.000000000000000 + + + true mm - - 2 + + + 100 + 20 + - + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + 0.000000000000000 + + + 1000000000000000000000.000000000000000 + + + 1.000000000000000 + + 0.000000000000000 @@ -219,9 +213,9 @@ - Gui::InputField - QLineEdit -
Gui/InputField.h
+ Gui::QuantitySpinBox + QWidget +
Gui/QuantitySpinBox.h
diff --git a/src/Mod/Fem/Gui/Resources/ui/MeshNetgen.ui b/src/Mod/Fem/Gui/Resources/ui/MeshNetgen.ui new file mode 100644 index 0000000000..7a9d334dc1 --- /dev/null +++ b/src/Mod/Fem/Gui/Resources/ui/MeshNetgen.ui @@ -0,0 +1,277 @@ + + + NetgenMesh + + + + 0 + 0 + 400 + 475 + + + + FEM Mesh by Netgen + + + + + + + 16777215 + 1677215 + + + + Mesh Parameters + + + + + + QFormLayout::AllNonFixedFieldsGrow + + + + + Fineness: + + + + + + + + + + Maximal Size: + + + + + + + true + + + mm + + + + 100 + 20 + + + + Qt::AlignLeft|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + 0.000000000000000 + + + 1000000000000000000000.000000000000000 + + + 1.000000000000000 + + + 1000.000000000000 + + + + + + + Minimal Size: + + + + + + + true + + + mm + + + + 100 + 20 + + + + Qt::AlignLeft|Qt::AlignTrailing|Qt::AlignVCenter + + + true + + + 0.000000000000000 + + + 1000000000000000000000.000000000000000 + + + 1.000000000000000 + + + 0.000000000000000 + + + + + + + Second Order + + + + + + + Growth Rate: + + + + + + + false + + + 0.010000000000000 + + + 1.000000000000000 + + + 0.100000000000000 + + + + + + + Curvature Safety: + + + + + + + false + + + 0.100000000000000 + + + + + + + Segments Per Edge: + + + + + + + false + + + 0.100000000000000 + + + + + + + + + + + + + 16777215 + 1677215 + + + + Netgen + + + + + + QFormLayout::AllNonFixedFieldsGrow + + + + + + + QTextEdit::NoWrap + + + + + + + + 12 + + + + Time: + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + 0 + 0 + + + + Netgen version + + + + + + + + + + + + + + + Gui::QuantitySpinBox + QWidget +
Gui/QuantitySpinBox.h
+
+
+ + +
diff --git a/src/Mod/Fem/Gui/TaskFemConstraint.cpp b/src/Mod/Fem/Gui/TaskFemConstraint.cpp index 308088b66b..4f4e717e51 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraint.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraint.cpp @@ -168,7 +168,11 @@ void TaskFemConstraint::createDeleteAction(QListWidget* parentList) // creates a context menu, a shortcut for it and connects it to a slot function deleteAction = new QAction(tr("Delete"), this); - deleteAction->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + deleteAction->setShortcut(QKeySequence(shortcut)); + } #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry deleteAction->setShortcutVisibleInContextMenu(true); diff --git a/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp b/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp index c7c53732bb..0c794fb5a9 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp @@ -195,7 +195,7 @@ ViewProviderFemMesh::ViewProviderFemMesh() ADD_PROPERTY(PointColor, (App::Color(0.7f, 0.7f, 0.7f))); ADD_PROPERTY(PointSize, (5.0f)); PointSize.setConstraints(&floatRange); - ADD_PROPERTY(LineWidth, (2.0f)); + ADD_PROPERTY(LineWidth, (1.0f)); LineWidth.setConstraints(&floatRange); ShapeAppearance.setDiffuseColor(App::Color(1.0f, 0.7f, 0.0f)); @@ -334,14 +334,11 @@ void ViewProviderFemMesh::attach(App::DocumentObject* pcObj) // because the group affects nodes that are rendered afterwards (#0003769) // Faces + Wireframe (Elements) - // SoPolygonOffset* offset = new SoPolygonOffset(); - // offset->styles = SoPolygonOffset::FILLED; - // offset->factor = 2.0f; - // offset->units = 1.0f; + SoPolygonOffset* offset = new SoPolygonOffset(); SoGroup* pcFlatWireRoot = new SoGroup(); pcFlatWireRoot->addChild(pcWireRoot); - // pcFlatWireRoot->addChild(offset); + pcFlatWireRoot->addChild(offset); pcFlatWireRoot->addChild(pcFlatRoot); addDisplayMaskMode(pcFlatWireRoot, Private::dm_face_wire); @@ -349,7 +346,7 @@ void ViewProviderFemMesh::attach(App::DocumentObject* pcObj) SoGroup* pcElemNodesRoot = new SoGroup(); pcElemNodesRoot->addChild(pcPointsRoot); pcElemNodesRoot->addChild(pcWireRoot); - // pcElemNodesRoot->addChild(offset); + pcElemNodesRoot->addChild(offset); pcElemNodesRoot->addChild(pcFlatRoot); addDisplayMaskMode(pcElemNodesRoot, Private::dm_face_wire_node); diff --git a/src/Mod/Fem/Gui/Workbench.cpp b/src/Mod/Fem/Gui/Workbench.cpp index e2ea74f046..adcdc7ad12 100644 --- a/src/Mod/Fem/Gui/Workbench.cpp +++ b/src/Mod/Fem/Gui/Workbench.cpp @@ -154,10 +154,8 @@ Gui::ToolBarItem* Workbench::setupToolBars() const Gui::ToolBarItem* mesh = new Gui::ToolBarItem(root); mesh->setCommand("Mesh"); -#ifdef FCWithNetgen - *mesh << "FEM_MeshNetgenFromShape"; -#endif - *mesh << "FEM_MeshGmshFromShape" + *mesh << "FEM_MeshNetgenFromShape" + << "FEM_MeshGmshFromShape" << "Separator" << "FEM_MeshBoundaryLayer" << "FEM_MeshRegion" @@ -311,10 +309,8 @@ Gui::MenuItem* Workbench::setupMenuBar() const Gui::MenuItem* mesh = new Gui::MenuItem; root->insertItem(item, mesh); mesh->setCommand("M&esh"); -#ifdef FCWithNetgen - *mesh << "FEM_MeshNetgenFromShape"; -#endif - *mesh << "FEM_MeshGmshFromShape" + *mesh << "FEM_MeshNetgenFromShape" + << "FEM_MeshGmshFromShape" << "Separator" << "FEM_MeshBoundaryLayer" << "FEM_MeshRegion" diff --git a/src/Mod/Fem/ObjectsFem.py b/src/Mod/Fem/ObjectsFem.py index 4c6042ad56..5148f2b891 100644 --- a/src/Mod/Fem/ObjectsFem.py +++ b/src/Mod/Fem/ObjectsFem.py @@ -525,8 +525,15 @@ def makeMeshGroup(doc, base_mesh, use_label=False, name="MeshGroup"): def makeMeshNetgen(doc, name="MeshNetgen"): """makeMeshNetgen(document, [name]): - makes a Fem MeshShapeNetgenObject object""" - obj = doc.addObject("Fem::FemMeshShapeNetgenObject", name) + makes a Netgen FEM mesh object""" + obj = doc.addObject("Fem::FemMeshShapeBaseObjectPython", name) + from femobjects import mesh_netgen + + mesh_netgen.MeshNetgen(obj) + if FreeCAD.GuiUp: + from femviewprovider import view_mesh_netgen + + view_mesh_netgen.VPMeshNetgen(obj.ViewObject) return obj diff --git a/src/Mod/Fem/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index 8bd97dc065..bc41a058a4 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -830,6 +830,7 @@ class _MeshNetgenFromShape(CommandManager): self.selobj.Name ) ) + FreeCADGui.doCommand("FreeCAD.ActiveDocument.ActiveObject.Fineness = 'Moderate'") # Netgen mesh object could be added without an active analysis # but if there is an active analysis move it in there import FemGui diff --git a/src/Mod/Fem/femmesh/gmshtools.py b/src/Mod/Fem/femmesh/gmshtools.py index bbe2bf50f9..0a9bd5419f 100644 --- a/src/Mod/Fem/femmesh/gmshtools.py +++ b/src/Mod/Fem/femmesh/gmshtools.py @@ -46,17 +46,25 @@ class GmshError(Exception): class GmshTools: + + name = "Gmsh" + def __init__(self, gmsh_mesh_obj, analysis=None): # mesh obj self.mesh_obj = gmsh_mesh_obj + self.process = None # analysis if analysis: self.analysis = analysis else: self.analysis = None + self.load_properties() + self.error = False + + def load_properties(self): # part to mesh self.part_obj = self.mesh_obj.Shape @@ -186,7 +194,6 @@ class GmshTools: self.temp_file_geo = "" self.mesh_name = "" self.gmsh_bin = "" - self.error = False def update_mesh_data(self): self.start_logs() @@ -199,6 +206,27 @@ class GmshTools: self.write_part_file() self.write_geo() + def compute(self): + self.load_properties() + self.update_mesh_data() + self.get_tmp_file_paths() + self.get_gmsh_command() + self.write_gmsh_input_files() + + command_list = [self.gmsh_bin, "-", self.temp_file_geo] + self.process = subprocess.Popen( + command_list, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE + ) + + out, err = self.process.communicate() + if self.process.returncode != 0: + raise RuntimeError(err.decode("utf-8")) + + return True + + def update_properties(self): + self.mesh_obj.FemMesh = Fem.read(self.temp_file_mesh) + def create_mesh(self): try: self.update_mesh_data() @@ -399,7 +427,7 @@ class GmshTools: # if self.group_elements: # Console.PrintMessage(" {}\n".format(self.group_elements)) - def get_gmsh_version(self): + def version(self): self.get_gmsh_command() if os.path.exists(self.gmsh_bin): found_message = "file found: " + self.gmsh_bin @@ -407,7 +435,7 @@ class GmshTools: else: found_message = "file not found: " + self.gmsh_bin Console.PrintError(found_message + "\n") - return (None, None, None), found_message + return found_message command_list = [self.gmsh_bin, "--info"] try: @@ -420,26 +448,10 @@ class GmshTools: ) except Exception as e: Console.PrintMessage(str(e) + "\n") - return (None, None, None), found_message + "\n\n" + "Error: " + str(e) + return found_message + "\n\n" + "Error: " + str(e) gmsh_stdout, gmsh_stderr = p.communicate() - Console.PrintMessage("Gmsh: StdOut:\n" + gmsh_stdout + "\n") - if gmsh_stderr: - Console.PrintError("Gmsh: StdErr:\n" + gmsh_stderr + "\n") - - from re import search - - # use raw string mode to get pep8 quiet - # https://stackoverflow.com/q/61497292 - # https://github.com/MathSci/fecon236/issues/6 - match = search(r"^Version\s*:\s*(\d+)\.(\d+)\.(\d+)", gmsh_stdout) - # return (major, minor, patch), fullmessage - if match: - mess = found_message + "\n\n" + gmsh_stdout - return match.group(1, 2, 3), mess - else: - mess = found_message + "\n\n" + "Warning: Output not recognized\n\n" + gmsh_stdout - return (None, None, None), mess + return gmsh_stdout def get_region_data(self): # mesh regions diff --git a/src/Mod/Fem/femmesh/netgentools.py b/src/Mod/Fem/femmesh/netgentools.py new file mode 100644 index 0000000000..c0a7857a95 --- /dev/null +++ b/src/Mod/Fem/femmesh/netgentools.py @@ -0,0 +1,301 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +# *************************************************************************** +# * Copyright (c) 2024 Mario Passaglia * +# * * +# * This file is part of FreeCAD. * +# * * +# * FreeCAD is free software: you can redistribute it and/or modify it * +# * under the terms of the GNU Lesser General Public License as * +# * published by the Free Software Foundation, either version 2.1 of the * +# * License, or (at your option) any later version. * +# * * +# * FreeCAD is distributed in the hope that it will be useful, but * +# * WITHOUT ANY WARRANTY; without even the implied warranty of * +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * +# * Lesser General Public License for more details. * +# * * +# * You should have received a copy of the GNU Lesser General Public * +# * License along with FreeCAD. If not, see * +# * . * +# * * +# *************************************************************************** + +__title__ = "Tools for the work with Netgen mesher" +__author__ = "Mario Passaglia" +__url__ = "https://www.freecad.org" + +import numpy as np +import shutil +import subprocess +import sys +import tempfile + +import FreeCAD +import Fem + +try: + from netgen import occ, config as ng_config +except ModuleNotFoundError: + FreeCAD.Console.PrintError("To use FemMesh Netgen objects, install the Netgen Python bindings") + + +class NetgenTools: + + # to change order of nodes from netgen to smesh + order_edge = { + 2: [0, 1, 2], # seg2 + 3: [0, 1, 2], # seg3 + } + order_face = { + 3: [0, 1, 2, 3, 4, 5, 6, 7], # tria3 + 6: [0, 1, 2, 5, 3, 4, 6, 7], # tria6 + 4: [0, 1, 2, 3, 4, 5, 6, 7], # quad4 + 8: [0, 1, 2, 3, 4, 7, 5, 6], # quad8 + } + order_volume = { + 4: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # tetra4 + 10: [0, 1, 2, 3, 4, 7, 5, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # tetra10 + 8: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # hexa8 + 20: [0, 1, 2, 3, 4, 5, 6, 7, 8, 11, 9, 10, 12, 15, 13, 14, 16, 17, 18, 19], # hexa20 + 5: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # pyra5 + 13: [0, 1, 2, 3, 4, 5, 8, 6, 7, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # pyra13 + 6: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], # penta6 + 15: [0, 1, 2, 3, 4, 5, 6, 8, 7, 12, 14, 13, 9, 10, 11, 15, 16, 17, 18, 19], # penta15 + } + + name = "Netgen" + + def __init__(self, obj): + self.obj = obj + self.fem_mesh = None + self.process = None + self.tmpdir = "" + + def write_geom(self): + if not self.tmpdir: + self.tmpdir = tempfile.mkdtemp(prefix="fem_") + + global_pla = self.obj.Shape.getGlobalPlacement() + geom = self.obj.Shape.getPropertyOfGeometry() + # get partner shape + geom_trans = geom.transformed(FreeCAD.Placement().Matrix) + geom_trans.Placement = global_pla + self.brep_file = self.tmpdir + "/shape.brep" + self.result_file = self.tmpdir + "/result.npy" + geom_trans.exportBrep(self.brep_file) + + code = """ +from femmesh.netgentools import NetgenTools + +NetgenTools.run_netgen(**{params}) +""" + + def compute(self): + self.write_geom() + mesh_params = { + "brep_file": self.brep_file, + "threads": self.obj.Threads, + "heal": self.obj.HealShape, + "fineness": self.obj.Fineness, + "params": self.get_meshing_parameters(), + "second_order": self.obj.SecondOrder, + "result_file": self.result_file, + } + + code_str = self.code.format(params=mesh_params) + + cmd_list = [ + sys.executable, + "-c", + code_str, + ] + self.process = subprocess.Popen(cmd_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = self.process.communicate() + if self.process.returncode != 0: + raise RuntimeError(err.decode("utf-8")) + + return True + + @staticmethod + def run_netgen(brep_file, threads, heal, fineness, params, second_order, result_file): + import pyngcore as ngcore + from netgen import meshing + + geom = occ.OCCGeometry(brep_file) + ngcore.SetNumThreads(threads) + + if fineness == "UserDefined": + mp = meshing.MeshingParameters(**params) + elif fineness == "VeryCoarse": + mp = meshing.meshsize.very_coarse + elif fineness == "Coarse": + mp = meshing.meshsize.coarse + elif fineness == "Moderate": + mp = meshing.meshsize.moderate + elif fineness == "Fine": + mp = meshing.meshsize.fine + elif fineness == "VeryFine": + mp = meshing.meshsize.very_fine + + with ngcore.TaskManager(): + if heal: + geom.Heal() + mesh = geom.GenerateMesh(mp=mp) + + if second_order: + mesh.SecondOrder() + + coords = mesh.Coordinates() + + edges = mesh.Elements1D().NumPy() + faces = mesh.Elements2D().NumPy() + volumes = mesh.Elements3D().NumPy() + + nod_edges = edges["nodes"] + nod_faces = faces["nodes"] + nod_volumes = volumes["nodes"] + + np_edges = (nod_edges != 0).sum(axis=1).tolist() + np_faces = faces["np"].tolist() + np_volumes = volumes["np"].tolist() + + # set smesh node order + for i in range(faces.size): + nod_faces[i] = nod_faces[i][NetgenTools.order_face[np_faces[i]]] + + for i in range(volumes.size): + nod_volumes[i] = nod_volumes[i][NetgenTools.order_volume[np_volumes[i]]] + + flat_edges = nod_edges[nod_edges != 0].tolist() + flat_faces = nod_faces[nod_faces != 0].tolist() + flat_volumes = nod_volumes[nod_volumes != 0].tolist() + + result = { + "coords": coords, + "Edges": [flat_edges, np_edges], + "Faces": [flat_faces, np_faces], + "Volumes": [flat_volumes, np_volumes], + } + + # create groups + nb_edges = edges.size + nb_faces = faces.size + nb_volumes = volumes.size + + idx_edges = edges["index"] + idx_faces = faces["index"] + idx_volumes = volumes["index"] + + groups = {"Edges": [], "Faces": [], "Solids": []} + for i in np.unique(idx_edges): + edge_i = (np.nonzero(idx_edges == i)[0] + 1).tolist() + groups["Edges"].append([i, edge_i]) + for i in np.unique(idx_faces): + face_i = (np.nonzero(idx_faces == i)[0] + nb_edges + 1).tolist() + groups["Faces"].append([i, face_i]) + + for i in np.unique(idx_volumes): + volume_i = (np.nonzero(idx_volumes == i)[0] + nb_edges + nb_faces + 1).tolist() + groups["Solids"].append([i, volume_i]) + + np.save(result_file, [result, groups]) + + def fem_mesh_from_result(self): + fem_mesh = Fem.FemMesh() + + # load Netgen result + netgen_result, groups = np.load(self.result_file, allow_pickle=True) + + for node in netgen_result["coords"]: + fem_mesh.addNode(*node) + + fem_mesh.addEdgeList(*netgen_result["Edges"]) + fem_mesh.addFaceList(*netgen_result["Faces"]) + fem_mesh.addVolumeList(*netgen_result["Volumes"]) + + for g in groups["Edges"]: + grp_id = fem_mesh.addGroup("Edge" + str(g[0]), "Edge") + fem_mesh.addGroupElements(grp_id, g[1]) + + for g in groups["Faces"]: + grp_id = fem_mesh.addGroup("Face" + str(g[0]), "Face") + fem_mesh.addGroupElements(grp_id, g[1]) + + for g in groups["Solids"]: + grp_id = fem_mesh.addGroup("Solid" + str(g[0]), "Volume") + fem_mesh.addGroupElements(grp_id, g[1]) + + return fem_mesh + + def update_properties(self): + self.obj.FemMesh = self.fem_mesh_from_result() + + def get_meshing_parameters(self): + params = { + "optimize3d": self.obj.Optimize3d, + "optimize2d": self.obj.Optimize2d, + "optsteps3d": self.obj.OptimizationSteps3d, + "optsteps2d": self.obj.OptimizationSteps2d, + "opterrpow": self.obj.OptimizationErrorPower, + "blockfill": self.obj.BlockFill, + "filldist": self.obj.FillDistance.Value, + "safety": self.obj.Safety, + "relinnersafety": self.obj.RelinnerSafety, + "uselocalh": self.obj.UseLocalH, + "grading": self.obj.GrowthRate, + "delaunay": self.obj.Delaunay, + "delaunay2d": self.obj.Delaunay2d, + "maxh": self.obj.MaxSize.Value, + "minh": self.obj.MinSize.Value, + "startinsurface": self.obj.StartInSurface, + "checkoverlap": self.obj.CheckOverlap, + "checkoverlappingboundary": self.obj.CheckOverlappingBoundary, + "checkchartboundary": self.obj.CheckChartBoundary, + "curvaturesafety": self.obj.CurvatureSafety, + "segmentsperedge": self.obj.SegmentsPerEdge, + "elsizeweight": self.obj.ElementSizeWeight, + "parthread": self.obj.ParallelMeshing, + "perfstepsstart": self.obj.StartStep, + "perfstepsend": self.obj.EndStep, + "giveuptol2d": self.obj.GiveUpTolerance2d, + "giveuptol": self.obj.GiveUpTolerance, + "giveuptolopenquads": self.obj.GiveUpToleranceOpenQuads, + "maxoutersteps": self.obj.MaxOuterSteps, + "starshapeclass": self.obj.StarShapeClass, + "baseelnp": self.obj.BaseElementNp, + "sloppy": self.obj.Sloppy, + "badellimit": self.obj.BadElementLimit, + "check_impossible": self.obj.CheckImpossible, + "only3D_domain_nr": self.obj.Only3dDomainNr, + "secondorder": self.obj.SecondOrder, + "elementorder": self.obj.ElementOrder, + "quad_dominated": self.obj.QuadDominated, + "try_hexes": self.obj.TryHexes, + "inverttets": self.obj.InvertTets, + "inverttrigs": self.obj.InvertTrigs, + "autozrefine": self.obj.AutoZRefine, + "parallel_meshing": self.obj.ParallelMeshing, + "nthreads": self.obj.Threads, + "closeedgefac": self.obj.CloseEdgeFactor, + } + + return params + + @staticmethod + def version(): + result = "{}: {}\n" + "{}: {}\n" + "{}: {}\n" + "{}: {}" + return result.format( + "Netgen", + ng_config.version, + "Python", + ng_config.PYTHON_VERSION, + "OpenCASCADE", + occ.occ_version, + "Use MPI", + ng_config.USE_MPI, + ) + + def __del__(self): + if self.tmpdir: + shutil.rmtree(self.tmpdir) diff --git a/src/Mod/Fem/femobjects/mesh_netgen.py b/src/Mod/Fem/femobjects/mesh_netgen.py new file mode 100644 index 0000000000..c04482b978 --- /dev/null +++ b/src/Mod/Fem/femobjects/mesh_netgen.py @@ -0,0 +1,486 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +# *************************************************************************** +# * Copyright (c) 2024 Mario Passaglia * +# * * +# * This file is part of FreeCAD. * +# * * +# * FreeCAD is free software: you can redistribute it and/or modify it * +# * under the terms of the GNU Lesser General Public License as * +# * published by the Free Software Foundation, either version 2.1 of the * +# * License, or (at your option) any later version. * +# * * +# * FreeCAD is distributed in the hope that it will be useful, but * +# * WITHOUT ANY WARRANTY; without even the implied warranty of * +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * +# * Lesser General Public License for more details. * +# * * +# * You should have received a copy of the GNU Lesser General Public * +# * License along with FreeCAD. If not, see * +# * . * +# * * +# *************************************************************************** + +__title__ = "FreeCAD FEM mesh netgen document object" +__author__ = "Mario Passaglia" +__url__ = "https://www.freecad.org" + +## @package mesh_netgen +# \ingroup FEM +# \brief mesh gmsh object + +from FreeCAD import Base +from . import base_fempythonobject + +_PropHelper = base_fempythonobject._PropHelper + + +class MeshNetgen(base_fempythonobject.BaseFemPythonObject): + """ + A Fem::FemMeshShapeBaseObject python type, add Netgen specific properties + """ + + Type = "Fem::FemMeshNetgen" + + def __init__(self, obj): + super().__init__(obj) + + for prop in self._get_properties(): + prop.add_to_object(obj) + + def _get_properties(self): + prop = [] + + prop.append( + _PropHelper( + type="App::PropertyString", + name="Optimize3d", + group="Mesh Parameters", + doc="3d optimization strategy.\n" + + "m: move nodes, M: move nodes, cheap functional\n" + + "s: swap faces, c: combine elements, d: divide elements,\n" + + "D: divide and join opposite edges, remove element,\n" + + "p: plot, no pause, P: plot, Pause,\n" + + "h: Histogramm, no pause, H: Histogramm, pause", + value="cmdDmustm", + ) + ) + prop.append( + _PropHelper( + type="App::PropertyEnumeration", + name="Fineness", + group="Mesh Parameters", + doc="Fineness", + value=["VeryCoarse", "Coarse", "Moderate", "Fine", "VeryFine", "UserDefined"], + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="OptimizationSteps3d", + group="Mesh Parameters", + doc="Number of 3d optimization steps", + value=3, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyString", + name="Optimize2d", + group="Mesh Parameters", + doc="2d optimization strategy.\n" + + "s: swap opt 6 lines/node, S: swap optimal elements,\n" + + "m: move nodes, p: plot, no pause\n" + + "P: plot, pause, c: combine", + value="smcmSmcmSmcm", + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="OptimizationSteps2d", + group="Mesh Parameters", + doc="Number of 2d optimization steps", + value=3, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="OptimizationErrorPower", + group="Mesh Parameters", + doc="Power of error to approximate max error optimization", + value=2.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="BlockFill", + group="Mesh Parameters", + doc="Do block filling", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyLength", + name="FillDistance", + group="Mesh Parameters", + doc="Block filling up to distance", + value=0.1, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="Safety", + group="Mesh Parameters", + doc="Radius of local environment (times h)", + value=5.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="RelinnerSafety", + group="Mesh Parameters", + doc="Radius of active environment (times h)", + value=3.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="LocalH", + group="Mesh Parameters", + doc="Use local h", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="UseLocalH", + group="Mesh Parameters", + doc="Use local H", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="GrowthRate", + group="Mesh Parameters", + doc="Grading for local h", + value=0.3, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="Delaunay", + group="Mesh Parameters", + doc="Use Delaunay for 3d meshing", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="Delaunay2d", + group="Mesh Parameters", + doc="Use Delaunay for 2d meshing", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyLength", + name="MaxSize", + group="Mesh Parameters", + doc="Maximal mesh size", + value="1000 mm", + ) + ) + prop.append( + _PropHelper( + type="App::PropertyLength", + name="MinSize", + group="Mesh Parameters", + doc="Minimal mesh size", + value="0 mm", + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="CloseEdgeFactor", + group="Mesh Parameters", + doc="Factor to restrict meshing based on close edges", + value=2.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="StartInSurface", + group="Mesh Parameters", + doc="Start surface meshing from everywhere in surface", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="CheckOverlap", + group="Mesh Parameters", + doc="Check overlapping surfaces", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="CheckOverlappingBoundary", + group="Mesh Parameters", + doc="Check overlapping surface mesh before volume meshing", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="CheckChartBoundary", + group="Mesh Parameters", + doc="Check chart boundary", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="CurvatureSafety", + group="Mesh Parameters", + doc="Safety factor for curvatures (elements per radius)", + value=2.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="SegmentsPerEdge", + group="Mesh Parameters", + doc="Minimal number of segments per edge", + value=2.0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="ElementSizeWeight", + group="Mesh Parameters", + doc="Weight of element size respect to element shape", + value=0.2, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="StartStep", + group="Mesh Parameters", + doc="Start at step", + value=0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="EndStep", + group="Mesh Parameters", + doc="EndStep", + value=6, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="GiveUpTolerance2d", + group="Mesh Parameters", + doc="Give up quality class, 2d meshing", + value=200, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="GiveUpTolerance", + group="Mesh Parameters", + doc="Give up quality class, 3d meshing", + value=10, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="GiveUpToleranceOpenQuads", + group="Mesh Parameters", + doc="Give up quality class, for closing open quads, greather than 100 for free pyramids", + value=15, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="MaxOuterSteps", + group="Mesh Parameters", + doc="Maximal outer steps", + value=10, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="StarShapeClass", + group="Mesh Parameters", + doc="Class starting star-shape filling", + value=5, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="BaseElementNp", + group="Mesh Parameters", + doc="If non-zero, baseelement must have BaseElementlNp points", + value=0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="Sloppy", + group="Mesh Parameters", + doc="Quality tolerances are handled less careful", + value=10, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyFloat", + name="BadElementLimit", + group="Mesh Parameters", + doc="Limit for max element angle (150-180)", + value=175, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="CheckImpossible", + group="Mesh Parameters", + doc="", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="Only3dDomainNr", + group="Mesh Parameters", + doc="", + value=0, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="SecondOrder", + group="Mesh Parameters", + doc="Second order element meshing", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="ElementOrder", + group="Mesh Parameters", + doc="High order element curvature", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="QuadDominated", + group="Mesh Parameters", + doc="Quad-dominated surface meshing", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="TryHexes", + group="Mesh Parameters", + doc="Try hexahedral elements", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="InvertTets", + group="Mesh Parameters", + doc="", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="InvertTrigs", + group="Mesh Parameters", + doc="", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="AutoZRefine", + group="Mesh Parameters", + doc="Automatic Z refine", + value=False, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="ParallelMeshing", + group="Mesh Parameters", + doc="Use parallel meshing", + value=True, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyInteger", + name="Threads", + group="Mesh Parameters", + doc="Number of threads for parallel meshing", + value=4, + ) + ) + prop.append( + _PropHelper( + type="App::PropertyBool", + name="HealShape", + group="Mesh Parameters", + doc="Heal shape before meshing", + value=False, + ) + ) + + return prop diff --git a/src/Mod/Fem/femtaskpanels/base_femmeshtaskpanel.py b/src/Mod/Fem/femtaskpanels/base_femmeshtaskpanel.py new file mode 100644 index 0000000000..aa4adb613a --- /dev/null +++ b/src/Mod/Fem/femtaskpanels/base_femmeshtaskpanel.py @@ -0,0 +1,188 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +# *************************************************************************** +# * Copyright (c) 2024 Mario Passaglia * +# * * +# * This file is part of FreeCAD. * +# * * +# * FreeCAD is free software: you can redistribute it and/or modify it * +# * under the terms of the GNU Lesser General Public License as * +# * published by the Free Software Foundation, either version 2.1 of the * +# * License, or (at your option) any later version. * +# * * +# * FreeCAD is distributed in the hope that it will be useful, but * +# * WITHOUT ANY WARRANTY; without even the implied warranty of * +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * +# * Lesser General Public License for more details. * +# * * +# * You should have received a copy of the GNU Lesser General Public * +# * License along with FreeCAD. If not, see * +# * . * +# * * +# *************************************************************************** + +__title__ = "FreeCAD FEM mesh base task panel for mesh object object" +__author__ = "Mario Passaglia" +__url__ = "https://www.freecad.org" + +## @package base_femmeshtaskpanel +# \ingroup FEM +# \brief base task panel for mesh object + +import time +import threading +from abc import ABC, abstractmethod + +from PySide import QtCore +from PySide import QtGui + +import FreeCAD + +from femtools.femutils import getOutputWinColor + +from . import base_femtaskpanel + + +class _Process(threading.Thread): + """ + Class for thread and subprocess manipulation + 'tool' argument must be an object with a 'compute' method + and a 'process' attribute of type Popen object + """ + + def __init__(self, tool): + self.tool = tool + self._timer = QtCore.QTimer() + self.success = False + self.update = False + self.error = "" + super().__init__(target=self.tool.compute) + QtCore.QObject.connect(self._timer, QtCore.SIGNAL("timeout()"), self._check) + + def init(self): + self._timer.start(100) + self.start() + + def run(self): + try: + self.success = self._target(*self._args, **self._kwargs) + except Exception as e: + self.error = str(e) + + def finish(self): + if self.tool.process: + self.tool.process.terminate() + self.join() + + def _check(self): + if not self.is_alive(): + self._timer.stop() + self.join() + if self.success: + try: + self.tool.update_properties() + self.update = True + except Exception as e: + self.error = str(e) + self.success = False + + +class _BaseMeshTaskPanel(base_femtaskpanel._BaseTaskPanel, ABC): + """ + Abstract base class for FemMesh object TaskPanel + """ + + def __init__(self, obj): + super().__init__(obj) + + self.tool = None + self.form = None + self.timer = QtCore.QTimer() + self.process = None + self.console_message = "" + + @abstractmethod + def set_mesh_params(self): + pass + + @abstractmethod + def get_mesh_params(self): + pass + + def getStandardButtons(self): + button_value = ( + QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Apply | QtGui.QDialogButtonBox.Cancel + ) + return button_value + + def accept(self): + if self.process and self.process.is_alive(): + FreeCAD.Console.PrintWarning("Process still running\n") + return None + + self.timer.stop() + QtGui.QApplication.restoreOverrideCursor() + self.set_mesh_params() + return super().accept() + + def reject(self): + self.timer.stop() + QtGui.QApplication.restoreOverrideCursor() + if self.process and self.process.is_alive(): + self.console_log("Process aborted", "#ff6700") + self.process.finish() + else: + return super().reject() + + def clicked(self, button): + if button == QtGui.QDialogButtonBox.Apply: + if self.process and self.process.is_alive(): + FreeCAD.Console.PrintWarning("Process already running\n") + return None + + self.set_mesh_params() + self.run_mesher() + + def console_log(self, message="", outputwin_color_type=None): + self.console_message = self.console_message + ( + '{:4.1f}: '.format( + getOutputWinColor("Logging"), time.time() - self.time_start + ) + ) + if outputwin_color_type: + self.console_message += '{}
'.format( + outputwin_color_type, message + ) + else: + self.console_message += message + "
" + self.form.te_output.setText(self.console_message) + self.form.te_output.moveCursor(QtGui.QTextCursor.End) + + def update_timer_text(self): + if self.process and self.process.is_alive(): + self.form.l_time.setText(f"Time: {time.time() - self.time_start:4.1f}: ") + else: + if self.process: + if self.process.success: + if not self.process.update: + return None + self.console_log("Success!", "#00AA00") + else: + self.console_log(self.process.error, "#AA0000") + self.timer.stop() + QtGui.QApplication.restoreOverrideCursor() + + def run_mesher(self): + self.process = _Process(self.tool) + self.timer.start(100) + self.time_start = time.time() + self.form.l_time.setText(f"Time: {time.time() - self.time_start:4.1f}: ") + self.console_message = "" + self.console_log("Start process...") + QtGui.QApplication.setOverrideCursor(QtCore.Qt.WaitCursor) + + self.process.init() + + def get_version(self): + full_message = self.tool.version() + QtGui.QMessageBox.information(None, "{} - Information".format(self.tool.name), full_message) diff --git a/src/Mod/Fem/femtaskpanels/task_mesh_gmsh.py b/src/Mod/Fem/femtaskpanels/task_mesh_gmsh.py index 9c35ba266c..32afdba764 100644 --- a/src/Mod/Fem/femtaskpanels/task_mesh_gmsh.py +++ b/src/Mod/Fem/femtaskpanels/task_mesh_gmsh.py @@ -29,24 +29,17 @@ __url__ = "https://www.freecad.org" # \ingroup FEM # \brief task panel for mesh gmsh object -import sys -import time - from PySide import QtCore -from PySide import QtGui -from PySide.QtCore import Qt -from PySide.QtGui import QApplication import FreeCAD import FreeCADGui -import FemGui -from femtools.femutils import is_of_type -from femtools.femutils import getOutputWinColor -from . import base_femtaskpanel +from femmesh import gmshtools + +from . import base_femmeshtaskpanel -class _TaskPanel(base_femtaskpanel._BaseTaskPanel): +class _TaskPanel(base_femmeshtaskpanel._BaseMeshTaskPanel): """ The TaskPanel for editing References property of MeshGmsh objects and creation of new FEM mesh @@ -58,16 +51,14 @@ class _TaskPanel(base_femtaskpanel._BaseTaskPanel): self.form = FreeCADGui.PySideUic.loadUi( FreeCAD.getHomePath() + "Mod/Fem/Resources/ui/MeshGmsh.ui" ) - self.Timer = QtCore.QTimer() - self.Timer.start(100) # 100 milli seconds - self.gmsh_runs = False - self.console_message_gmsh = "" + + self.tool = gmshtools.GmshTools(obj) QtCore.QObject.connect( - self.form.if_max, QtCore.SIGNAL("valueChanged(Base::Quantity)"), self.max_changed + self.form.qsb_max_size, QtCore.SIGNAL("valueChanged(Base::Quantity)"), self.max_changed ) QtCore.QObject.connect( - self.form.if_min, QtCore.SIGNAL("valueChanged(Base::Quantity)"), self.min_changed + self.form.qsb_min_size, QtCore.SIGNAL("valueChanged(Base::Quantity)"), self.min_changed ) QtCore.QObject.connect( self.form.cb_dimension, QtCore.SIGNAL("activated(int)"), self.choose_dimension @@ -75,40 +66,16 @@ class _TaskPanel(base_femtaskpanel._BaseTaskPanel): QtCore.QObject.connect( self.form.cb_order, QtCore.SIGNAL("activated(int)"), self.choose_order ) - QtCore.QObject.connect(self.Timer, QtCore.SIGNAL("timeout()"), self.update_timer_text) - QtCore.QObject.connect( - self.form.pb_get_gmsh_version, QtCore.SIGNAL("clicked()"), self.get_gmsh_version - ) - self.form.cb_dimension.addItems(self.obj.getEnumerationsOfProperty("ElementDimension")) self.form.cb_order.addItems(self.obj.getEnumerationsOfProperty("ElementOrder")) + QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.update_timer_text) + QtCore.QObject.connect( + self.form.pb_get_gmsh_version, QtCore.SIGNAL("clicked()"), self.get_version + ) self.get_mesh_params() - self.get_active_analysis() - self.update() - - def getStandardButtons(self): - button_value = ( - QtGui.QDialogButtonBox.Ok | QtGui.QDialogButtonBox.Apply | QtGui.QDialogButtonBox.Cancel - ) - return button_value - # show a OK, a apply and a Cancel button - # def reject() is called on Cancel button - # def clicked(self, button) is needed, to access the apply button - - def accept(self): - self.set_mesh_params() - return super().accept() - - def reject(self): - self.Timer.stop() - return super().reject() - - def clicked(self, button): - if button == QtGui.QDialogButtonBox.Apply: - self.set_mesh_params() - self.run_gmsh() + self.set_widgets() def get_mesh_params(self): self.clmax = self.obj.CharacteristicLengthMax @@ -122,42 +89,21 @@ class _TaskPanel(base_femtaskpanel._BaseTaskPanel): self.obj.ElementDimension = self.dimension self.obj.ElementOrder = self.order - def update(self): + def set_widgets(self): "fills the widgets" - self.form.if_max.setText(self.clmax.UserString) - self.form.if_min.setText(self.clmin.UserString) + self.form.qsb_max_size.setProperty("value", self.clmax) + FreeCADGui.ExpressionBinding(self.form.qsb_max_size).bind( + self.obj, "CharacteristicLengthMax" + ) + self.form.qsb_min_size.setProperty("value", self.clmin) + FreeCADGui.ExpressionBinding(self.form.qsb_min_size).bind( + self.obj, "CharacteristicLengthMin" + ) index_dimension = self.form.cb_dimension.findText(self.dimension) self.form.cb_dimension.setCurrentIndex(index_dimension) index_order = self.form.cb_order.findText(self.order) self.form.cb_order.setCurrentIndex(index_order) - def console_log(self, message="", outputwin_color_type=None): - self.console_message_gmsh = self.console_message_gmsh + ( - '{:4.1f}: '.format( - getOutputWinColor("Logging"), time.time() - self.Start - ) - ) - if outputwin_color_type: - if outputwin_color_type == "#00AA00": # Success is not part of output window parameters - self.console_message_gmsh += '{}
'.format( - outputwin_color_type, message - ) - else: - self.console_message_gmsh += '{}
'.format( - getOutputWinColor(outputwin_color_type), message - ) - else: - self.console_message_gmsh += message + "
" - self.form.te_output.setText(self.console_message_gmsh) - self.form.te_output.moveCursor(QtGui.QTextCursor.End) - - def update_timer_text(self): - # FreeCAD.Console.PrintMessage("timer1\n") - if self.gmsh_runs: - FreeCAD.Console.PrintMessage("timer2\n") - # FreeCAD.Console.PrintMessage("Time: {0:4.1f}: \n".format(time.time() - self.Start)) - self.form.l_time.setText(f"Time: {time.time() - self.Start:4.1f}: ") - def max_changed(self, base_quantity_value): self.clmax = base_quantity_value @@ -168,81 +114,10 @@ class _TaskPanel(base_femtaskpanel._BaseTaskPanel): if index < 0: return self.form.cb_dimension.setCurrentIndex(index) - self.dimension = str(self.form.cb_dimension.itemText(index)) # form returns unicode + self.dimension = self.form.cb_dimension.itemText(index) def choose_order(self, index): if index < 0: return self.form.cb_order.setCurrentIndex(index) - self.order = str(self.form.cb_order.itemText(index)) # form returns unicode - - def get_gmsh_version(self): - from femmesh import gmshtools - - version, full_message = gmshtools.GmshTools(self.obj, self.analysis).get_gmsh_version() - if version[0] and version[1] and version[2]: - messagebox = QtGui.QMessageBox.information - else: - messagebox = QtGui.QMessageBox.warning - messagebox(None, "Gmsh - Information", full_message) - - def run_gmsh(self): - from femmesh import gmshtools - - gmsh_mesh = gmshtools.GmshTools(self.obj, self.analysis) - QApplication.setOverrideCursor(Qt.WaitCursor) - part = self.obj.Shape - if ( - self.obj.MeshRegionList - and part.Shape.ShapeType == "Compound" - and ( - is_of_type(part, "FeatureBooleanFragments") - or is_of_type(part, "FeatureSlice") - or is_of_type(part, "FeatureXOR") - ) - ): - gmsh_mesh.outputCompoundWarning() - self.Start = time.time() - self.form.l_time.setText(f"Time: {time.time() - self.Start:4.1f}: ") - self.console_message_gmsh = "" - self.gmsh_runs = True - self.console_log("We are going to start ...") - self.get_active_analysis() - self.console_log("Start Gmsh ...") - error = "" - try: - error = gmsh_mesh.create_mesh() - except Exception: - error = sys.exc_info()[1] - FreeCAD.Console.PrintError(f"Unexpected error when creating mesh: {error}\n") - if error: - FreeCAD.Console.PrintWarning("Gmsh had warnings:\n") - FreeCAD.Console.PrintWarning(f"{error}\n") - self.console_log("Gmsh had warnings ...", "Warning") - self.console_log(error, "Error") - else: - FreeCAD.Console.PrintMessage("Clean run of Gmsh\n") - self.console_log("Clean run of Gmsh", "#00AA00") - self.console_log("Gmsh done!") - self.form.l_time.setText(f"Time: {time.time() - self.Start:4.1f}: ") - self.Timer.stop() - self.update() - QApplication.restoreOverrideCursor() - - def get_active_analysis(self): - analysis = FemGui.getActiveAnalysis() - if not analysis: - FreeCAD.Console.PrintLog("No active analysis, means no group meshing.\n") - self.analysis = None # no group meshing - else: - for m in analysis.Group: - if m.Name == self.obj.Name: - FreeCAD.Console.PrintLog(f"Active analysis found: {analysis.Name}\n") - self.analysis = analysis # group meshing - break - else: - FreeCAD.Console.PrintLog( - "Mesh is not member of active analysis, means no group meshing.\n" - ) - self.analysis = None # no group meshing - return + self.order = self.form.cb_order.itemText(index) diff --git a/src/Mod/Fem/femtaskpanels/task_mesh_netgen.py b/src/Mod/Fem/femtaskpanels/task_mesh_netgen.py new file mode 100644 index 0000000000..6675e0ad70 --- /dev/null +++ b/src/Mod/Fem/femtaskpanels/task_mesh_netgen.py @@ -0,0 +1,164 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +# *************************************************************************** +# * Copyright (c) 2024 Mario Passaglia * +# * * +# * This file is part of FreeCAD. * +# * * +# * FreeCAD is free software: you can redistribute it and/or modify it * +# * under the terms of the GNU Lesser General Public License as * +# * published by the Free Software Foundation, either version 2.1 of the * +# * License, or (at your option) any later version. * +# * * +# * FreeCAD is distributed in the hope that it will be useful, but * +# * WITHOUT ANY WARRANTY; without even the implied warranty of * +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * +# * Lesser General Public License for more details. * +# * * +# * You should have received a copy of the GNU Lesser General Public * +# * License along with FreeCAD. If not, see * +# * . * +# * * +# *************************************************************************** + +__title__ = "FreeCAD FEM mesh netgen task panel for mesh netgen object" +__author__ = "Mario Passaglia" +__url__ = "https://www.freecad.org" + +## @package task_mesh_netgen +# \ingroup FEM +# \brief task panel for mesh netgen object + +from PySide import QtCore + +import FreeCAD +import FreeCADGui + +from femmesh import netgentools + +from . import base_femmeshtaskpanel + + +class _TaskPanel(base_femmeshtaskpanel._BaseMeshTaskPanel): + """ + The TaskPanel for editing References property of + MeshNetgen objects and creation of new FEM mesh + """ + + def __init__(self, obj): + super().__init__(obj) + self.form = FreeCADGui.PySideUic.loadUi( + FreeCAD.getHomePath() + "Mod/Fem/Resources/ui/MeshNetgen.ui" + ) + + self.tool = netgentools.NetgenTools(obj) + + QtCore.QObject.connect( + self.form.qsb_max_size, + QtCore.SIGNAL("valueChanged(Base::Quantity)"), + self.max_size_changed, + ) + QtCore.QObject.connect( + self.form.qsb_min_size, + QtCore.SIGNAL("valueChanged(Base::Quantity)"), + self.min_size_changed, + ) + QtCore.QObject.connect( + self.form.dsb_seg_per_edge, + QtCore.SIGNAL("valueChanged(double)"), + self.seg_per_edge_changed, + ) + QtCore.QObject.connect( + self.form.dsb_curvature_safety, + QtCore.SIGNAL("valueChanged(double)"), + self.curvature_safety_changed, + ) + QtCore.QObject.connect( + self.form.dsb_growth_rate, + QtCore.SIGNAL("valueChanged(double)"), + self.growth_rate_changed, + ) + QtCore.QObject.connect( + self.form.ckb_second_order, QtCore.SIGNAL("toggled(bool)"), self.second_order_changed + ) + QtCore.QObject.connect( + self.form.cb_fineness, + QtCore.SIGNAL("currentIndexChanged(int)"), + self.fineness_changed, + ) + QtCore.QObject.connect(self.timer, QtCore.SIGNAL("timeout()"), self.update_timer_text) + QtCore.QObject.connect( + self.form.pb_get_netgen_version, QtCore.SIGNAL("clicked()"), self.get_version + ) + + self.get_mesh_params() + self.set_widgets() + + def get_mesh_params(self): + self.min_size = self.obj.MinSize + self.max_size = self.obj.MaxSize + self.fineness = self.obj.Fineness + self.growth_rate = self.obj.GrowthRate + self.curvature_safety = self.obj.CurvatureSafety + self.seg_per_edge = self.obj.SegmentsPerEdge + self.second_order = self.obj.SecondOrder + + def set_mesh_params(self): + self.obj.MinSize = self.min_size + self.obj.MaxSize = self.max_size + self.obj.Fineness = self.fineness + self.obj.GrowthRate = self.growth_rate + self.obj.CurvatureSafety = self.curvature_safety + self.obj.SegmentsPerEdge = self.seg_per_edge + self.obj.SecondOrder = self.second_order + + def set_widgets(self): + "fills the widgets" + self.form.qsb_max_size.setProperty("value", self.max_size) + FreeCADGui.ExpressionBinding(self.form.qsb_max_size).bind(self.obj, "MaxSize") + + self.form.qsb_min_size.setProperty("value", self.min_size) + FreeCADGui.ExpressionBinding(self.form.qsb_min_size).bind(self.obj, "MinSize") + + self.fineness_enum = self.obj.getEnumerationsOfProperty("Fineness") + index = self.fineness_enum.index(self.fineness) + self.form.cb_fineness.addItems(self.fineness_enum) + self.form.cb_fineness.setCurrentIndex(index) + self.form.dsb_growth_rate.setValue(self.growth_rate) + self.form.dsb_curvature_safety.setValue(self.curvature_safety) + self.form.dsb_seg_per_edge.setValue(self.seg_per_edge) + + self.form.ckb_second_order.setChecked(self.second_order) + + def max_size_changed(self, base_quantity_value): + self.max_size = base_quantity_value + + def min_size_changed(self, base_quantity_value): + self.min_size = base_quantity_value + + def seg_per_edge_changed(self, value): + self.seg_per_edge = value + + def curvature_safety_changed(self, value): + self.curvature_safety = value + + def growth_rate_changed(self, value): + self.growth_rate = value + + def fineness_changed(self, index): + self.fineness = self.fineness_enum[index] + if self.fineness == "UserDefined": + self.form.qsb_min_size.setEnabled(True) + self.form.qsb_max_size.setEnabled(True) + self.form.dsb_seg_per_edge.setEnabled(True) + self.form.dsb_growth_rate.setEnabled(True) + self.form.dsb_curvature_safety.setEnabled(True) + else: + self.form.qsb_min_size.setEnabled(False) + self.form.qsb_max_size.setEnabled(False) + self.form.dsb_seg_per_edge.setEnabled(False) + self.form.dsb_growth_rate.setEnabled(False) + self.form.dsb_curvature_safety.setEnabled(False) + + def second_order_changed(self, bool_value): + self.second_order = bool_value diff --git a/src/Mod/Fem/femtest/app/test_object.py b/src/Mod/Fem/femtest/app/test_object.py index 31cc829fb9..57471886cb 100644 --- a/src/Mod/Fem/femtest/app/test_object.py +++ b/src/Mod/Fem/femtest/app/test_object.py @@ -240,9 +240,7 @@ class TestObjectType(unittest.TestCase): ) self.assertEqual("Fem::MeshGroup", type_of_obj(ObjectsFem.makeMeshGroup(doc, mesh))) self.assertEqual("Fem::MeshRegion", type_of_obj(ObjectsFem.makeMeshRegion(doc, mesh))) - self.assertEqual( - "Fem::FemMeshShapeNetgenObject", type_of_obj(ObjectsFem.makeMeshNetgen(doc)) - ) + self.assertEqual("Fem::FemMeshNetgen", type_of_obj(ObjectsFem.makeMeshNetgen(doc))) self.assertEqual("Fem::MeshResult", type_of_obj(ObjectsFem.makeMeshResult(doc))) self.assertEqual("Fem::ResultMechanical", type_of_obj(ObjectsFem.makeResultMechanical(doc))) solverelmer = ObjectsFem.makeSolverElmer(doc) @@ -409,7 +407,7 @@ class TestObjectType(unittest.TestCase): ) self.assertTrue(is_of_type(ObjectsFem.makeMeshGroup(doc, mesh), "Fem::MeshGroup")) self.assertTrue(is_of_type(ObjectsFem.makeMeshRegion(doc, mesh), "Fem::MeshRegion")) - self.assertTrue(is_of_type(ObjectsFem.makeMeshNetgen(doc), "Fem::FemMeshShapeNetgenObject")) + self.assertTrue(is_of_type(ObjectsFem.makeMeshNetgen(doc), "Fem::FemMeshNetgen")) self.assertTrue(is_of_type(ObjectsFem.makeMeshResult(doc), "Fem::MeshResult")) self.assertTrue(is_of_type(ObjectsFem.makeResultMechanical(doc), "Fem::ResultMechanical")) solverelmer = ObjectsFem.makeSolverElmer(doc) @@ -745,7 +743,7 @@ class TestObjectType(unittest.TestCase): # FemMeshShapeNetgenObject mesh_netgen = ObjectsFem.makeMeshNetgen(doc) self.assertTrue(is_derived_from(mesh_netgen, "App::DocumentObject")) - self.assertTrue(is_derived_from(mesh_netgen, "Fem::FemMeshShapeNetgenObject")) + self.assertTrue(is_derived_from(mesh_netgen, "Fem::FemMeshShapeBaseObjectPython")) # MeshResult mesh_result = ObjectsFem.makeMeshResult(doc) @@ -972,7 +970,7 @@ class TestObjectType(unittest.TestCase): self.assertTrue(ObjectsFem.makeMeshGroup(doc, mesh).isDerivedFrom("Fem::FeaturePython")) self.assertTrue(ObjectsFem.makeMeshRegion(doc, mesh).isDerivedFrom("Fem::FeaturePython")) self.assertTrue( - ObjectsFem.makeMeshNetgen(doc).isDerivedFrom("Fem::FemMeshShapeNetgenObject") + ObjectsFem.makeMeshNetgen(doc).isDerivedFrom("Fem::FemMeshShapeBaseObjectPython") ) self.assertTrue(ObjectsFem.makeMeshResult(doc).isDerivedFrom("Fem::FemMeshObjectPython")) self.assertTrue( diff --git a/src/Mod/Fem/femviewprovider/view_mesh_netgen.py b/src/Mod/Fem/femviewprovider/view_mesh_netgen.py new file mode 100644 index 0000000000..34a60d3698 --- /dev/null +++ b/src/Mod/Fem/femviewprovider/view_mesh_netgen.py @@ -0,0 +1,158 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +# *************************************************************************** +# * Copyright (c) 2024 Mario Passaglia * +# * * +# * This file is part of FreeCAD. * +# * * +# * FreeCAD is free software: you can redistribute it and/or modify it * +# * under the terms of the GNU Lesser General Public License as * +# * published by the Free Software Foundation, either version 2.1 of the * +# * License, or (at your option) any later version. * +# * * +# * FreeCAD is distributed in the hope that it will be useful, but * +# * WITHOUT ANY WARRANTY; without even the implied warranty of * +# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * +# * Lesser General Public License for more details. * +# * * +# * You should have received a copy of the GNU Lesser General Public * +# * License along with FreeCAD. If not, see * +# * . * +# * * +# *************************************************************************** + +__title__ = "FreeCAD FEM mesh netgen ViewProvider for the document object" +__author__ = "Mario Passaglia" +__url__ = "https://www.freecad.org" + +## @package view_mesh_netgen +# \ingroup FEM +# \brief view provider for mesh netgen object + +import FreeCAD +import FreeCADGui + +import FemGui +from PySide import QtGui +from femtaskpanels import task_mesh_netgen +from femtools.femutils import is_of_type +from femviewprovider import view_base_femobject + + +class VPMeshNetgen(view_base_femobject.VPBaseFemObject): + """ + A View Provider for the MeshNetgen object + """ + + def __init__(self, vobj): + vobj.Proxy = self + + def getIcon(self): + return ":/icons/FEM_MeshNetgenFromShape.svg" + + def setEdit(self, vobj, mode): + # hide all FEM meshes and VTK FemPost* objects + for obj in vobj.Object.Document.Objects: + if obj.isDerivedFrom("Fem::FemMeshObject") or obj.isDerivedFrom("Fem::FemPostObject"): + obj.ViewObject.hide() + # show the mesh we like to edit + self.ViewObject.show() + # show task panel + taskd = task_mesh_netgen._TaskPanel(self.Object) + FreeCADGui.Control.showDialog(taskd) + return True + + def doubleClicked(self, vobj): + # Group meshing is only active on active analysis + # we should make sure the analysis the mesh belongs too is active + gui_doc = FreeCADGui.getDocument(vobj.Object.Document) + if not gui_doc.getInEdit(): + # may be go the other way around and just activate the + # analysis the user has doubleClicked on ?! + # not a fast one, we need to iterate over all member of all + # analysis to know to which analysis the object belongs too!!! + # first check if there is an analysis in the active document + found_an_analysis = False + for o in gui_doc.Document.Objects: + if o.isDerivedFrom("Fem::FemAnalysisPython"): + found_an_analysis = True + break + if found_an_analysis: + if FemGui.getActiveAnalysis() is not None: + if FemGui.getActiveAnalysis().Document is FreeCAD.ActiveDocument: + if self.Object in FemGui.getActiveAnalysis().Group: + if not gui_doc.getInEdit(): + gui_doc.setEdit(vobj.Object.Name) + else: + FreeCAD.Console.PrintError( + "Activate the analysis this Netgen FEM " + "mesh object belongs too!\n" + ) + else: + FreeCAD.Console.PrintMessage( + "Netgen FEM mesh object does not belong to the active analysis.\n" + ) + found_mesh_analysis = False + for o in gui_doc.Document.Objects: + if o.isDerivedFrom("Fem::FemAnalysisPython"): + for m in o.Group: + if m == self.Object: + found_mesh_analysis = True + FemGui.setActiveAnalysis(o) + FreeCAD.Console.PrintMessage( + "The analysis the Netgen FEM mesh object " + "belongs to was found and activated: {}\n".format( + o.Name + ) + ) + gui_doc.setEdit(vobj.Object.Name) + break + if not found_mesh_analysis: + FreeCAD.Console.PrintLog( + "Netgen FEM mesh object does not belong to an analysis. " + "Analysis group meshing can not be used.\n" + ) + gui_doc.setEdit(vobj.Object.Name) + else: + FreeCAD.Console.PrintError("Active analysis is not in active document.\n") + else: + FreeCAD.Console.PrintLog( + "No active analysis in active document, " + "we are going to have a look if the Netgen FEM mesh object " + "belongs to a non active analysis.\n" + ) + found_mesh_analysis = False + for o in gui_doc.Document.Objects: + if o.isDerivedFrom("Fem::FemAnalysisPython"): + for m in o.Group: + if m == self.Object: + found_mesh_analysis = True + FemGui.setActiveAnalysis(o) + FreeCAD.Console.PrintMessage( + "The analysis the Netgen FEM mesh object " + "belongs to was found and activated: {}\n".format(o.Name) + ) + gui_doc.setEdit(vobj.Object.Name) + break + if not found_mesh_analysis: + FreeCAD.Console.PrintLog( + "Netgen FEM mesh object does not belong to an analysis. " + "Analysis group meshing can not be used.\n" + ) + gui_doc.setEdit(vobj.Object.Name) + else: + FreeCAD.Console.PrintLog("No analysis in the active document.\n") + gui_doc.setEdit(vobj.Object.Name) + else: + from PySide.QtGui import QMessageBox + + message = "Active Task Dialog found! Please close this one before opening a new one!" + QMessageBox.critical(None, "Error in tree view", message) + FreeCAD.Console.PrintError(message + "\n") + return True + + def dumps(self): + return None + + def loads(self, state): + return None diff --git a/src/Mod/Help/Help.py b/src/Mod/Help/Help.py index 113bf3c627..65f8e62487 100644 --- a/src/Mod/Help/Help.py +++ b/src/Mod/Help/Help.py @@ -54,6 +54,9 @@ Defaults are to open the wiki in the desktop browser """ import os +import re +import urllib.request +import urllib.error import FreeCAD @@ -101,7 +104,7 @@ def show(page, view=None, conv=None): """ page = underscore_page(page) - location = get_location(page) + location, _pagename = get_location(page) FreeCAD.Console.PrintLog("Help: opening " + location + "\n") if not location: FreeCAD.Console.PrintError(LOCTXT + "\n") @@ -109,7 +112,10 @@ def show(page, view=None, conv=None): md = get_contents(location) html = convert(md, conv) baseurl = get_uri(location) - pagename = os.path.basename(page.replace("_", " ").replace(".md", "")) + if _pagename != "": + pagename = _pagename + else: + pagename = os.path.basename(page.replace("_", " ").replace(".md", "")) title = translate("Help", "Help") + ": " + pagename if FreeCAD.GuiUp: if PREFS.GetBool("optionTab", False) and get_qtwebwidgets(): @@ -150,6 +156,27 @@ def get_uri(location): return baseurl +def location_url(url_localized: str, url_english: str) -> tuple: + """ + Returns localized documentation url and page name, if they exist, + otherwise defaults to english version. + """ + try: + req = urllib.request.Request(url_localized) + with urllib.request.urlopen(req) as response: + html = response.read().decode("utf-8") + if re.search(r"https://wiki.freecad.org", url_localized): + pagename_match = re.search(r"(.*?) - .*?", html) + else: + pagename_match = re.search(r"Name/.*?:\s*(.+)", html) + if pagename_match is not None: + return (url_localized, pagename_match.group(1)) + else: + return (url_localized, "") + except urllib.error.HTTPError as e: + return (url_english, "") + + def get_location(page): """retrieves the location (online or offline) of a given page""" @@ -166,24 +193,33 @@ def get_location(page): page = page.replace("wiki/", "") page = page.split("#")[0] suffix = PREFS.GetString("Suffix", "") + pagename = "" if suffix: if not suffix.startswith("/"): suffix = "/" + suffix if PREFS.GetBool("optionWiki", True): # default - location = WIKI_URL + "/" + page + suffix + location, pagename = location_url(WIKI_URL + "/" + page + suffix, WIKI_URL + "/" + page) elif PREFS.GetBool("optionMarkdown", False): if PREFS.GetBool("optionBrowser", False): location = MD_RENDERED_URL else: location = MD_RAW_URL if suffix: - location += "/" + MD_TRANSLATIONS_FOLDER + suffix - location += "/" + page + ".md" + location, pagename = location_url( + location + "/" + MD_TRANSLATIONS_FOLDER + suffix + "/" + page + ".md", + location + "/" + page + ".md", + ) + else: + location += "/" + page + ".md" elif PREFS.GetBool("optionGithub", False): location = MD_RENDERED_URL if suffix: - location += "/" + MD_TRANSLATIONS_FOLDER + suffix - location += "/" + page + ".md" + location, pagename = location_url( + location + "/" + MD_TRANSLATIONS_FOLDER + suffix + "/" + page + ".md", + location + "/" + page + ".md", + ) + else: + location += "/" + page + ".md" elif PREFS.GetBool("optionCustom", False): location = PREFS.GetString("Location", "") if not location: @@ -195,7 +231,7 @@ def get_location(page): "wiki", ) location = os.path.join(location, page + ".md") - return location + return (location, pagename) def show_browser(url): diff --git a/src/Mod/Help/Resources/translations/Help.ts b/src/Mod/Help/Resources/translations/Help.ts index 74635e4ef7..190daf2ce2 100644 --- a/src/Mod/Help/Resources/translations/Help.ts +++ b/src/Mod/Help/Resources/translations/Help.ts @@ -136,27 +136,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help @@ -164,7 +164,7 @@ Markdown version above. QObject - + General diff --git a/src/Mod/Help/Resources/translations/Help_be.ts b/src/Mod/Help/Resources/translations/Help_be.ts index 309f861566..df2f26ecb7 100644 --- a/src/Mod/Help/Resources/translations/Help_be.ts +++ b/src/Mod/Help/Resources/translations/Help_be.ts @@ -144,31 +144,31 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Змест старонкі не атрымалася здабыць. Калі ласка, праверце налады ў меню Змяніць -> Перавагі -> Агульныя -> Даведка - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Не атрымалася вызначыць месцазнаходжанне файлаў даведкі. Калі ласка, праверце налады ў меню Змяніць -> Перавагі -> Агульныя -> Даведка - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Модуль Pyside QtWebEngineWidgets недаступны. Візуалізацыя даведкі выконваецца з дапамогай сістэмнага інтэрнэт-аглядальніка - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. У вашай сістэме не ўсталяваныя сродак візуалізацыі Markdown, таму гэтая старонка даведкі адлюстроўваецца як ёсць. Калі ласка, усталюйце модулі Python - Markdown ці Pandoc, каб палепшыць адлюстраванне гэтай старонкі. - + Help Даведка @@ -176,7 +176,7 @@ Markdown version above. QObject - + General Асноўныя diff --git a/src/Mod/Help/Resources/translations/Help_ca.ts b/src/Mod/Help/Resources/translations/Help_ca.ts index d1853781c7..e248bf65bb 100644 --- a/src/Mod/Help/Resources/translations/Help_ca.ts +++ b/src/Mod/Help/Resources/translations/Help_ca.ts @@ -144,27 +144,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help No s'ha pogut obtenir el contingut d'aquesta pàgina. Si us plau, comprovi la configuració en el menú Editar-> Preferències -> General -> Ajuda - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help No s'ha pogut determinar la ubicació dels fitxers d'ajuda. Si us plau, comprovi la configuració en el menú Editar-> Preferències -> General -> Ajuda - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser El mòdul QtWebEngineWidgets de PySide no està disponible. La renderització de l'ajuda s'efectua mitjançant el navegador web del sistema - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. No hi ha cap renderitzador de Markdown instal·lat al vostre sistema, de manera que aquesta pàgina d'ajuda es representa tal qual. Instal·leu els mòduls Python Markdown o Pandoc per millorar la representació d'aquesta pàgina. - + Help Ajuda @@ -172,7 +172,7 @@ Markdown version above. QObject - + General General diff --git a/src/Mod/Help/Resources/translations/Help_cs.ts b/src/Mod/Help/Resources/translations/Help_cs.ts index 1c9ef021fc..52cb02a730 100644 --- a/src/Mod/Help/Resources/translations/Help_cs.ts +++ b/src/Mod/Help/Resources/translations/Help_cs.ts @@ -150,27 +150,27 @@ To vyžaduje komponentu PySide QtWebengineWidgets. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Obsah této stránky nelze načíst. Zkontrolujte prosím nastavení v menu Upravit -> Nastavení -> Obecné -> Nápověda - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Umístění souborů nápovědy nelze určit. Zkontrolujte prosím nastavení v menu Upravit -> Nastavení -> Obecné -> Nápověda - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Modul PySide QtWebEngineWidgets není k dispozici. Vykreslování nápovědy je provedeno systémovým prohlížečem. - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Na vašem systému není nainstalován žádný vykreslovač Markdownu, takže tato stránka nápovědy je vykreslena tak, jak je. Nainstalujte prosím moduly Markdown nebo Pandoc pro Python pro vylepšení vykreslování této stránky. - + Help Nápověda @@ -178,7 +178,7 @@ To vyžaduje komponentu PySide QtWebengineWidgets. QObject - + General Obecné diff --git a/src/Mod/Help/Resources/translations/Help_da.ts b/src/Mod/Help/Resources/translations/Help_da.ts index 86932ffccb..698da2379a 100644 --- a/src/Mod/Help/Resources/translations/Help_da.ts +++ b/src/Mod/Help/Resources/translations/Help_da.ts @@ -149,27 +149,27 @@ Markdown versionen ovenfor. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Indholdet fra denne side kunne ikke hentes. Kontroller indstillingerne under menuen Rediger -> Indstillinger -> Generelt -> Hjælp - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Placeringen af hjælpefiler kunne ikke bestemmes. Kontroller indstillingerne under menuen Rediger -> Indstillinger -> Generelt -> Hjælp - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Modulet, PySide QtWebEngineWidgets, er ikke tilgængeligt. Visning af hjælp foretages med Webbrowseren - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Hjælp @@ -177,7 +177,7 @@ Markdown versionen ovenfor. QObject - + General Generel diff --git a/src/Mod/Help/Resources/translations/Help_de.qm b/src/Mod/Help/Resources/translations/Help_de.qm index 365cdc1448..7c97d18c96 100644 Binary files a/src/Mod/Help/Resources/translations/Help_de.qm and b/src/Mod/Help/Resources/translations/Help_de.qm differ diff --git a/src/Mod/Help/Resources/translations/Help_de.ts b/src/Mod/Help/Resources/translations/Help_de.ts index 20afcbdb98..4bd5f3e7a3 100644 --- a/src/Mod/Help/Resources/translations/Help_de.ts +++ b/src/Mod/Help/Resources/translations/Help_de.ts @@ -26,12 +26,12 @@ the default location ($USERAPPDATADIR/Mod/offline-documentation). Custom location - Benutzerdefinierter Ablageort + Benutzerdefinierter Standort Translation suffix: - Übersetzungskennzeichen: + Übersetzungsendung: @@ -53,15 +53,15 @@ This is currently not available... A translation suffix to use, for example "fr" to get French translation of the documentation. - Ein Übersetzungskennzeichen, das verwendet wird, wie beispielsweise "de", - um die deutsche Übersetzung der Dokumentation zu erhalten. + Eine zu verwendende Übersetzungsendung, zum Beispiel "fr" +um die französische Übersetzung der Dokumentation zu erhalten. The documentation pages will be fetched from the official FreeCADwiki at https://wiki.freecad.org - Die Seiten der Dokumentation werden aus dem offiziellen -FreeCAD-Wiki auf https://wiki.freecad.org geholt + Die Dokumentationsseiten werden aus dem offiziellen +FreeCADwiki unter https://wiki.freecad.org geholt @@ -69,16 +69,15 @@ FreeCAD-Wiki auf https://wiki.freecad.org geholt of the FreeCAD wiki,hosted on FreeCAD's GitHub account. This can be styled with a custom stylesheet below and can look nicer than the wiki option. The 'Markdown' or 'Pandoc' Python module should be installed for optimal results. - Die Seiten der Dokumentation werden von einer automatischen Markdown-Umwandlung -des FreeCAD-Wikis geholt, die auf FreeCADs GitHub-Account gehostet wird. Diese kann mit einem -selbsterstellten Stylesheet weiter unten angepasst werden und dadurch netter aussehen, -als die Wiki-Version. Für optimale Ergebnisse sollte das Python-Modul 'Markdown' -oder 'Pandoc' installiert sein. + Die Dokumentationsseiten werden aus einer automatischen Markdown Konvertierung +des FreeCAD Wikis geholt, das auf FreeCAD's GitHub Account bereitgestellt wird. Dies kann mit einer +benutzerdefinierten Formatvorlage gestaltet werden und kann schöner aussehen als die Wiki Option. Die 'Markdown' oder +'Pandoc' Python Module sollten für optimale Ergebnisse installiert werden. Markdown version (online) - Markdown-Version (online) + Markdown Version (online) @@ -88,24 +87,24 @@ oder 'Pandoc' installiert sein. Note: if PySide Web components are not found on your system, help pages will open in your default web browser regardless of the options below - Hinweis: Wenn PySide-Web-Komponenten nicht auf dem System gefunden werden, werden Hilfe-Seiten im Standard-Webbrowser geöffnet, unabhängig von den folgenden Optionen + Hinweis: Wenn keine PySide Web Komponenten auf deinem System gefunden werden, werden die Hilfeseiten unabhängig von den untenstehenden Optionen in deinem Standard Webbrowser geöffnet In a FreeCAD tab - In einem FreeCAD-Tab + In einem FreeCAD Reiter The documentation will open in your default web browser. - Die Dokumentation wird im voreingestellten Webbrowser geöffnet. + Die Dokumentation wird in deinem Standard Webbrowser geöffnet. The documentation will open in a dockable dialog inside the FreeCAD window, which allows you to keep it open while working in the 3D view. This requires the PySide QtWebengineWidgets component - Die Dokumentation wird in einem andockbaren Dialog innerhalb des FreeCAD-Fensters geöffnet, -dadurch kann der Dialog geöffnet bleiben, während man in der 3D-Ansicht weiterarbeitet. Dies erfordert die PySide-Komponente QtWebengineWidgets + Die Dokumentation wird in einem andockbaren Dialog des FreeCAD Fensters geöffnet, +der es dir ermöglicht, ihn geöffnet zu halten, während du in der 3D Ansicht arbeitest. Dies erfordert die PySide QtWebengineWidgets Komponente @@ -145,27 +144,27 @@ Markdown Version ausgewählt ist. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Inhalte für diese Seite konnten nicht abgerufen werden. Bitte die Einstellungen im Menü Bearbeiten -> Einstellungen -> Allgemein -> Hilfe überprüfen - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Der Speicherort der Hilfedateien konnte nicht ermittelt werden. Bitte die Einstellungen im Menü Bearbeiten -> Einstellungen -> Allgemein -> Hilfe überprüfen - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets Modul ist nicht verfügbar. Die Hilfe wird über den System-Browser aufgerufen - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Es ist kein Markdown-Renderer auf dem System installiert, daher wird diese Hilfeseite so dargestellt, wie sie ist. Bitte die Markdown- oder Pandoc-Python-Module installieren, um die Darstellung dieser Seite zu verbessern. - + Help Hilfe @@ -173,7 +172,7 @@ Markdown Version ausgewählt ist. QObject - + General Allgemein diff --git a/src/Mod/Help/Resources/translations/Help_el.ts b/src/Mod/Help/Resources/translations/Help_el.ts index a881a96225..4d436856db 100644 --- a/src/Mod/Help/Resources/translations/Help_el.ts +++ b/src/Mod/Help/Resources/translations/Help_el.ts @@ -144,27 +144,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Δεν ήταν δυνατή η ανάκτηση του περιεχομένου αυτής της σελίδας. Ελέγξτε τις ρυθμίσεις στο μενού Επεξεργασία -> Προτιμήσεις -> Γενικά -> Βοήθεια - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Δεν ήταν δυνατός ο προσδιορισμός της τοποθεσίας των αρχείων βοήθειας. Παρακαλώ ελέγξτε τις ρυθμίσεις στο μενού Επεξεργασία -> Προτιμήσεις -> General -> Βοήθεια - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Η λειτουργική μονάδα PySide QtWebEngineWidgets δεν είναι διαθέσιμη. Η απόδοση της βοήθειας πραγματοποιείται με το πρόγραμμα περιήγησης συστήματος - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Δεν υπάρχει εγκατεστημένο πρόγραμμα απόδοσης Markdown στο σύστημά σας, επομένως αυτή η σελίδα βοήθειας αποδίδεται ως έχει. Εγκαταστήστε τις λειτουργικές μονάδες Markdown ή Pandoc Python για να βελτιώσετε την απόδοση αυτής της σελίδας. - + Help Βοήθεια @@ -172,7 +172,7 @@ Markdown version above. QObject - + General Γενικές diff --git a/src/Mod/Help/Resources/translations/Help_es-AR.ts b/src/Mod/Help/Resources/translations/Help_es-AR.ts index 5ee44ad7b6..e87e475095 100644 --- a/src/Mod/Help/Resources/translations/Help_es-AR.ts +++ b/src/Mod/Help/Resources/translations/Help_es-AR.ts @@ -148,27 +148,27 @@ Markdown. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help No se pudo recuperar el contenido de esta página. Por favor, compruebe la configuración en el menú Editar -> Preferencias -> General -> Ayuda - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help No se ha podido determinar la ubicación de los archivos de ayuda. Por favor, compruebe la configuración en el menú Editar -> Preferencias -> General -> Ayuda - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser El módulo PySide QtWebEngineWidgets no está disponible. El renderizado de ayuda se realiza con el navegador del sistema - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. No hay ningún renderizador Markdown instalado en su sistema, así que esta página de ayuda se muestra como tal. Por favor, instale los módulos Python de Markdown o Pandoc para mejorar la presentación de esta página. - + Help Ayuda @@ -176,7 +176,7 @@ Markdown. QObject - + General General diff --git a/src/Mod/Help/Resources/translations/Help_es-ES.ts b/src/Mod/Help/Resources/translations/Help_es-ES.ts index 95bd96ebb9..f4b6dfd639 100644 --- a/src/Mod/Help/Resources/translations/Help_es-ES.ts +++ b/src/Mod/Help/Resources/translations/Help_es-ES.ts @@ -144,27 +144,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help No se pudo recuperar el contenido de esta página. Por favor, compruebe la configuración en el menú Editar -> Preferencias -> General -> Ayuda - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help No se ha podido determinar la ubicación de los archivos de ayuda. Por favor, compruebe la configuración en el menú Editar -> Preferencias -> General -> Ayuda - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser El módulo QtWebEngineWidgets de PySide no está disponible. La representación de la ayuda se efectúa mediante el navegador web del sistema - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. No hay ningún renderizador Markdown instalado en su sistema, así que esta página de ayuda se muestra como tal. Por favor, instale los módulos python de Markdown o Pandoc para mejorar la presentación de esta página. - + Help Ayuda @@ -172,7 +172,7 @@ Markdown version above. QObject - + General General diff --git a/src/Mod/Help/Resources/translations/Help_eu.ts b/src/Mod/Help/Resources/translations/Help_eu.ts index 9e261d12c9..0d36bb644f 100644 --- a/src/Mod/Help/Resources/translations/Help_eu.ts +++ b/src/Mod/Help/Resources/translations/Help_eu.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Orri honen edukiak ezin dira atzitu. Egiaztatu ezarpenak ongi daudela 'Editatu -> Hobespenak -> Orokorra -> Laguntza' atalean - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Ezin izan da zehaztu laguntza-fitxategiak non dauden. Egiaztatu ezarpenak ongi daudela 'Editatu -> Hobespenak -> Orokorra -> Laguntza' atalean - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Laguntza @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Orokorra diff --git a/src/Mod/Help/Resources/translations/Help_fi.ts b/src/Mod/Help/Resources/translations/Help_fi.ts index 893f267293..2ad34c10f5 100644 --- a/src/Mod/Help/Resources/translations/Help_fi.ts +++ b/src/Mod/Help/Resources/translations/Help_fi.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets -moduulia ei ole saatavilla. Ohjeen renderöinti tapahtuu järjestelmän oletusselaimella - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Ohje @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Yleiset diff --git a/src/Mod/Help/Resources/translations/Help_fr.ts b/src/Mod/Help/Resources/translations/Help_fr.ts index 3e4bcd168f..ba72476abb 100644 --- a/src/Mod/Help/Resources/translations/Help_fr.ts +++ b/src/Mod/Help/Resources/translations/Help_fr.ts @@ -136,27 +136,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Le contenu de cette page n'a pas pu être récupéré. Vérifier les paramètres dans le menu Édition/Préférences/Générales/Aides - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help L'emplacement des fichiers d'aide n'a pas pu être déterminé. Vérifier les paramètres dans le menu Édition/Préférences/Générales/Aides - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Le module QtWebEngineWidgets de PySide n'est pas disponible. Le rendu de l'aide est effectué avec le navigateur du système. - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Le moteur de rendu Markdown n'est pas installé sur votre système, cette page d'aide est donc rendue telle quelle. Installer les modules Python "Markdown" ou "Pandoc" pour améliorer le rendu de cette page. - + Help Aide @@ -164,7 +164,7 @@ Markdown version above. QObject - + General Général diff --git a/src/Mod/Help/Resources/translations/Help_hr.ts b/src/Mod/Help/Resources/translations/Help_hr.ts index d27c0b35a0..9dc65e2c34 100644 --- a/src/Mod/Help/Resources/translations/Help_hr.ts +++ b/src/Mod/Help/Resources/translations/Help_hr.ts @@ -144,27 +144,27 @@ Ova opcija će raditi samo ako ste odabrali Markdown verziju gore. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Sadržaj ove stranice nije moguće preuzeti. Molimo provjerite postavke u izborniku Uredi -> Postavke -> Opće -> Pomoć. - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Mjesto datoteka za pomoć ne može se odrediti.. Molimo provjerite postavke u izborniku Uredi -> Postavke -> Opće -> Pomoć. - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Pomoć @@ -172,7 +172,7 @@ Ova opcija će raditi samo ako ste odabrali Markdown verziju gore. QObject - + General Općenito diff --git a/src/Mod/Help/Resources/translations/Help_hu.ts b/src/Mod/Help/Resources/translations/Help_hu.ts index ff07d39afd..20b3ad48b4 100644 --- a/src/Mod/Help/Resources/translations/Help_hu.ts +++ b/src/Mod/Help/Resources/translations/Help_hu.ts @@ -144,27 +144,27 @@ Markdown fenti verziót választotta. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Az oldal tartalma nem volt elérhető. Kérjük, ellenőrizze a beállításokat a Szerkesztés -> Beállítások -> Általános -> Súgó menüpontban - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help A súgófájlok helyét nem sikerült meghatározni. Kérjük, ellenőrizze a beállításokat a Szerkesztés -> Beállítások -> Általános -> Súgó menüben - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser A PySide QtWebEngineWidgets modul nem elérhető. A súgó megjelenítése a rendszer böngészőjével történik - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Nincs telepítve Markdown renderelő az Ön rendszerén, így ez a súgóoldal úgy jelenik meg, ahogy van. Kérjük, telepítse a Markdown vagy Pandoc Python modulokat, hogy javítsa az oldal megjelenítését. - + Help Súgó @@ -172,7 +172,7 @@ Markdown fenti verziót választotta. QObject - + General Általános diff --git a/src/Mod/Help/Resources/translations/Help_it.ts b/src/Mod/Help/Resources/translations/Help_it.ts index 19b9e6b195..157107ae22 100644 --- a/src/Mod/Help/Resources/translations/Help_it.ts +++ b/src/Mod/Help/Resources/translations/Help_it.ts @@ -149,27 +149,27 @@ Markdown sopra. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Non è stato possibile recuperare i contenuti di questa pagina. Controlla le impostazioni nel menu Modifica -> Preferenze -> Generale -> Aiuto - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Impossibile determinare la posizione dei file di aiuto. Controlla le impostazioni nel menu Modifica -> Preferenze -> Generale -> Aiuto - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Il modulo PySide QtWebEngineWidgets non è disponibile. Il rendering della guida è fatto con il browser di sistema - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Non c'è nessun visualizzatore Markdown installato sul sistema, quindi questa pagina di aiuto viene resa come è. Installare i moduli Markdown o Pandoc Python per migliorare il rendering di questa pagina. - + Help Aiuto @@ -177,7 +177,7 @@ Markdown sopra. QObject - + General Generale diff --git a/src/Mod/Help/Resources/translations/Help_ja.ts b/src/Mod/Help/Resources/translations/Help_ja.ts index 15ce963077..fc32cf1bcf 100644 --- a/src/Mod/Help/Resources/translations/Help_ja.ts +++ b/src/Mod/Help/Resources/translations/Help_ja.ts @@ -139,27 +139,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help このページのコンテンツを取得できませんでした。メニューの 編集 -> 設定 -> 全般 -> ヘルプ にある設定を確認してください。 - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help ヘルプファイルの場所が特定できませんでした。メニューの 編集 -> 設定 -> 全般 -> ヘルプ にある設定を確認してください。 - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgetsモジュールは利用できません。システムブラウザによる補助レンダリングが行なわれました。 - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. システムにMarkdownレンダラーがインストールされていないため、このヘルプページはそのままレンダリングされます。このページのレンダリングを改善するには、MarkdownまたはPandoc Pythonモジュールをインストールしてください。 - + Help ヘルプ @@ -167,7 +167,7 @@ Markdown version above. QObject - + General 標準 diff --git a/src/Mod/Help/Resources/translations/Help_ka.ts b/src/Mod/Help/Resources/translations/Help_ka.ts index 9b03f76ac9..46b3072bf8 100644 --- a/src/Mod/Help/Resources/translations/Help_ka.ts +++ b/src/Mod/Help/Resources/translations/Help_ka.ts @@ -138,27 +138,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help ამ გვერდის შემცველობის მიღება შეუძლებელია. შეამოწმეთ პარამეტრები მენიუში ჩასწორება -> გამართვა -> ზოგადი -> დახმარება - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help დახმარების ფაილების მდებარეობა აღმოჩენილი არაა. გადაამოწმეთ პარამეტრები მენიუში ჩასწორება -> გამართვა -> ზოგადი -> დახმარება - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets მოდული ხელმისაწვდომი არაა. დახმარების რენდერი სისტემური ბრაუზერით ხდება - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. სისტემაში Markdown-ის რენდერერი დაყენებული არაა, ასე რომ, დახმარების გვერდები პირველადი სახით იქნება ნაჩვენები. ამ გვერდის საბოლოო სახის გასაუმჯობესებლად დააყენეთ Python-ის markdown ან pandoc მოდული. - + Help დახმარება @@ -166,7 +166,7 @@ Markdown version above. QObject - + General ზოგადი diff --git a/src/Mod/Help/Resources/translations/Help_ko.ts b/src/Mod/Help/Resources/translations/Help_ko.ts index 8a80046985..0bb81d8b74 100644 --- a/src/Mod/Help/Resources/translations/Help_ko.ts +++ b/src/Mod/Help/Resources/translations/Help_ko.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help 도움말 @@ -177,7 +177,7 @@ Markdown version above. QObject - + General 일반 diff --git a/src/Mod/Help/Resources/translations/Help_lt.ts b/src/Mod/Help/Resources/translations/Help_lt.ts index 0754b59d11..c8701c3448 100644 --- a/src/Mod/Help/Resources/translations/Help_lt.ts +++ b/src/Mod/Help/Resources/translations/Help_lt.ts @@ -139,27 +139,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Šio puslapio turinio nepavyko nuskaityti. Patikrinkite nustatymus meniu Taisyti -> Parinktys –> Bendrosios –> Žinynas - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Žinyno failų talpinimo vietos nepavyko nustatyti. Patikrinkite nustatymus meniu Taisyti -> Parinktys –> Bendrosios –> Žinynas - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets modulis nepasiekiamas. Žinyno atvaizdavimas atliekamas naudojant sistemos naršyklę - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Jūsų sistemoje neįdiegtas „Markdown“ atvaizdavimo įrankis, todėl šis žinyno puslapis pateikiamas toks, koks yra. Įdiekite „Markdown“ arba „Pandoc“ Python'o modulius, kad pagerintumėte šio puslapio atvaizdavimą. - + Help Žinynas @@ -167,7 +167,7 @@ Markdown version above. QObject - + General Bendrosios diff --git a/src/Mod/Help/Resources/translations/Help_nl.ts b/src/Mod/Help/Resources/translations/Help_nl.ts index 9e9a40e5e6..4a6d7a7bab 100644 --- a/src/Mod/Help/Resources/translations/Help_nl.ts +++ b/src/Mod/Help/Resources/translations/Help_nl.ts @@ -142,27 +142,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help De locatie van de helpbestanden kon niet worden bepaald. Controleer de instellingen onder menu -Bewerken- -Voorkeuren- -Algemeen- Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help De locatie van de helpbestanden kon niet worden bepaald. Controleer de instellingen onder menu -Bewerken- -Voorkeuren- -Algemeen- Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser De -PySide2 QtWebEngineWidgets- module is niet beschikbaar. Het weergeven van Help wordt gedaan met de Web module - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Er is geen markdown renderer geïnstalleerd op uw systeem, dus deze help pagina wordt weergegeven -als is-. Installeer de -markdown- of -pandoc- python modules om de weergave van deze pagina te verbeteren. - + Help Help @@ -170,7 +170,7 @@ Markdown version above. QObject - + General Algemeen diff --git a/src/Mod/Help/Resources/translations/Help_pl.ts b/src/Mod/Help/Resources/translations/Help_pl.ts index e36aca95e9..5927fbce5e 100644 --- a/src/Mod/Help/Resources/translations/Help_pl.ts +++ b/src/Mod/Help/Resources/translations/Help_pl.ts @@ -142,28 +142,28 @@ Wymaga to komponentu PySide QtWebengineWidgets Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Nie można pobrać zawartości tej strony. Sprawdź ustawienia w menu Edycja→Preferencje ... → Ogólne → Pomoc - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Nie można określić lokalizacji plików pomocy. Sprawdź ustawienia w menu Edycja → Preferencje → Ogólne → Pomoc - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Moduł PySide2 QtWebEngineWidgets nie jest dostępny. Renderowanie Pomocy odbywa się za pomocą przeglądarki z twojego systemu. - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. W systemie nie ma zainstalowanego renderera Markdown, więc ta strona pomocy jest renderowana tak, jak jest. Zainstaluj moduły Markdown lub Pandoc Python, aby poprawić jakość renderowania tej strony. - + Help Pomoc @@ -171,7 +171,7 @@ Renderowanie Pomocy odbywa się za pomocą przeglądarki z twojego systemu. QObject - + General Ogólne diff --git a/src/Mod/Help/Resources/translations/Help_pt-BR.ts b/src/Mod/Help/Resources/translations/Help_pt-BR.ts index b48371e3f4..be8e3dea8a 100644 --- a/src/Mod/Help/Resources/translations/Help_pt-BR.ts +++ b/src/Mod/Help/Resources/translations/Help_pt-BR.ts @@ -136,27 +136,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help O conteúdo desta página não pôde ser recuperado. Por favor, verifique as configurações no menu Editar -> Preferências -> Geral -> Ajuda - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Não foi possível determinar o local dos arquivos de ajuda. Por favor, verifique as configurações no menu Editar -> Preferências -> Geral -> Ajuda - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser O módulo PySide QtWebEngineWidgets está indisponível. A ajuda é mostrada no navegador do sistema - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. Não há nenhum renderizador markdown instalado em seu sistema, por tanto esta página de ajuda não será renderizada. Instale os módulos python "markdown" ou "pandoc" para melhorar a renderização desta página. - + Help Ajuda @@ -164,7 +164,7 @@ Markdown version above. QObject - + General Geral diff --git a/src/Mod/Help/Resources/translations/Help_pt-PT.ts b/src/Mod/Help/Resources/translations/Help_pt-PT.ts index 495111577b..1a1df83c2e 100644 --- a/src/Mod/Help/Resources/translations/Help_pt-PT.ts +++ b/src/Mod/Help/Resources/translations/Help_pt-PT.ts @@ -148,27 +148,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Ajuda @@ -176,7 +176,7 @@ Markdown version above. QObject - + General Geral diff --git a/src/Mod/Help/Resources/translations/Help_ro.ts b/src/Mod/Help/Resources/translations/Help_ro.ts index 9a1c7b1514..428e7a0986 100644 --- a/src/Mod/Help/Resources/translations/Help_ro.ts +++ b/src/Mod/Help/Resources/translations/Help_ro.ts @@ -148,27 +148,27 @@ de mai sus. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Conţinutul acestei pagini nu a putut fi preluat. Vă rugăm să verificaţi setările în meniul Editare -> Preferințe -> General -> Ajutor - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Locația fișierelor de ajutor nu a putut fi determinată. Vă rugăm să verificați setările în meniul Editare -> Preferințe -> General -> Ajutor - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Modulul PySide QtWebEngineWidgets nu este disponibil. Ajutor de redare este făcut cu browser-ul de sistem - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Ajutor @@ -176,7 +176,7 @@ de mai sus. QObject - + General General diff --git a/src/Mod/Help/Resources/translations/Help_ru.qm b/src/Mod/Help/Resources/translations/Help_ru.qm index e2b45f2356..700c88c8b5 100644 Binary files a/src/Mod/Help/Resources/translations/Help_ru.qm and b/src/Mod/Help/Resources/translations/Help_ru.qm differ diff --git a/src/Mod/Help/Resources/translations/Help_ru.ts b/src/Mod/Help/Resources/translations/Help_ru.ts index b181e83250..29b5b4b083 100644 --- a/src/Mod/Help/Resources/translations/Help_ru.ts +++ b/src/Mod/Help/Resources/translations/Help_ru.ts @@ -92,7 +92,7 @@ custom stylesheet below and can look nicer than the wiki option. The 'Markd Note: if PySide Web components are not found on your system, help pages will open in your default web browser regardless of the options below - Note: if PySide Web components are not found on your system, help pages will open in your default web browser regardless of the options below + Примечание: если компоненты PySide Web не найдены в вашей системе, страницы справки будут открываться в веб-браузере по умолчанию независимо от указанных ниже параметров @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Не удалось получить содержимое этой страницы. Пожалуйста, проверьте настройки в меню «Правка» -> > Настройки -> Общие -> Помощь - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Не удалось определить местоположение файлов справки. Пожалуйста, проверьте настройки в меню «Правка» -> > Настройки -> Общие -> Помощь - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Модуль PySide QtWebEngineWidgets недоступен. Отображение справки осуществляется с помощью системного браузера - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. + В вашей системе не установлен рендерер Markdown, поэтому эта страница справки отображается как есть. Пожалуйста, установите модули Markdown или Pandoc Python, чтобы улучшить рендеринг этой страницы. - + Help Справка @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Основные diff --git a/src/Mod/Help/Resources/translations/Help_sl.ts b/src/Mod/Help/Resources/translations/Help_sl.ts index ac7fce383c..c75092aa68 100644 --- a/src/Mod/Help/Resources/translations/Help_sl.ts +++ b/src/Mod/Help/Resources/translations/Help_sl.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Vsebin te strani ni bilo mogoče pridobiti. Nastavitve preverite v meniju Uredi -> Prednastavitve -> Splošno -> Pomoč - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Mesta datotek pomoči ni bilo mogoče ugotoviti. Nastavitve preverite v meniju Uredi -> Prednastavitve -> Splošno -> Pomoč - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Pomoč @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Splošne nastavitve diff --git a/src/Mod/Help/Resources/translations/Help_sr-CS.ts b/src/Mod/Help/Resources/translations/Help_sr-CS.ts index 105cec7551..7387754fd6 100644 --- a/src/Mod/Help/Resources/translations/Help_sr-CS.ts +++ b/src/Mod/Help/Resources/translations/Help_sr-CS.ts @@ -144,27 +144,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Sadržaj ove stranice nije moguće preuzeti. Proverite podešavanja u meniju Uredi -> Podešavanja -> Opšte -> Pomoć - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Nije moguće ustanoviti lokacija datoteka pomoći. Proverite podešavanja u meniju Uredi -> Podešavanja -> Opšte -> Pomoć - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PiSide QtWebEngineWidgets modul nije dostupan. Prikazivanje pomoći se vrši pomoću sistemskog pregledača - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Pomoć @@ -172,7 +172,7 @@ Markdown version above. QObject - + General Opšte diff --git a/src/Mod/Help/Resources/translations/Help_sr.ts b/src/Mod/Help/Resources/translations/Help_sr.ts index f6449188e7..50c3dd6eb3 100644 --- a/src/Mod/Help/Resources/translations/Help_sr.ts +++ b/src/Mod/Help/Resources/translations/Help_sr.ts @@ -144,27 +144,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Садржај ове странице није могуће преузети. Проверите подешавања у менију Уреди -> Подешавања -> Опште -> Помоћ - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Није могуће установити локација датотека помоц́и. Проверите подешавања у менију Уреди -> Подешавања -> Опште -> Помоћ - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PiSide QtWebEngineWidgets модул није доступан. Приказивање помоћи се врши помоћу системског pregledača - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Помоћ @@ -172,7 +172,7 @@ Markdown version above. QObject - + General Опште diff --git a/src/Mod/Help/Resources/translations/Help_sv-SE.ts b/src/Mod/Help/Resources/translations/Help_sv-SE.ts index 092b7a63f7..767297b5ff 100644 --- a/src/Mod/Help/Resources/translations/Help_sv-SE.ts +++ b/src/Mod/Help/Resources/translations/Help_sv-SE.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Hjälp @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Allmän diff --git a/src/Mod/Help/Resources/translations/Help_tr.ts b/src/Mod/Help/Resources/translations/Help_tr.ts index cf54fbe1b4..34fc9c5e2a 100644 --- a/src/Mod/Help/Resources/translations/Help_tr.ts +++ b/src/Mod/Help/Resources/translations/Help_tr.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Bu sayfanın içeriği alınamadı. Lütfen Düzenle -> Tercihler -> Genel -> Yardım menüsü altındaki ayarları kontrol edin. - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Bu sayfanın içeriği alınamadı. Lütfen Düzenle -> Tercihler -> Genel -> Yardım menüsü altındaki ayarları kontrol edin. - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Yardım @@ -177,7 +177,7 @@ Markdown version above. QObject - + General Genel diff --git a/src/Mod/Help/Resources/translations/Help_uk.ts b/src/Mod/Help/Resources/translations/Help_uk.ts index fc85593b39..a6842d7d11 100644 --- a/src/Mod/Help/Resources/translations/Help_uk.ts +++ b/src/Mod/Help/Resources/translations/Help_uk.ts @@ -141,27 +141,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Не вдалося отримати вміст цієї сторінки. Будь ласка, перевірте налаштування в меню Правка > Налаштування> Загальні> Довідка - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Не вдалося визначити розташування файлів довідки. Будь ласка, перевірте налаштування в меню Правка -> Налаштування -> Загальні -> Довідка - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser Модуль PySide QtWebEngineWidgets недоступний. Відображення довідки здійснюється за допомогою системного браузера - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. У вашій системі не встановлено візуалізатор Markdown, тому ця сторінка довідки відображається як є. Будь ласка, встановіть модулі Markdown або Pandoc Python, щоб покращити вигляд цієї сторінки. - + Help Довідка @@ -169,7 +169,7 @@ Markdown version above. QObject - + General Загальні diff --git a/src/Mod/Help/Resources/translations/Help_val-ES.ts b/src/Mod/Help/Resources/translations/Help_val-ES.ts index a26f10d8d6..5e8f60ce82 100644 --- a/src/Mod/Help/Resources/translations/Help_val-ES.ts +++ b/src/Mod/Help/Resources/translations/Help_val-ES.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help Ajuda @@ -177,7 +177,7 @@ Markdown version above. QObject - + General General diff --git a/src/Mod/Help/Resources/translations/Help_zh-CN.qm b/src/Mod/Help/Resources/translations/Help_zh-CN.qm index 79a502812a..3f08553ac3 100644 Binary files a/src/Mod/Help/Resources/translations/Help_zh-CN.qm and b/src/Mod/Help/Resources/translations/Help_zh-CN.qm differ diff --git a/src/Mod/Help/Resources/translations/Help_zh-CN.ts b/src/Mod/Help/Resources/translations/Help_zh-CN.ts index a9846a44ca..61cebd62f4 100644 --- a/src/Mod/Help/Resources/translations/Help_zh-CN.ts +++ b/src/Mod/Help/Resources/translations/Help_zh-CN.ts @@ -21,16 +21,16 @@ You can easily download the documentation for offline use by using the Addon Manager and installing the "offline-documentation" addon. If this field is left blank, FreeCAD will automatically search for the help files at the default location ($USERAPPDATADIR/Mod/offline-documentation). - Set this to a custom URL or the folder where the help files are located. -You can easily download the documentation for offline use by using the Addon -Manager and installing the "offline-documentation" addon. If this -field is left blank, FreeCAD will automatically search for the help files at -the default location ($USERAPPDATADIR/Mod/offline-documentation). + 将其设置为自定义 URL 或帮助文件所在文件夹。 +您可以使用插件 +管理器并安装 "offline-documentation" 附加组件,即可轻松下载文档供离线使用。如果此 +字段留空,FreeCAD 将自动搜索帮助文件的默认位置 +默认位置 ($USERAPPDATADIR/Mod/offline-documentation)。 Custom location - Custom location + 自定义位置 @@ -40,7 +40,7 @@ the default location ($USERAPPDATADIR/Mod/offline-documentation). FreeCAD Wiki (online) - FreeCAD Wiki (online) + FreeCAD Wiki (在线) @@ -82,7 +82,7 @@ custom stylesheet below and can look nicer than the wiki option. The 'Markd Markdown version (online) - Markdown version (online) + Markdown 版本 (在线) @@ -92,12 +92,12 @@ custom stylesheet below and can look nicer than the wiki option. The 'Markd Note: if PySide Web components are not found on your system, help pages will open in your default web browser regardless of the options below - Note: if PySide Web components are not found on your system, help pages will open in your default web browser regardless of the options below + 注意:如果您的系统中没有 PySide Web 组件,无论以下选项如何,帮助页面都将在您的默认 Web 浏览器中打开 In a FreeCAD tab - In a FreeCAD tab + 在 FreeCAD 选项卡 @@ -108,8 +108,8 @@ custom stylesheet below and can look nicer than the wiki option. The 'Markd The documentation will open in a dockable dialog inside the FreeCAD window, which allows you to keep it open while working in the 3D view. This requires the PySide QtWebengineWidgets component - The documentation will open in a dockable dialog inside the FreeCAD window, -which allows you to keep it open while working in the 3D view. This requires the PySide QtWebengineWidgets component + 文档将在 FreeCAD 窗口内的可停靠对话框中打开、 +这样您就可以在 3D 视图中工作时使之保持打开状态。这需要 PySide QtWebengineWidgets 组件 @@ -123,17 +123,17 @@ Markdown 版本的情况下,这才会起作用。 In your default web browser - In your default web browser + 在您的默认网络浏览器 The documentation will open in a new tab inside the FreeCAD interface. This requires the PySide QtWebengineWidgets component - The documentation will open in a new tab inside the FreeCAD interface. This requires the PySide QtWebengineWidgets component + 文档将在 FreeCAD 界面的新标签页中打开。这需要 PySide QtWebengineWidgets 组件 In a separate, embeddable dialog - In a separate, embeddable dialog + 在单独的、可嵌入的对话框中 @@ -143,33 +143,33 @@ Markdown 版本的情况下,这才会起作用。 Custom stylesheet: - Custom stylesheet: + 自定义样式表: Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser - PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser + PySide QtWebEngineWidgets 模块不可用。帮助渲染由系统浏览器完成 - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. + 您的系统未安装 Markdown 渲染器,因此本帮助页面按原样渲染。请安装 Markdown 或 Pandoc Python 模块,以改善本页面的渲染效果。 - + Help 帮助 @@ -177,7 +177,7 @@ Markdown 版本的情况下,这才会起作用。 QObject - + General 常规 diff --git a/src/Mod/Help/Resources/translations/Help_zh-TW.ts b/src/Mod/Help/Resources/translations/Help_zh-TW.ts index ba0f858cd4..1a08efdae7 100644 --- a/src/Mod/Help/Resources/translations/Help_zh-TW.ts +++ b/src/Mod/Help/Resources/translations/Help_zh-TW.ts @@ -149,27 +149,27 @@ Markdown version above. Help - + Contents for this page could not be retrieved. Please check settings under menu Edit -> Preferences -> General -> Help 無法檢索該頁面的內容. 請檢查 編輯 -> 偏好設定 -> 一般 -> 說明 選單之下的設定 - + Help files location could not be determined. Please check settings under menu Edit -> Preferences -> General -> Help 無法確定說明檔案位置. 請檢查 編輯 -> 偏好設定 -> 一般 -> 說明 選單之下的設定 - + PySide QtWebEngineWidgets module is not available. Help rendering is done with the system browser PySide QtWebEngineWidgets 模組不可用. 說明渲染是透過系統瀏覽器完成的 - + There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. There is no Markdown renderer installed on your system, so this help page is rendered as is. Please install the Markdown or Pandoc Python modules to improve the rendering of this page. - + Help 説明 @@ -177,7 +177,7 @@ Markdown version above. QObject - + General 一般 diff --git a/src/Mod/Import/App/dxf/ImpExpDxf.cpp b/src/Mod/Import/App/dxf/ImpExpDxf.cpp index 6b55fb45b9..a7284f54b1 100644 --- a/src/Mod/Import/App/dxf/ImpExpDxf.cpp +++ b/src/Mod/Import/App/dxf/ImpExpDxf.cpp @@ -103,7 +103,10 @@ bool ImpExpDxfRead::ReadEntitiesSection() // TODO: We do end-to-end joining or complete merging as selected by the options. for (auto& shapeSet : ShapesToCombine) { m_entityAttributes = shapeSet.first; - CombineShapes(shapeSet.second, "Compound"); + CombineShapes(shapeSet.second, + m_entityAttributes.m_Layer == nullptr + ? "Compound" + : m_entityAttributes.m_Layer->Name.c_str()); } } else { @@ -112,14 +115,8 @@ bool ImpExpDxfRead::ReadEntitiesSection() } } if (m_preserveLayers) { - // Hide the Hidden layers if possible (if GUI exists) - // We do this now rather than when the layer is created so all objects - // within the layers also become hidden. for (auto& layerEntry : Layers) { - auto layer = (Layer*)layerEntry.second; - if (layer->DraftLayerView != nullptr && layer->Hidden) { - PyObject_CallMethod(layer->DraftLayerView, "hide", nullptr); - } + ((Layer*)layerEntry.second)->FinishLayer(); } } return true; @@ -610,16 +607,38 @@ ImpExpDxfRead::Layer::Layer(const std::string& name, std::string&& lineType, PyObject* drawingLayer) : CDxfRead::Layer(name, color, std::move(lineType)) - , DraftLayer(drawingLayer) , DraftLayerView(drawingLayer == nullptr ? nullptr : PyObject_GetAttrString(drawingLayer, "ViewObject")) + , GroupContents( + drawingLayer == nullptr + ? nullptr + : (App::PropertyLinkListHidden*)(((App::FeaturePythonPyT*) + drawingLayer) + ->getPropertyContainerPtr()) + ->getDynamicPropertyByName("Group")) {} ImpExpDxfRead::Layer::~Layer() { - Py_XDECREF(DraftLayer); Py_XDECREF(DraftLayerView); } +void ImpExpDxfRead::Layer::FinishLayer() const +{ + if (GroupContents != nullptr) { + // We have to move the object to layer->DraftLayer + // The DraftLayer will have a Proxy attribute which has a addObject attribute which we + // call with (draftLayer, draftObject) Checking from python, the layer is a + // App::FeaturePython, and its Proxy is a draftobjects.layer.Layer + GroupContents->setValue(Contents); + } + if (DraftLayerView != nullptr && Hidden) { + // Hide the Hidden layers if possible (if GUI exists) + // We do this now rather than when the layer is created so all objects + // within the layers also become hidden. + PyObject_CallMethod(DraftLayerView, "hide", nullptr); + } +} + CDxfRead::Layer* ImpExpDxfRead::MakeLayer(const std::string& name, ColorIndex_t color, std::string&& lineType) { @@ -628,7 +647,7 @@ ImpExpDxfRead::MakeLayer(const std::string& name, ColorIndex_t color, std::strin App::Color appColor = ObjectColor(color); PyObject* draftModule = nullptr; PyObject* layer = nullptr; - draftModule = PyImport_ImportModule("Draft"); + draftModule = getDraftModule(); if (draftModule != nullptr) { // After the colours, I also want to pass the draw_style, but there is an intervening // line-width parameter. It is easier to just pass that parameter's default value than @@ -651,12 +670,13 @@ ImpExpDxfRead::MakeLayer(const std::string& name, ColorIndex_t color, std::strin appColor.b, 2.0, "Solid"); - Py_DECREF(draftModule); } auto result = new Layer(name, color, std::move(lineType), layer); if (result->DraftLayerView != nullptr) { PyObject_SetAttrString(result->DraftLayerView, "OverrideLineColorChildren", Py_False); - PyObject_SetAttrString(result->DraftLayerView, "OverrideShapeColorChildren", Py_False); + PyObject_SetAttrString(result->DraftLayerView, + "OverrideShapeAppearanceChildren", + Py_False); } // We make our own layer class even if we could not make a layer. MoveToLayer will ignore @@ -669,26 +689,7 @@ ImpExpDxfRead::MakeLayer(const std::string& name, ColorIndex_t color, std::strin void ImpExpDxfRead::MoveToLayer(App::DocumentObject* object) const { if (m_preserveLayers) { - static PyObject* addObjectName = - PyUnicode_FromString("addObject"); // This never gets freed, we always have a reference - auto layer = static_cast(m_entityAttributes.m_Layer); - if (layer->DraftLayer != nullptr) { - // We have to move the object to layer->DraftLayer - // The DraftLayer will have a Proxy attribute which has a addObject attribute which we - // call with (draftLayer, draftObject) Checking from python, the layer is a - // App::FeaturePython, and its Proxy is a draftobjects.layer.Layer - PyObject* proxy = PyObject_GetAttrString(layer->DraftLayer, "Proxy"); - if (proxy != nullptr) { - // TODO: De we have to check if the method exists? The legacy importer does. - PyObject_CallMethodObjArgs(proxy, - addObjectName, - layer->DraftLayer, - object->getPyObject(), - nullptr); - Py_DECREF(proxy); - return; - } - } + static_cast(m_entityAttributes.m_Layer)->Contents.push_back(object); } // TODO: else Hide the object if it is in a Hidden layer? That won't work because we've cleared // out m_entityAttributes.m_Layer diff --git a/src/Mod/Import/App/dxf/ImpExpDxf.h b/src/Mod/Import/App/dxf/ImpExpDxf.h index d219e0f99f..3c71aa1f29 100644 --- a/src/Mod/Import/App/dxf/ImpExpDxf.h +++ b/src/Mod/Import/App/dxf/ImpExpDxf.h @@ -122,7 +122,11 @@ protected: PyObject* getDraftModule() { if (DraftModule == nullptr) { + static int times = 0; DraftModule = PyImport_ImportModule("Draft"); + if (DraftModule == nullptr && times++ == 0) { + ImportError("Unable to locate \"Draft\" module"); + } } return DraftModule; } @@ -143,8 +147,10 @@ protected: void operator=(const Layer&) = delete; void operator=(Layer&&) = delete; ~Layer() override; - PyObject* const DraftLayer; PyObject* const DraftLayerView; + std::vector Contents; + void FinishLayer() const; + App::PropertyLinkListHidden* GroupContents; }; using FeaturePythonBuilder = diff --git a/src/Mod/Import/App/dxf/dxf.cpp b/src/Mod/Import/App/dxf/dxf.cpp index ba8161cfae..8dab411337 100644 --- a/src/Mod/Import/App/dxf/dxf.cpp +++ b/src/Mod/Import/App/dxf/dxf.cpp @@ -2910,7 +2910,11 @@ bool CDxfRead::ReadEntitiesSection() return false; } } + catch (const Base::Exception& e) { + e.ReportException(); + } catch (...) { + ImportError("CDxfRead::ReadEntity raised unknown exception\n"); } } else { diff --git a/src/Mod/Import/App/dxf/dxf.h b/src/Mod/Import/App/dxf/dxf.h index a661e39b19..b9a82e123f 100644 --- a/src/Mod/Import/App/dxf/dxf.h +++ b/src/Mod/Import/App/dxf/dxf.h @@ -21,6 +21,7 @@ #include #include +#include #include #include #include @@ -685,12 +686,12 @@ protected: // notification popup "Log" goes to a log somewhere and not to the screen/user at all template - void ImportError(const char* format, args&&... argValues) const + static void ImportError(const char* format, args&&... argValues) { Base::ConsoleSingleton::Instance().Warning(format, std::forward(argValues)...); } template - void ImportObservation(const char* format, args&&... argValues) const + static void ImportObservation(const char* format, args&&... argValues) { Base::ConsoleSingleton::Instance().Message(format, std::forward(argValues)...); } @@ -922,5 +923,25 @@ public: return m_entityAttributes.m_LineType[0] == 'h' || m_entityAttributes.m_LineType[0] == 'H'; } static App::Color ObjectColor(ColorIndex_t colorIndex); // as rgba value + +#ifdef DEBUG +protected: + static PyObject* PyObject_GetAttrString(PyObject* o, const char* attr_name) + { + PyObject* result = ::PyObject_GetAttrString(o, attr_name); + if (result == nullptr) { + ImportError("Unable to get Attribute '%s'\n", attr_name); + PyErr_Clear(); + } + return result; + } + static void PyObject_SetAttrString(PyObject* o, const char* attr_name, PyObject* v) + { + if (::PyObject_SetAttrString(o, attr_name, v) != 0) { + ImportError("Unable to set Attribute '%s'\n", attr_name); + PyErr_Clear(); + } + } +#endif }; #endif diff --git a/src/Mod/Import/Gui/AppImportGuiPy.cpp b/src/Mod/Import/Gui/AppImportGuiPy.cpp index 076b5bab8c..a65e1832ef 100644 --- a/src/Mod/Import/Gui/AppImportGuiPy.cpp +++ b/src/Mod/Import/Gui/AppImportGuiPy.cpp @@ -128,18 +128,21 @@ private: Base::FileInfo file(name8bit.c_str()); if (file.hasExtension({"stp", "step"})) { PartGui::TaskImportStep dlg(Gui::getMainWindow()); - if (!dlg.showDialog() || dlg.exec()) { - auto stepSettings = dlg.getSettings(); - options.setItem("merge", Py::Boolean(stepSettings.merge)); - options.setItem("useLinkGroup", Py::Boolean(stepSettings.useLinkGroup)); - options.setItem("useBaseName", Py::Boolean(stepSettings.useBaseName)); - options.setItem("importHidden", Py::Boolean(stepSettings.importHidden)); - options.setItem("reduceObjects", Py::Boolean(stepSettings.reduceObjects)); - options.setItem("showProgress", Py::Boolean(stepSettings.showProgress)); - options.setItem("expandCompound", Py::Boolean(stepSettings.expandCompound)); - options.setItem("mode", Py::Long(stepSettings.mode)); - options.setItem("codePage", Py::Long(stepSettings.codePage)); + if (dlg.showDialog()) { + if (!dlg.exec()) { + throw Py::Exception(Base::PyExc_FC_AbortIOException, "User cancelled import"); + } } + auto stepSettings = dlg.getSettings(); + options.setItem("merge", Py::Boolean(stepSettings.merge)); + options.setItem("useLinkGroup", Py::Boolean(stepSettings.useLinkGroup)); + options.setItem("useBaseName", Py::Boolean(stepSettings.useBaseName)); + options.setItem("importHidden", Py::Boolean(stepSettings.importHidden)); + options.setItem("reduceObjects", Py::Boolean(stepSettings.reduceObjects)); + options.setItem("showProgress", Py::Boolean(stepSettings.showProgress)); + options.setItem("expandCompound", Py::Boolean(stepSettings.expandCompound)); + options.setItem("mode", Py::Long(stepSettings.mode)); + options.setItem("codePage", Py::Long(stepSettings.codePage)); } return options; } diff --git a/src/Mod/Material/App/PropertyMaterial.cpp b/src/Mod/Material/App/PropertyMaterial.cpp index 3434b769bb..04d7579235 100644 --- a/src/Mod/Material/App/PropertyMaterial.cpp +++ b/src/Mod/Material/App/PropertyMaterial.cpp @@ -30,6 +30,7 @@ #include #include +#include "MaterialManager.h" #include "MaterialPy.h" #include "PropertyMaterial.h" @@ -87,13 +88,14 @@ void PropertyMaterial::Save(Base::Writer& writer) const void PropertyMaterial::Restore(Base::XMLReader& reader) { + MaterialManager manager; + // read my Element reader.readElement("PropertyMaterial"); // get the value of my Attribute - aboutToSetValue(); auto uuid = reader.getAttribute("uuid"); - _material.setUUID(QString::fromLatin1(uuid)); - hasSetValue(); + + setValue(*manager.getMaterial(QString::fromLatin1(uuid))); } const char* PropertyMaterial::getEditorName() const diff --git a/src/Mod/Material/Gui/Array2D.cpp b/src/Mod/Material/Gui/Array2D.cpp index 86804981d5..e2fdfb9860 100644 --- a/src/Mod/Material/Gui/Array2D.cpp +++ b/src/Mod/Material/Gui/Array2D.cpp @@ -25,6 +25,8 @@ #include #endif +#include +#include #include #include @@ -74,7 +76,11 @@ Array2D::Array2D(const QString& propertyName, connect(ui->tableView, &QWidget::customContextMenuRequested, this, &Array2D::onContextMenu); _deleteAction.setText(tr("Delete row")); - _deleteAction.setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + _deleteAction.setShortcut(QKeySequence(shortcut)); + } connect(&_deleteAction, &QAction::triggered, this, &Array2D::onDelete); ui->tableView->addAction(&_deleteAction); diff --git a/src/Mod/Material/Gui/CMakeLists.txt b/src/Mod/Material/Gui/CMakeLists.txt index a33c503e90..43af6edaa4 100644 --- a/src/Mod/Material/Gui/CMakeLists.txt +++ b/src/Mod/Material/Gui/CMakeLists.txt @@ -169,9 +169,9 @@ SET_PYTHON_PREFIX_SUFFIX(MatGui) fc_copy_sources(MatGui "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/Material" ${MatGuiIcon_SVG}) fc_copy_sources(MatGui "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/Material" ${MatGuiImages}) -fc_copy_sources(MatGui "${CMAKE_BINARY_DIR}/Mod/Material" ${Material_Ui_Files}) +fc_copy_sources(MatGui "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Mod/Material" ${Material_Ui_Files}) INSTALL(TARGETS MatGui DESTINATION ${CMAKE_INSTALL_LIBDIR}) INSTALL(FILES ${MatGuiIcon_SVG} DESTINATION "${CMAKE_INSTALL_DATADIR}/Mod/Material/Resources/icons") INSTALL(FILES ${MatGuiImages} DESTINATION "${CMAKE_INSTALL_DATADIR}/Mod/Material/Resources/images") -INSTALL(FILES ${Material_Ui_Files} DESTINATION "${CMAKE_BINARY_DIR}/Mod/Material/Resources/ui") +INSTALL(FILES ${Material_Ui_Files} DESTINATION "Mod/Material/Resources/ui") diff --git a/src/Mod/Material/Gui/MaterialSave.cpp b/src/Mod/Material/Gui/MaterialSave.cpp index 3bf75d9d46..cc82affc6a 100644 --- a/src/Mod/Material/Gui/MaterialSave.cpp +++ b/src/Mod/Material/Gui/MaterialSave.cpp @@ -26,6 +26,8 @@ #include #endif +#include +#include #include #include @@ -87,7 +89,11 @@ MaterialSave::MaterialSave(const std::shared_ptr& material, &MaterialSave::onContextMenu); _deleteAction.setText(tr("Delete")); - _deleteAction.setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + _deleteAction.setShortcut(QKeySequence(shortcut)); + } connect(&_deleteAction, &QAction::triggered, this, &MaterialSave::onDelete); ui->treeMaterials->addAction(&_deleteAction); diff --git a/src/Mod/Material/Gui/MaterialTreeWidgetPyImp.cpp b/src/Mod/Material/Gui/MaterialTreeWidgetPyImp.cpp index 8862c5677a..f492212277 100644 --- a/src/Mod/Material/Gui/MaterialTreeWidgetPyImp.cpp +++ b/src/Mod/Material/Gui/MaterialTreeWidgetPyImp.cpp @@ -68,7 +68,8 @@ int MaterialTreeWidgetPy::PyInit(PyObject* args, PyObject* /*kwd*/) PyErr_Clear(); if (PyArg_ParseTuple(args, "O", &obj)) { - if (QLatin1String(obj->ob_type->tp_name) == QLatin1String("PySide2.QtWidgets.QWidget")) { + if ((QLatin1String(obj->ob_type->tp_name) == QLatin1String("PySide2.QtWidgets.QWidget")) || + (QLatin1String(obj->ob_type->tp_name) == QLatin1String("PySide6.QtWidgets.QWidget"))) { Gui::PythonWrapper wrap; wrap.loadWidgetsModule(); auto qObject = wrap.toQObject(Py::Object(obj)); diff --git a/src/Mod/Material/Gui/Resources/translations/Material.ts b/src/Mod/Material/Gui/Resources/translations/Material.ts index cf43f786a1..0ba6f1b559 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material.ts @@ -55,12 +55,12 @@ - + Delete row - + Context menu @@ -693,8 +693,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder @@ -709,62 +709,62 @@ If unchecked, they will be sorted by their name.
- + Delete - + Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material - + Save as new material - + This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy - + Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy - + Save As New - + Context menu @@ -1136,23 +1136,23 @@ If unchecked, they will be sorted by their name.
- + Confirm Overwrite - - + + No writeable library - + Are you sure you want to delete '%1'? - + Removing this will also remove all contents. @@ -1177,14 +1177,14 @@ If unchecked, they will be sorted by their name.
- + - + Confirm Delete - + Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_be.ts b/src/Mod/Material/Gui/Resources/translations/Material_be.ts index 76df0c509e..6834277f37 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_be.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_be.ts @@ -55,12 +55,12 @@ Двухмерны масіў - + Delete row Выдаліць радок - + Context menu Кантэкстнае меню @@ -694,8 +694,8 @@ If unchecked, they will be sorted by their name.
- - + + New Folder Новы каталог @@ -710,65 +710,65 @@ If unchecked, they will be sorted by their name. Захаваць як успадкаваны
- + Delete Выдаліць - + Are you sure you want to save over '%1'? Ці сапраўды вы жадаеце захаваць '%1' нанова? - + Saving over the original file may cause other documents to break. This is not recommended. Захаванне па-над зыходным файлам можа прывесці да пашкоджання іншых дакументаў. Гэтае не рэкамендуецца. - + Confirm Save As New Material Пацвердзіць захаванне як новага матэрыялу - + Save as new material Захаваць як новы матэрыял - + This material already exists in this library. Would you like to save as a new material? Дадзены матэрыял ужо існуе ў гэтай бібліятэцы. Ці жадаеце вы захаваць яго як новы матэрыял? - + Confirm Save As Copy Пацвердзіць захаванне як копіі - + Save as Copy Захаваць як копію - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Захоўваць копію не рэкамендуецца, бо гэтае можа прывесці да пашкоджання іншых дакументаў. Мы рэкамендуем вам захаваць яе як новы матэрыял. - + Save Copy Захаваць копію - + Save As New Захаваць як новы - + Context menu Кантэкстнае меню @@ -1140,23 +1140,23 @@ If unchecked, they will be sorted by their name. Матэрыял
- + Confirm Overwrite Пацвердзіць перазапіс - - + + No writeable library Няма бібліятэкі для запісу - + Are you sure you want to delete '%1'? Ці сапраўды вы жадаеце выдаліць '%1'? - + Removing this will also remove all contents. Выдаленне гэтага элементу таксама прывядзе да выдалення ўсяго зместу. @@ -1181,14 +1181,14 @@ If unchecked, they will be sorted by their name. Калі вы не захаваеце, вашыя змены будуць незваротна страчаныя.
- + - + Confirm Delete Пацвердзіць выдаленне - + Are you sure you want to delete the row? Ці сапраўды вы жадаеце працягнуць? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ca.ts b/src/Mod/Material/Gui/Resources/translations/Material_ca.ts index 7c57cd9fa6..9a8f29de21 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ca.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ca.ts @@ -55,12 +55,12 @@ Matriu 2D - + Delete row Eliminar la fila - + Context menu Menú contextual @@ -694,8 +694,8 @@ Si no es marca, s'ordenaran pel seu nom. - - + + New Folder Carpeta nova @@ -710,62 +710,62 @@ Si no es marca, s'ordenaran pel seu nom. Desar com a Heretat - + Delete Elimina - + Are you sure you want to save over '%1'? Esteu segur que voleu començar des de l'inici '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Desar sobre el fitxer original pot causar que altres documents es trenquin. Això no es recomana. - + Confirm Save As New Material Confirma Desar com a material nou - + Save as new material Desar com a material nou - + This material already exists in this library. Would you like to save as a new material? Aquest material ja existeix en aquesta biblioteca. Vols desar com a material nou? - + Confirm Save As Copy Confirma Desar com a còpia - + Save as Copy Desar com a còpia - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. No es recomana desar com a còpia, ja que pot trencar altres documents. Recomanem que ho desis com a un material nou. - + Save Copy Desar Còpia - + Save As New Desar com a nou - + Context menu Menú contextual @@ -1137,23 +1137,23 @@ Si no es marca, s'ordenaran pel seu nom. Material - + Confirm Overwrite Confirmeu la sobreescriptura - - + + No writeable library Biblioteca no escrivible - + Are you sure you want to delete '%1'? Esteu segur que voleu eliminar '%1'? - + Removing this will also remove all contents. En suprimir-ho, també s'eliminarà tots els continguts. @@ -1178,14 +1178,14 @@ Si no es marca, s'ordenaran pel seu nom. Si no guardeu els canvis, es perdran. - + - + Confirm Delete Confirma la Supressió - + Are you sure you want to delete the row? Esteu segur que voleu suprimir la fila? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_cs.ts b/src/Mod/Material/Gui/Resources/translations/Material_cs.ts index 62aeb4603d..a8a44e51da 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_cs.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_cs.ts @@ -55,12 +55,12 @@ 2D pole - + Delete row Odstranit řádek - + Context menu Kontextová nabídka @@ -694,8 +694,8 @@ Pokud není zaškrtnuto, budou seřazeny podle jména. - - + + New Folder Nová složka @@ -710,62 +710,62 @@ Pokud není zaškrtnuto, budou seřazeny podle jména. Uložit jako zděděný - + Delete Odstranit - + Are you sure you want to save over '%1'? Opravdu chcete uložit a přepsat '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Přepsáním původního souboru můžete poškodit jiné dokumenty. Toto nedoporučujeme. - + Confirm Save As New Material Potvrďte uložení jako nový materiál - + Save as new material Uložit jako nový materiál - + This material already exists in this library. Would you like to save as a new material? Tento materiál již existuje v této knihovně. Přejete si uložit jako nový materiál? - + Confirm Save As Copy Potvrdit uložení jako kopie - + Save as Copy Uložit jako kopii - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Uložení kopie se nedoporučuje, protože může poškodit jiné dokumenty. Doporučujeme vám uložit jako nový materiál. - + Save Copy Uložit kopii - + Save As New Uložit jako nový - + Context menu Kontextová nabídka @@ -1137,23 +1137,23 @@ Pokud není zaškrtnuto, budou seřazeny podle jména. Materiál - + Confirm Overwrite Potvrdit přepsání - - + + No writeable library Žádná zapisovatelná knihovna - + Are you sure you want to delete '%1'? Opravdu chcete odstranit '%1'? - + Removing this will also remove all contents. Odstraněním tohoto odstraníte také veškerý obsah. @@ -1178,14 +1178,14 @@ Pokud není zaškrtnuto, budou seřazeny podle jména. V případě neuložení budou vaše změny ztraceny. - + - + Confirm Delete Potvrdit odstranění - + Are you sure you want to delete the row? Opravdu chcete tento řádek odstranit? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_da.ts b/src/Mod/Material/Gui/Resources/translations/Material_da.ts index 4105f95f88..b822a3fdbe 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_da.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_da.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Slette - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materiel - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_de.ts b/src/Mod/Material/Gui/Resources/translations/Material_de.ts index 2edd98a541..e9917e6f96 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_de.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_de.ts @@ -55,12 +55,12 @@ 2D-Matrix - + Delete row Zeile löschen - + Context menu Kontextmenü @@ -695,8 +695,8 @@ Wenn deaktiviert, werden sie nach ihrem Namen sortiert. - - + + New Folder Neuer Ordner @@ -711,62 +711,62 @@ Wenn deaktiviert, werden sie nach ihrem Namen sortiert. Als vererbt speichern - + Delete Löschen - + Are you sure you want to save over '%1'? '%1' wirklich überschreiben? - + Saving over the original file may cause other documents to break. This is not recommended. Das Überschreiben der Originaldatei kann dazu führen, dass andere Dokumente beschädigt werden. Dies wird nicht empfohlen. - + Confirm Save As New Material Speichern als neues Material bestätigen - + Save as new material Als neues Material speichern - + This material already exists in this library. Would you like to save as a new material? Dieses Material existiert bereits in dieser Bibliothek. Als neues Material speichern? - + Confirm Save As Copy Speichern als Kopie bestätigen - + Save as Copy Als Kopie speichern - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Das Speichern als Kopie kann dazu führen, dass andere Dokumente beschädigt werden. Es wird empfohlen, es als ein neues Material zu speichern. - + Save Copy Kopie speichern - + Save As New Als Neu speichern - + Context menu Kontextmenü @@ -1138,23 +1138,23 @@ Wenn deaktiviert, werden sie nach ihrem Namen sortiert. Material - + Confirm Overwrite Überschreiben bestätigen - - + + No writeable library Keine beschreibbare Bibliothek - + Are you sure you want to delete '%1'? '%1' wirklich löschen? - + Removing this will also remove all contents. Das Entfernen löscht auch alle Inhalte. @@ -1179,14 +1179,14 @@ Wenn deaktiviert, werden sie nach ihrem Namen sortiert. Ohne Speichern gehen die Änderungen verloren. - + - + Confirm Delete Löschen bestätigen - + Are you sure you want to delete the row? Soll die Zeile wirklich gelöscht werden? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_el.ts b/src/Mod/Material/Gui/Resources/translations/Material_el.ts index 96aba9fc79..251409f655 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_el.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_el.ts @@ -55,12 +55,12 @@ 2D Διάταξη - + Delete row Διαγραφή σειράς - + Context menu Μενού πλαισίου @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder Νέος Φάκελος @@ -711,64 +711,64 @@ If unchecked, they will be sorted by their name. Αποθήκευση ως Κληρονομούμενο - + Delete Διαγραφή - + Are you sure you want to save over '%1'? Είστε βέβαιοι ότι θέλετε να αποθηκεύσετε πάνω από '%1'; - + Saving over the original file may cause other documents to break. This is not recommended. Η αποθήκευση πάνω από το αρχικό αρχείο μπορεί να προκαλέσει τη διακοπή της λειτουργίας άλλων εγγράφων. Αυτό δε συνιστάται. - + Confirm Save As New Material Επιβεβαίωση Αποθήκευσης Ως Νέο Υλικό - + Save as new material Αποθήκευση ως νέο υλικό - + This material already exists in this library. Would you like to save as a new material? Αυτό το υλικό υπάρχει ήδη σε αυτή τη βιβλιοθήκη. Θα θέλατε να το αποθηκεύσετε ως νέο υλικό; - + Confirm Save As Copy Επιβεβαίωση Αποθήκευσης Ως Αντιγραφή - + Save as Copy Αποθήκευση ενός Αντιγράφου - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Δε συνιστάται η αποθήκευση αντιγράφου, καθώς μπορεί να καταστρέψει άλλα έγγραφα. Προτείνουμε να αποθηκεύσετε ως νέο υλικό. - + Save Copy Αποθήκευση αντιγράφου - + Save As New Αποθήκευση ως Νέο - + Context menu Μενού πλαισίου @@ -1140,23 +1140,23 @@ If unchecked, they will be sorted by their name. Υλικό - + Confirm Overwrite Επιβεβαίωση Αντικατάστασης - - + + No writeable library Καμία εγγράψιμη βιβλιοθήκη - + Are you sure you want to delete '%1'? Είστε βέβαιοι ότι θέλετε να διαγράψετε '%1'; - + Removing this will also remove all contents. Η Αφαίρεση αυτού, θα αφαιρέσει επίσης όλα τα περιεχόμενα. @@ -1181,14 +1181,14 @@ If unchecked, they will be sorted by their name. Αν don't αποθηκεύσετε, οι αλλαγές σας θα χαθούν. - + - + Confirm Delete Επιβεβαίωση διαγραφής - + Are you sure you want to delete the row? Είστε βέβαιοι ότι θέλετε να διαγράψετε αυτήν τη σειρά; diff --git a/src/Mod/Material/Gui/Resources/translations/Material_es-AR.ts b/src/Mod/Material/Gui/Resources/translations/Material_es-AR.ts index ee1a3fe29b..e174b5141f 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_es-AR.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_es-AR.ts @@ -55,12 +55,12 @@ Arreglo 2D - + Delete row Eliminar fila - + Context menu Menú contextual @@ -183,7 +183,7 @@ Color plot: - Color plot: + Color del trazado: @@ -254,7 +254,7 @@ Shape.TypeID / TypeID - Shape.TypeID / TypeID + ShaéTypeID / TypeID @@ -337,7 +337,7 @@ Shape.TypeID / TypeID - Shape.TypeID / TypeID + ShaéTypeID / TypeID @@ -373,7 +373,7 @@ TypeID: - TypeID: + TypeID: @@ -425,7 +425,7 @@ Model UUID: - Model UUID: + UUID de modelo: @@ -695,8 +695,8 @@ Si no está marcado, serán ordenadas por su nombre. - - + + New Folder Nueva carpeta @@ -711,62 +711,62 @@ Si no está marcado, serán ordenadas por su nombre. Guardar como heredado - + Delete Eliminar - + Are you sure you want to save over '%1'? ¿Está seguro que desea guardar sobre '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Guardar sobre el archivo original puede causar que otros documentos se dañen. Esto no es recomendado. - + Confirm Save As New Material Confirmar guardar como material nuevo - + Save as new material Guardar como material nuevo - + This material already exists in this library. Would you like to save as a new material? Este material ya existe en esta biblioteca. ¿Quiere guardar como un nuevo material? - + Confirm Save As Copy Confirmar guardar como copia - + Save as Copy Guardar como copia - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. No se recomienda guardar una copia, ya que puede dañar otros documentos. Recomendamos guardar como un material nuevo. - + Save Copy Guardar copia - + Save As New Guardar como nuevo - + Context menu Menú contextual @@ -1045,7 +1045,7 @@ Si no está marcado, serán ordenadas por su nombre. Text Edit - Text Edit + Editar Texto
@@ -1138,23 +1138,23 @@ Si no está marcado, serán ordenadas por su nombre. Material - + Confirm Overwrite Confirmar sobrescritura - - + + No writeable library No hay biblioteca escribible - + Are you sure you want to delete '%1'? ¿Está seguro que desea eliminar '%1'? - + Removing this will also remove all contents. Al eliminar esto también se eliminará todo el contenido. @@ -1179,14 +1179,14 @@ Si no está marcado, serán ordenadas por su nombre. De no guardar, se perderán los cambios. - + - + Confirm Delete Confirmar eliminación - + Are you sure you want to delete the row? ¿Está seguro de que desea eliminar la fila? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_es-ES.ts b/src/Mod/Material/Gui/Resources/translations/Material_es-ES.ts index e99acd336d..b1aa7d232d 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_es-ES.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_es-ES.ts @@ -55,12 +55,12 @@ Arreglo 2D - + Delete row Eliminar fila - + Context menu Menú contextual @@ -183,7 +183,7 @@ Color plot: - Color plot: + Color del trazado: @@ -254,7 +254,7 @@ Shape.TypeID / TypeID - Shape.TypeID / TypeID + ShaéTypeID / TypeID @@ -337,7 +337,7 @@ Shape.TypeID / TypeID - Shape.TypeID / TypeID + ShaéTypeID / TypeID @@ -373,7 +373,7 @@ TypeID: - TypeID: + TypeID: @@ -425,7 +425,7 @@ Model UUID: - Model UUID: + UUID de modelo: @@ -695,8 +695,8 @@ Si no está marcado, serán ordenadas por su nombre. - - + + New Folder Nueva carpeta @@ -711,62 +711,62 @@ Si no está marcado, serán ordenadas por su nombre. Guardar como heredado - + Delete Borrar - + Are you sure you want to save over '%1'? ¿Está seguro que desea guardar sobre '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Guardar sobre el archivo original puede causar que otros documentos se dañen. Esto no es recomendado. - + Confirm Save As New Material Confirmar guardar como material nuevo - + Save as new material Guardar como material nuevo - + This material already exists in this library. Would you like to save as a new material? Este material ya existe en esta biblioteca. ¿Quiere guardar como un nuevo material? - + Confirm Save As Copy Confirmar guardar como copia - + Save as Copy Guardar como copia - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. No se recomienda guardar una copia, ya que puede dañar otros documentos. Recomendamos guardar como un material nuevo. - + Save Copy Guardar copia - + Save As New Guardar como nuevo - + Context menu Menú contextual @@ -1045,7 +1045,7 @@ Si no está marcado, serán ordenadas por su nombre. Text Edit - Text Edit + Editar Texto @@ -1138,23 +1138,23 @@ Si no está marcado, serán ordenadas por su nombre. Material - + Confirm Overwrite Confirmar sobrescritura - - + + No writeable library No hay biblioteca escribible - + Are you sure you want to delete '%1'? ¿Está seguro que desea eliminar '%1'? - + Removing this will also remove all contents. Al eliminar esto también se eliminará todo el contenido. @@ -1179,14 +1179,14 @@ Si no está marcado, serán ordenadas por su nombre. De no guardar, se perderán los cambios. - + - + Confirm Delete Confirmar eliminación - + Are you sure you want to delete the row? ¿Está seguro de que desea eliminar la fila? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_eu.ts b/src/Mod/Material/Gui/Resources/translations/Material_eu.ts index 84c7c834c7..b322377244 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_eu.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_eu.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Ezabatu - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materiala - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_fi.ts b/src/Mod/Material/Gui/Resources/translations/Material_fi.ts index 0cc9a91b6e..dcac35e31b 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_fi.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_fi.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Poista - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materiaali - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_fr.ts b/src/Mod/Material/Gui/Resources/translations/Material_fr.ts index 031f2bbae6..586f188754 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_fr.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_fr.ts @@ -55,12 +55,12 @@ Matrice 2D - + Delete row Supprimer une ligne - + Context menu Menu contextuel @@ -694,8 +694,8 @@ S'ils ne sont pas cochés, ils seront triés par leur nom. - - + + New Folder Nouveau dossier @@ -710,62 +710,62 @@ S'ils ne sont pas cochés, ils seront triés par leur nom. Enregistrer comme hérité - + Delete Supprimer - + Are you sure you want to save over '%1'? Êtes-vous sûr de vouloir économiser sur "%1" ? - + Saving over the original file may cause other documents to break. This is not recommended. Enregistrer par-dessus le fichier d'origine peut endommager d'autres documents. Ceci n'est pas recommandé. - + Confirm Save As New Material Confirmer l'enregistrement en tant que nouveau matériau - + Save as new material Enregistrer en tant que nouveau matériau - + This material already exists in this library. Would you like to save as a new material? Ce matériau existe déjà dans cette bibliothèque. Voulez-vous l'enregistrer en tant que nouveau matériau ? - + Confirm Save As Copy Confirmer l'enregistrement en tant que copie - + Save as Copy Enregistrer comme copie - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Enregistrer une copie n'est pas recommandé car cela peut endommager d'autres documents. Il est recommandé de l'enregistrer comme un nouveau matériau. - + Save Copy Enregistrer une copie - + Save As New Enregistrer comme nouveau - + Context menu Menu contextuel @@ -1137,23 +1137,23 @@ S'ils ne sont pas cochés, ils seront triés par leur nom. Material - + Confirm Overwrite Confirmer le remplacement - - + + No writeable library Aucune bibliothèque accessible en écriture - + Are you sure you want to delete '%1'? Êtes-vous sûr de vouloir supprimer "%1" ? - + Removing this will also remove all contents. Supprimer ceci supprimera également tous les contenus. @@ -1178,14 +1178,14 @@ S'ils ne sont pas cochés, ils seront triés par leur nom. Si vous n'enregistrez pas, vos modifications seront perdues. - + - + Confirm Delete Confirmer la suppression - + Are you sure you want to delete the row? Êtes-vous sûr de vouloir supprimer la ligne ? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_hr.ts b/src/Mod/Material/Gui/Resources/translations/Material_hr.ts index 5871dece06..ab9fcd123c 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_hr.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_hr.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Izbriši - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materijal - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_hu.ts b/src/Mod/Material/Gui/Resources/translations/Material_hu.ts index 1ba35b99c6..9d195e5188 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_hu.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_hu.ts @@ -55,12 +55,12 @@ 2D készlet - + Delete row Sor törlése - + Context menu Helyi menü @@ -695,8 +695,8 @@ Ha le van tiltva, név szerint vannak rendezve. - - + + New Folder Új mappa @@ -711,62 +711,62 @@ Ha le van tiltva, név szerint vannak rendezve. Mentés öröklöttként - + Delete Törlés - + Are you sure you want to save over '%1'? Biztos vagy benne, hogy több mint '%1' összeget akarsz megspórolni? - + Saving over the original file may cause other documents to break. This is not recommended. Az eredeti fájl fölé történő mentés más dokumentumok törését okozhatja. Ez nem ajánlott. - + Confirm Save As New Material Mentés új anyagként megerősítése - + Save as new material Mentés új anyagként - + This material already exists in this library. Would you like to save as a new material? Ez az anyag már létezik ebben a könyvtárban. Szeretné új anyagként elmenteni? - + Confirm Save As Copy Mentés másolatként megerősítése - + Save as Copy Mentés másolatként - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. A másolat mentése nem ajánlott, mivel az más dokumentumok sérülését okozhatja. Javasoljuk, hogy új anyagként mentse el. - + Save Copy Másolat mentése - + Save As New Mentés újként - + Context menu Helyi menü @@ -1138,23 +1138,23 @@ Ha le van tiltva, név szerint vannak rendezve. Anyag - + Confirm Overwrite Felülírás megerősítése - - + + No writeable library Nincs írható könyvtár - + Are you sure you want to delete '%1'? Biztosan törli '%1' fájlt? - + Removing this will also remove all contents. Ennek eltávolítása az összes tartalmat is eltávolítja. @@ -1179,14 +1179,14 @@ Ha le van tiltva, név szerint vannak rendezve. Ha nem menti el, a módosítások elvesznek. - + - + Confirm Delete Törlés megerősítése - + Are you sure you want to delete the row? Biztos, hogy törölni szeretné a sort? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_it.ts b/src/Mod/Material/Gui/Resources/translations/Material_it.ts index 21d8ebe3b1..47008bade3 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_it.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_it.ts @@ -55,12 +55,12 @@ Serie 2D - + Delete row Elimina riga - + Context menu Menu contestuale @@ -694,8 +694,8 @@ Se non selezionato, saranno ordinate per il loro nome. - - + + New Folder Nuova Cartella @@ -710,62 +710,62 @@ Se non selezionato, saranno ordinate per il loro nome. Salva come ereditato - + Delete Elimina - + Are you sure you want to save over '%1'? Sei sicuro di voler salvare su '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Il salvataggio sul file originale potrebbe causare il danneggiamento di altri documenti. Questo non è raccomandato. - + Confirm Save As New Material Conferma Salva Come Nuovo Materiale - + Save as new material Salva come nuovo materiale - + This material already exists in this library. Would you like to save as a new material? Questo materiale esiste già in questa libreria. Vuoi salvare come nuovo materiale? - + Confirm Save As Copy Conferma Salva Come Copia - + Save as Copy Salva come Copia - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Il salvataggio di una copia non è raccomandato in quanto potrebbe danneggiare altri documenti. Si consiglia di salvare come nuovo materiale. - + Save Copy Salva Copia - + Save As New Salva Come Nuovo - + Context menu Menu contestuale @@ -1137,23 +1137,23 @@ Se non selezionato, saranno ordinate per il loro nome. Materiale - + Confirm Overwrite Conferma sovrascrittura - - + + No writeable library Nessuna libreria scrivibile - + Are you sure you want to delete '%1'? Sei sicuro di voler eliminare '%1'? - + Removing this will also remove all contents. Rimuovendo questo saranno rimossi anche tutti i contenuti. @@ -1178,14 +1178,14 @@ Se non selezionato, saranno ordinate per il loro nome. Non salvando, tutte le modifiche andranno perse. - + - + Confirm Delete Conferma Eliminazione - + Are you sure you want to delete the row? Sei sicuro di voler eliminare la riga? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ja.ts b/src/Mod/Material/Gui/Resources/translations/Material_ja.ts index ceeec495b4..068896d727 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ja.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ja.ts @@ -55,12 +55,12 @@ 2D 配列 - + Delete row 行を削除 - + Context menu コンテキストメニュー @@ -694,8 +694,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder 新規フォルダー @@ -710,62 +710,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete 削除 - + Are you sure you want to save over '%1'? %1 を節約しますか? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material 新しいマテリアルとして保存することを確認 - + Save as new material 新しいマテリアルとして保存 - + This material already exists in this library. Would you like to save as a new material? このマテリアルはすでにこのライブラリに存在します。新しいマテリアルとして保存しますか? - + Confirm Save As Copy コピーとして保存することを確認 - + Save as Copy コピーとして保存 - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. 他のドキュメントを壊す可能性があるため、コピーを保存することは推奨されません。新しいマテリアルとして保存することをお勧めします。 - + Save Copy コピーを保存 - + Save As New 新しく保存 - + Context menu コンテキストメニュー @@ -1137,23 +1137,23 @@ If unchecked, they will be sorted by their name. マテリアル - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? %1 を削除しますか? - + Removing this will also remove all contents. この削除により、すべてのコンテンツも削除されます。 @@ -1178,14 +1178,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete 確認して削除 - + Are you sure you want to delete the row? 行を削除しますか? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ka.ts b/src/Mod/Material/Gui/Resources/translations/Material_ka.ts index 100108823e..27960dcd8d 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ka.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ka.ts @@ -55,12 +55,12 @@ 2D მასივი - + Delete row მწკრივის წაშლა - + Context menu კონტექსტური მენიუ @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder ახალი საქაღალდე @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. შენახვა როგორც მემკვიდრეობითის - + Delete წაშლა - + Are you sure you want to save over '%1'? დარწმუნებული ბრძანდებით, რომ გნებავთ შეინახოთ '%1'-ის თავზე? - + Saving over the original file may cause other documents to break. This is not recommended. ორიგინალი ფაილის თავზე შენახვამ, შეიძლება, დოკუმენტი გააფუჭოს. ეს რეკომენდებული არაა. - + Confirm Save As New Material დაადასტურეთ ახალ მასალად შენახვა - + Save as new material შენახვა ახალ მასალად - + This material already exists in this library. Would you like to save as a new material? მასალა ბიბლიოთეკაში უკვე არსებობს. გნებავთ, შეინახოთ ის, როგორც ახალი მასალა? - + Confirm Save As Copy დაადასტურეთ ასლად შენახვა - + Save as Copy ასლად შენახვა - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. ასლის შენახვა რეკომენდებული არაა, რადგან მან სხვა დოკუმენტები შეიძლება დააზიანოს. ჩვენი რეკომენდაციაა, ის როგორც ახალი მასალა შეინახოთ. - + Save Copy ასლის შენახვა - + Save As New შენახვა, როგორც ახლის - + Context menu კონტექსტური მენიუ @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. მასალა - + Confirm Overwrite გადაწერის დადასტურება - - + + No writeable library ჩაწერადი ბიბლიოთეკის გარეშე - + Are you sure you want to delete '%1'? დარწმუნებული ბრძანდებით, რომ გნებავთ წაშალოთ '%1'? - + Removing this will also remove all contents. ამის წაშლა მის შემცველობასაც წაშლის. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. თუ არ შეინახავთ, თქვენი ცვლილებები დაიკარგება. - + - + Confirm Delete წაშლის დადასტურება - + Are you sure you want to delete the row? დარწმუნებული ხართ, რომ გნებავთ, წაშალოთ მწკრივი? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ko.ts b/src/Mod/Material/Gui/Resources/translations/Material_ko.ts index fa43e1f931..376a73fde0 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ko.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ko.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -347,7 +347,7 @@ Copy to clipboard - 클립보드에 복사하기 + 오림판에 복사하기 @@ -362,7 +362,7 @@ Internal Name: - Internal Name: + 내부 이름: @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete 삭제 - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. 재료 - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_lt.ts b/src/Mod/Material/Gui/Resources/translations/Material_lt.ts index b240b40ce0..6e985cbd6b 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_lt.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_lt.ts @@ -55,12 +55,12 @@ Dvimatis masyvas - + Delete row Naikinti eilutę - + Context menu Kontekstinis meniu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Naikinti - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Įrašymas į pirminį failą gali sugadinti dokumentą. To nepatariama daryti. - + Confirm Save As New Material Patvirtinkite, kad įrašote kaip naują medžiagą - + Save as new material Įrašyti kaip naują medžiagą - + This material already exists in this library. Would you like to save as a new material? Ši medžiaga jau yra bibliotekoje. Ar norite ją įrašyti kaip naują medžiagą? - + Confirm Save As Copy Patvirtinkite, kad saugote kaip kopiją - + Save as Copy Išsaugoti kaip kopiją - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Nerekomenduojama išsaugoti kopijos, nes tai gali sugadinti kitus dokumentus. Rekomenduojame išsaugoti kaip naują medžiagą. - + Save Copy Įrašyti &kopiją - + Save As New Įrašyti kaip naują - + Context menu Kontekstinis meniu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Medžiaga - + Confirm Overwrite Patvirtinkite perrašymą - - + + No writeable library Nėra įrašomų bibliotekų - + Are you sure you want to delete '%1'? Ar tikrai norite naikinti „%1“? - + Removing this will also remove all contents. Pašalinus tai, bus pašalintas ir visas turinys. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. Jei neįrašysite, jūsų pakeitimai bus prarasti. - + - + Confirm Delete Patvirtinti panaikinimą - + Are you sure you want to delete the row? Ar tikrai norite naikinti šią eilutę? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_nl.ts b/src/Mod/Material/Gui/Resources/translations/Material_nl.ts index fd9aef8f9e..9efaafb455 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_nl.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_nl.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Rij verwijderen - + Context menu Contextmenu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder Nieuwe map @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Opslaan als overgenomen - + Delete Verwijderen - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Opslaan als nieuw materiaal - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Opslaan als kopie bevestigen - + Save as Copy Opslaan als kopie - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Kopie opslaan - + Save As New Opslaan als nieuw - + Context menu Contextmenu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materiaal - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Verwijderen bevestigen - + Are you sure you want to delete the row? Weet u zeker dat u de rij wilt verwijderen? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_pl.ts b/src/Mod/Material/Gui/Resources/translations/Material_pl.ts index 045be114c7..f539b32a41 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_pl.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_pl.ts @@ -55,12 +55,12 @@ Szyk 2D - + Delete row Usuń wiersz - + Context menu Menu podręczne @@ -698,8 +698,8 @@ Jeśli opcja ta nie jest zaznaczona, karty będą sortowane według nazwy. - - + + New Folder Nowy katalog @@ -714,65 +714,65 @@ Jeśli opcja ta nie jest zaznaczona, karty będą sortowane według nazwy.Zapisz jako przejęte - + Delete Usuń - + Are you sure you want to save over '%1'? Czy na pewno chcesz nadpisać "%1"? - + Saving over the original file may cause other documents to break. This is not recommended. Nadpisanie oryginalnego pliku może spowodować uszkodzenie innych dokumentów. Nie jest to zalecane. - + Confirm Save As New Material Potwierdź zapisanie jako nowy materiał - + Save as new material Zapisz jako nowy materiał - + This material already exists in this library. Would you like to save as a new material? Ten materiał już istnieje w tej bibliotece. Czy chcesz zapisać go jako nowy materiał? - + Confirm Save As Copy Potwierdź zapis jako kopię - + Save as Copy Zapisz jako kopię - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Nie zaleca się zapisywania kopii, ponieważ może to spowodować uszkodzenie innych dokumentów. Najlepiej dokonać zapisu jako nowy materiał. - + Save Copy Zapisz kopię - + Save As New Zapisz jako nowy - + Context menu Menu podręczne @@ -1144,23 +1144,23 @@ Najlepiej dokonać zapisu jako nowy materiał. Materiał - + Confirm Overwrite Potwierdź zastąpienie - - + + No writeable library Brak biblioteki do zapisu - + Are you sure you want to delete '%1'? Czy na pewno chcesz usunąć "%1"? - + Removing this will also remove all contents. Usunięcie tej pozycji spowoduje również usunięcie całej zawartości. @@ -1185,14 +1185,14 @@ Najlepiej dokonać zapisu jako nowy materiał. Jeśli nie wykonasz zapisu, zmiany zostaną utracone. - + - + Confirm Delete Potwierdź usunięcie - + Are you sure you want to delete the row? Czy na pewno chcesz usunąć ten wiersz? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_pt-BR.ts b/src/Mod/Material/Gui/Resources/translations/Material_pt-BR.ts index dd18a6be07..367fe143aa 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_pt-BR.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_pt-BR.ts @@ -55,12 +55,12 @@ Matriz 2D - + Delete row Excluir linha - + Context menu Menu de contexto @@ -694,8 +694,8 @@ Se desmarcado, eles serão classificados pelo nome. - - + + New Folder Nova pasta @@ -710,62 +710,62 @@ Se desmarcado, eles serão classificados pelo nome. Salvar como herdado - + Delete Excluir - + Are you sure you want to save over '%1'? Tem certeza que deseja salvar sobre '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Salvar sobre o arquivo original pode quebrar outros documentos. Isso não é recomendado. - + Confirm Save As New Material Confirmar Salvar como novo material - + Save as new material Salvar como novo material - + This material already exists in this library. Would you like to save as a new material? Este material já existe nesta biblioteca. Gostaria de salvar como um novo material? - + Confirm Save As Copy Confirmar Salvar como cópia - + Save as Copy Salvar como cópia - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Não é recomendável salvar uma cópia pois ela pode quebrar outros documentos. Recomendamos que você salve como um novo material. - + Save Copy Salvar cópia - + Save As New Salvar como novo - + Context menu Menu de contexto @@ -1137,23 +1137,23 @@ Se desmarcado, eles serão classificados pelo nome. Material - + Confirm Overwrite Confirmar substituição - - + + No writeable library Nenhuma biblioteca gravável - + Are you sure you want to delete '%1'? Tem certeza de que deseja apagar '%1'? - + Removing this will also remove all contents. Remover isto também irá remover todo o conteúdo. @@ -1178,14 +1178,14 @@ Se desmarcado, eles serão classificados pelo nome. Se você não for salvar, suas alterações serão perdidas. - + - + Confirm Delete Confirmar a exclusão - + Are you sure you want to delete the row? Tem certeza que deseja excluir a linha? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_pt-PT.ts b/src/Mod/Material/Gui/Resources/translations/Material_pt-PT.ts index 050aa21d8a..8c23cdd8a0 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_pt-PT.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_pt-PT.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Apagar - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Material - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ro.ts b/src/Mod/Material/Gui/Resources/translations/Material_ro.ts index 1224badb9d..b931ac9cbe 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ro.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ro.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Ştergeţi - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Materialul - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_ru.ts b/src/Mod/Material/Gui/Resources/translations/Material_ru.ts index 40abcf4562..e45048b058 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_ru.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_ru.ts @@ -6,13 +6,13 @@ Inspect Appearance... - Inspect Appearance... + Изучить внешний вид... Inspect the appearance properties of the selected object - Inspect the appearance properties of the selected object + Проверьте свойства внешнего вида выбранного объекта @@ -20,13 +20,13 @@ Inspect Material... - Inspect Material... + Проверить материал... Inspect the material properties of the selected object - Inspect the material properties of the selected object + Проверка свойств материала выбранного объекта @@ -44,7 +44,7 @@ Edit material properties - Edit material properties + Редактировать свойства материала @@ -55,12 +55,12 @@ 2D Массив - + Delete row Удалить строку - + Context menu Контекстное меню @@ -133,7 +133,7 @@ Display properties - Display properties + Свойства отображения @@ -173,7 +173,7 @@ Line transparency: - Line transparency: + Прозрачность линии: @@ -183,17 +183,17 @@ Color plot: - Color plot: + Цветной график: Custom appearance: - Custom appearance: + Пользовательский вид: Point color: - Point color: + Цвет точки: @@ -206,17 +206,17 @@ Basic Appearance - Basic Appearance + Основной внешний вид Texture Appearance - Texture Appearance + Внешний вид текстур All Materials - All Materials + Все материалы @@ -239,22 +239,22 @@ Name of the active document - Name of the active document + Название активного документа Label / Internal Name - Label / Internal Name + Метка / Внутреннее Имя Sub.Shape / Type - Sub.Shape / Type + Подформа / Тип Shape.TypeID / TypeID - Shape.TypeID / TypeID + Форма.ИдентификаторТипа / ИдентификаторТипа @@ -274,27 +274,27 @@ Diffuse Color - Diffuse Color + Рассеиваемый цвет Ambient Color - Ambient Color + Окружающий цвет Emissive Color - Emissive Color + Излучаемый цвет Specular Color - Specular Color + Цвет отражения Shininess - Shininess + Яркость @@ -322,22 +322,22 @@ Name of the active document - Name of the active document + Название активного документа Label / Internal Name - Label / Internal Name + Метка / Внутреннее Имя Sub.Shape / Type - Sub.Shape / Type + Подформа / Тип Shape.TypeID / TypeID - Shape.TypeID / TypeID + Форма.ИдентификаторТипа / ИдентификаторТипа @@ -352,28 +352,28 @@ Document: - Document: + Документ: Label: - Label: + Метка: Internal Name: - Internal Name: + Внутреннее имя: Type: - Type: + Тип: TypeID: - TypeID: + TypeID: @@ -382,7 +382,7 @@ Name: - Name: + Имя: @@ -396,41 +396,41 @@ UUID: - UUID: + UUID: Library: - Library: + Директория библиотеки: Library Directory: - Library Directory: + Директория библиотеки: Sub Directory: - Sub Directory: + Поддиректория: Inherits: - Inherits: + Наследование: Model UUID: - Model UUID: + Модель UUID: Has value: - Has value: + Имеет значение: @@ -445,22 +445,22 @@ Appearance Models: - Appearance Models: + Внешний вид модели: Physical Models: - Physical Models: + Физические модели: Appearance Properties: - Appearance Properties: + Свойства внешнего вида: Physical Properties: - Physical Properties: + Физические свойства: @@ -477,12 +477,12 @@ Default Material - Default Material + Материал по умолчанию Physical - Physical + Физический @@ -495,7 +495,7 @@ Card resources - Card resources + Ресурсы карты @@ -531,28 +531,28 @@ Also material cards also from the specified directory will be listed as available. - Also material cards also from the specified directory -will be listed as available. + Также карточки материалов также из указанного каталога +будет указан как доступный. Use materials from user defined directory - Use materials from user defined directory + User directory - User directory + Каталог пользователя Card sorting and duplicates - Card sorting and duplicates + Сортировка карт и дубликаты Duplicate cards will be deleted from the displayed material card list. - Duplicate cards will be deleted from the displayed material card list. + Дубликаты карточек будут удалены из отображаемого списка карточек материалов. @@ -563,8 +563,8 @@ will be listed as available. Material cards appear sorted by their resources (locations). If unchecked, they will be sorted by their name. - Material cards appear sorted by their resources (locations). -If unchecked, they will be sorted by their name. + Карты материалов отображаются отсортированными по их ресурсам (местоположениям). +Если флажок снят, они будут отсортированы по имени. @@ -574,7 +574,7 @@ If unchecked, they will be sorted by their name. Material Selector - Material Selector + Селектор материала @@ -622,12 +622,12 @@ If unchecked, they will be sorted by their name. Thumbnail - Thumbnail + Миниатюра File... - File... + Файл... @@ -652,7 +652,7 @@ If unchecked, they will be sorted by their name. Image files (*.svg);;All files (*) - Image files (*.svg);;All files (*) + Файлы изображений (*.svg);;Все файлы (*) @@ -660,12 +660,12 @@ If unchecked, they will be sorted by their name. List Edit - List Edit + Редактировать список Delete Row - Delete Row + Удалить строку @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder Новая папка @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Сохранить как унаследованное - + Delete Удалить - + Are you sure you want to save over '%1'? - Are you sure you want to save over '%1'? + Вы уверены, что хотите сохранить более «%1»? - + Saving over the original file may cause other documents to break. This is not recommended. - Saving over the original file may cause other documents to break. This is not recommended. + Сохранение поверх исходного файла может привести к повреждению других документов. Это не рекомендуется. - + Confirm Save As New Material - Confirm Save As New Material + Подтвердить сохранение как новый материал - + Save as new material - Save as new material + Сохранить как новый материал - + This material already exists in this library. Would you like to save as a new material? - This material already exists in this library. Would you like to save as a new material? + Этот материал уже существует в этой библиотеке. Хотите сохранить как новый материал? - + Confirm Save As Copy - Confirm Save As Copy - - - - Save as Copy - Save as Copy - - - - Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. + Подтвердить сохранение как копии + Save as Copy + Сохранить как копию + + + + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. + Сохранять копию не рекомендуется, так как это может повредить другие документы. Рекомендуем сохранить как новый материал. + + + Save Copy - Save Copy + Сохранить копию - + Save As New - Save As New + Сохранить как - + Context menu Контекстное меню @@ -776,19 +776,19 @@ If unchecked, they will be sorted by their name. Launch editor - Launch editor + Запустить редактор Favorites - Favorites + Избранное Recent - Recent + Недавние @@ -816,7 +816,7 @@ If unchecked, they will be sorted by their name. Source URL - Source URL + URL-адрес источника @@ -836,7 +836,7 @@ If unchecked, they will be sorted by their name. Source Reference - Source Reference + Ссылка на источник @@ -851,27 +851,27 @@ If unchecked, they will be sorted by their name. Inherit New - Inherit New + Наследовать новое Add to favorites - Add to favorites + Добавить в избранное Physical - Physical + Физический Add physical model - Add physical model + Добавить физическую модель Delete physical model - Delete physical model + Удалить физическую модель @@ -881,12 +881,12 @@ If unchecked, they will be sorted by their name. Add appearance model - Add appearance model + Добавить модель внешнего вида Delete appearance model - Delete appearance model + Удалить модель внешнего вида @@ -896,17 +896,17 @@ If unchecked, they will be sorted by their name. Old Format Material - Old Format Material + Материал старого формата This file is in the old material card format. - This file is in the old material card format. + Этот файл находится в старом формате карты материала. This card uses the old format and must be saved before use - This card uses the old format and must be saved before use + Эта карта использует старый формат и должна быть сохранена перед использованием @@ -935,12 +935,12 @@ If unchecked, they will be sorted by their name. Favorites - Favorites + Избранное Recent - Recent + Недавние @@ -955,12 +955,12 @@ If unchecked, they will be sorted by their name. Inherit from - Inherit from + Наследовать от Inherit new material - Inherit new material + Наследовать новый материал @@ -968,7 +968,7 @@ If unchecked, they will be sorted by their name. Material Models - Material Models + Модели материалов @@ -990,7 +990,7 @@ If unchecked, they will be sorted by their name. DOI - DOI + Цифровой идентификатор (DOI) @@ -1000,7 +1000,7 @@ If unchecked, they will be sorted by their name. Add to favorites - Add to favorites + Добавить в избранное @@ -1012,17 +1012,17 @@ If unchecked, they will be sorted by their name. Favorites - Favorites + Избранное Recent - Recent + Недавние Inherited - Inherited + Унаследованный @@ -1045,7 +1045,7 @@ If unchecked, they will be sorted by their name. Text Edit - Text Edit + Редактирование текста @@ -1116,7 +1116,7 @@ If unchecked, they will be sorted by their name. Display properties - Display properties + Свойства экрана @@ -1129,7 +1129,7 @@ If unchecked, they will be sorted by their name. Material workbench - Material workbench + Верстак материалов @@ -1138,55 +1138,55 @@ If unchecked, they will be sorted by their name. Материал - + Confirm Overwrite - Confirm Overwrite + Подтвердите перезапись - - + + No writeable library - No writeable library + Нет библиотеки для записи - + Are you sure you want to delete '%1'? - Are you sure you want to delete '%1'? + Вы уверены, что хотите удалить '%1'? - + Removing this will also remove all contents. - Removing this will also remove all contents. + Это также удалит все содержимое. You must save the material before using it. - You must save the material before using it. + Вы должны сохранить материал перед его использованием. Unsaved Material - Unsaved Material + Несохраненный материал Do you want to save your changes to the material before closing? - Do you want to save your changes to the material before closing? + Вы хотите сохранить изменения в материале перед закрытием? If you don't save, your changes will be lost. - If you don't save, your changes will be lost. + Если вы не сохранитесь, все изменения будут безвозвратно утеряны. - + - + Confirm Delete Подтвердите удаление - + Are you sure you want to delete the row? Вы уверены, что хотите удалить эту строку? @@ -1197,13 +1197,13 @@ If unchecked, they will be sorted by their name. Appearance... - Appearance... + Внешний вид... Sets the display properties of the selected object - Sets the display properties of the selected object + Устанавливает свойства отображения выбранного объекта @@ -1211,13 +1211,13 @@ If unchecked, they will be sorted by their name. Material... - Material... + Материал... Sets the material of the selected object - Sets the material of the selected object + Настроить материал выбранного объекта diff --git a/src/Mod/Material/Gui/Resources/translations/Material_sl.ts b/src/Mod/Material/Gui/Resources/translations/Material_sl.ts index 81d4d938b2..3bfd385e8a 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_sl.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_sl.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Izbriši - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Snov - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_sr-CS.ts b/src/Mod/Material/Gui/Resources/translations/Material_sr-CS.ts index 649b49359b..a1f7673601 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_sr-CS.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_sr-CS.ts @@ -55,12 +55,12 @@ 2D niz - + Delete row Obriši red - + Context menu Kontekstni meni @@ -694,8 +694,8 @@ Ako nije čekirano, biće sortirani po imenima. - - + + New Folder Nova fascikla @@ -710,62 +710,62 @@ Ako nije čekirano, biće sortirani po imenima. Sačuvaj kako je nasleđeno - + Delete Obriši - + Are you sure you want to save over '%1'? Da li si siguran da želiš da sačuvaš preko '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Sačuvati preko originalne datoteke može dovesti do greške u drugim dokumentima. Ovo nije preporučljivo. - + Confirm Save As New Material Potvrdi opciju Sačuvaj kao novi materijal - + Save as new material Sačuvaj kao novi materijal - + This material already exists in this library. Would you like to save as a new material? Ovaj materijal već postoji u ovoj biblioteci. Da li želiš da ga sačuvaš kao novi materijal? - + Confirm Save As Copy Potvrdi opciju Sačuvaj kao kopiju - + Save as Copy Sačuvaj kao Kopiju - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Sačuvati kopiju se ne preporučuje jer može pokvariti druge dokumente. Preporučuje se da sačuvaš kao novi materijal. - + Save Copy Sačuvaj kopiju - + Save As New Sačuvaj kao novi - + Context menu Kontekstni meni @@ -1137,23 +1137,23 @@ Ako nije čekirano, biće sortirani po imenima. Materijal - + Confirm Overwrite Potvrdi prepis preko postojećeg - - + + No writeable library Nema biblioteke u koju je moguće pisati - + Are you sure you want to delete '%1'? Da li si siguran da želiš da obrišeš '%1'? - + Removing this will also remove all contents. Uklanjanjem ovoga, uklonićeš i sav sadržaj. @@ -1178,14 +1178,14 @@ Ako nije čekirano, biće sortirani po imenima. Ako ne sačuvaš, promene će biti izgubljene. - + - + Confirm Delete Potvrdi brisanje - + Are you sure you want to delete the row? Da li si siguran da želiš obrisati red? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_sr.ts b/src/Mod/Material/Gui/Resources/translations/Material_sr.ts index 2b5e7c1ed2..1b9703050f 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_sr.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_sr.ts @@ -55,12 +55,12 @@ 2Д низ - + Delete row Обриши ред - + Context menu Контекстни мени @@ -694,8 +694,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder Нова фасцикла @@ -710,62 +710,62 @@ If unchecked, they will be sorted by their name. Сачувај како је наслеђено - + Delete Обриши - + Are you sure you want to save over '%1'? Да ли си сигуран да желиш да саћуваш преко '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Сачувати преко оригиналне датотеке може довести до грешке у другим документима. Ово није препоручљиво. - + Confirm Save As New Material Потврди опцију Сачувај као нови материјал - + Save as new material Сачувај као нови материјал - + This material already exists in this library. Would you like to save as a new material? Овај материјал већ постоји у овој библиотеци. Да ли желиш да га сачуваш као нови материјал? - + Confirm Save As Copy Потврди опцију Сачувај као копију - + Save as Copy Сачувај као копију - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Сачувати копију се не препоручује јер може покварити друге документе. Препоручује се да сачуваш као нови материјал. - + Save Copy Сачувај копију - + Save As New Сачувај као нови - + Context menu Контекстни мени @@ -1137,23 +1137,23 @@ If unchecked, they will be sorted by their name. Материјал - + Confirm Overwrite Потврди препис преко постојећег - - + + No writeable library Нема библиотеке у коју је могуће писати - + Are you sure you want to delete '%1'? Да ли си сигуран да желиш да обришеш '%1'? - + Removing this will also remove all contents. Уклањањем овога, уклонићеш и сав садржај. @@ -1178,14 +1178,14 @@ If unchecked, they will be sorted by their name. Ако не cачуваш, промене ће бити изгубљене. - + - + Confirm Delete Потврди брисање - + Are you sure you want to delete the row? Да ли си сигуран да желиш да обришеш ред? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_sv-SE.ts b/src/Mod/Material/Gui/Resources/translations/Material_sv-SE.ts index b1994a8213..29b1576f0e 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_sv-SE.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_sv-SE.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Radera - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Material - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_tr.ts b/src/Mod/Material/Gui/Resources/translations/Material_tr.ts index 5308881cdd..312e16a506 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_tr.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_tr.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Sil - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Malzeme - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_uk.ts b/src/Mod/Material/Gui/Resources/translations/Material_uk.ts index 55fcdeb0cf..23d20848c3 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_uk.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_uk.ts @@ -55,12 +55,12 @@ Масив 2D - + Delete row Видалити рядок - + Context menu Контекстне меню @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder Нова папка @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Зберегти як успадкований - + Delete Видалити - + Are you sure you want to save over '%1'? Ви впевнені, що хочете зберегти '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Збереження замість оригінального файлу може призвести до пошкодження інших документів. Ми не рекомендуємо цього робити. - + Confirm Save As New Material Підтвердити "Зберегти як новий матеріал" - + Save as new material Зберегти як новий матеріал - + This material already exists in this library. Would you like to save as a new material? В цій бібліотеці такий матеріал вже існує. Ви бажаєте зберегти його як новий матеріал? - + Confirm Save As Copy Підтвердити "Зберегти як копію" - + Save as Copy Зберегти як копію - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Не рекомендується зберігати копію, оскільки це може пошкодити інші документи. Ми рекомендуємо зберігати як новий матеріал. - + Save Copy Зберегти копію - + Save As New Зберегти як новий - + Context menu Контекстне меню @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Матеріал - + Confirm Overwrite Підтвердити перезапис - - + + No writeable library Немає бібліотеки для запису - + Are you sure you want to delete '%1'? Ви впевнені, що хочете видалити '%1'? - + Removing this will also remove all contents. Видалення призведе до видалення всього вмісту. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. Якщо ви не збережете' зміни, вони будуть втрачені. - + - + Confirm Delete Підтвердити видалення - + Are you sure you want to delete the row? Ви дійсно бажаєте видалити цей рядок? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_val-ES.ts b/src/Mod/Material/Gui/Resources/translations/Material_val-ES.ts index d4bf25db4a..fcf02fb4c4 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_val-ES.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_val-ES.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete Elimina - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. Material - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_zh-CN.ts b/src/Mod/Material/Gui/Resources/translations/Material_zh-CN.ts index fe540dcd14..88d97aec87 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_zh-CN.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_zh-CN.ts @@ -55,12 +55,12 @@ 二维阵列 - + Delete row 删除行 - + Context menu 下拉菜单 @@ -694,8 +694,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -710,62 +710,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete 删除 - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy 另存为副本 - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. 不建议保存副本,因为它可以破坏其他文档。我们建议您将其保存为新材料。 - + Save Copy 保存副本 - + Save As New 另存为 - + Context menu 下拉菜单 @@ -1137,23 +1137,23 @@ If unchecked, they will be sorted by their name. 材质 - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1178,14 +1178,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete 确认删除 - + Are you sure you want to delete the row? 您确定要删除此行吗? diff --git a/src/Mod/Material/Gui/Resources/translations/Material_zh-TW.ts b/src/Mod/Material/Gui/Resources/translations/Material_zh-TW.ts index 1f70eaea2e..4189df2925 100644 --- a/src/Mod/Material/Gui/Resources/translations/Material_zh-TW.ts +++ b/src/Mod/Material/Gui/Resources/translations/Material_zh-TW.ts @@ -55,12 +55,12 @@ 2D Array - + Delete row Delete row - + Context menu Context menu @@ -188,7 +188,7 @@ Custom appearance: - Custom appearance: + 自訂外觀: @@ -695,8 +695,8 @@ If unchecked, they will be sorted by their name. - - + + New Folder New Folder @@ -711,62 +711,62 @@ If unchecked, they will be sorted by their name. Save as Inherited - + Delete 刪除 - + Are you sure you want to save over '%1'? Are you sure you want to save over '%1'? - + Saving over the original file may cause other documents to break. This is not recommended. Saving over the original file may cause other documents to break. This is not recommended. - + Confirm Save As New Material Confirm Save As New Material - + Save as new material Save as new material - + This material already exists in this library. Would you like to save as a new material? This material already exists in this library. Would you like to save as a new material? - + Confirm Save As Copy Confirm Save As Copy - + Save as Copy Save as Copy - + Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. Saving a copy is not recommended as it can break other documents. We recommend you save as a new material. - + Save Copy Save Copy - + Save As New Save As New - + Context menu Context menu @@ -806,7 +806,7 @@ If unchecked, they will be sorted by their name. Parent - Parent + @@ -1138,23 +1138,23 @@ If unchecked, they will be sorted by their name. 材質 - + Confirm Overwrite Confirm Overwrite - - + + No writeable library No writeable library - + Are you sure you want to delete '%1'? Are you sure you want to delete '%1'? - + Removing this will also remove all contents. Removing this will also remove all contents. @@ -1179,14 +1179,14 @@ If unchecked, they will be sorted by their name. If you don't save, your changes will be lost. - + - + Confirm Delete Confirm Delete - + Are you sure you want to delete the row? Are you sure you want to delete the row? diff --git a/src/Mod/Material/MaterialEditor.py b/src/Mod/Material/MaterialEditor.py index 63b1ab0a41..dc997a9efa 100644 --- a/src/Mod/Material/MaterialEditor.py +++ b/src/Mod/Material/MaterialEditor.py @@ -69,7 +69,7 @@ class MaterialEditor: self.iconPath = (filePath + "Resources" + os.sep + "icons" + os.sep) # load the UI file from the same directory as this script - self.widget = FreeCADGui.PySideUic.loadUi(filePath + "Resources" + os.sep + "ui" + os.sep + "materials-editor.ui") + self.widget = FreeCADGui.PySideUic.loadUi(":/ui/materials-editor.ui") # remove unused Help button self.widget.setWindowFlags(self.widget.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint) diff --git a/src/Mod/Measure/App/Measurement.cpp b/src/Mod/Measure/App/Measurement.cpp index 7068f3801b..ff8c42edeb 100644 --- a/src/Mod/Measure/App/Measurement.cpp +++ b/src/Mod/Measure/App/Measurement.cpp @@ -42,6 +42,7 @@ #include #include +#include #include #include @@ -122,6 +123,7 @@ MeasureType Measurement::findType() int torus = 0; int spheres = 0; int vols = 0; + int other = 0; for (; obj != objects.end(); ++obj, ++subEl) { @@ -183,12 +185,16 @@ MeasureType Measurement::findType() } } break; default: + other++; break; } } } - if (vols > 0) { + if (other > 0) { + mode = MeasureType::Invalid; + } + else if (vols > 0) { if (verts > 0 || edges > 0 || faces > 0) { mode = MeasureType::Invalid; } @@ -281,27 +287,26 @@ MeasureType Measurement::getType() return measureType; } -TopoDS_Shape Measurement::getShape(App::DocumentObject* obj, const char* subName) const +TopoDS_Shape Measurement::getShape(App::DocumentObject* rootObj, const char* subName) const { - // temporary fix to get "Vertex7" from "Body003.Pocket020.Vertex7" - // when selected, Body features are provided as featureName and subNameAndIndex - // other sources provide the full extended name with index - if (strcmp(subName, "") == 0) { - return Part::Feature::getShape(obj); - } - std::string workingSubName(subName); - size_t lastDot = workingSubName.rfind('.'); - if (lastDot != std::string::npos) { - workingSubName = workingSubName.substr(lastDot + 1); + std::vector names = Base::Tools::splitSubName(subName); + + if (names.empty() || names.back() == "") { + TopoDS_Shape shape = Part::Feature::getShape(rootObj); + if (shape.IsNull()) { + throw Part::NullShapeException("null shape in measurement"); + } + return shape; } try { + App::DocumentObject* obj = rootObj->getSubObject(subName); + Part::TopoShape partShape = Part::Feature::getTopoShape(obj); - App::GeoFeature* geoFeat = dynamic_cast(obj); - if (geoFeat) { - partShape.setPlacement(geoFeat->globalPlacement()); - } - TopoDS_Shape shape = partShape.getSubShape(workingSubName.c_str()); + + partShape.setPlacement(App::GeoFeature::getGlobalPlacement(obj, rootObj, subName)); + + TopoDS_Shape shape = partShape.getSubShape(names.back().c_str()); if (shape.IsNull()) { throw Part::NullShapeException("null shape in measurement"); } diff --git a/src/Mod/Measure/Gui/Command.cpp b/src/Mod/Measure/Gui/Command.cpp index e8d6ba8810..03f778c5ed 100644 --- a/src/Mod/Measure/Gui/Command.cpp +++ b/src/Mod/Measure/Gui/Command.cpp @@ -57,6 +57,7 @@ void StdCmdMeasure::activated(int iMsg) Q_UNUSED(iMsg); Gui::TaskMeasure* task = new Gui::TaskMeasure(); + task->setDocumentName(this->getDocument()->getName()); Gui::Control().showDialog(task); } diff --git a/src/Mod/Measure/Gui/QuickMeasure.cpp b/src/Mod/Measure/Gui/QuickMeasure.cpp index af142c7c31..7d513505d5 100644 --- a/src/Mod/Measure/Gui/QuickMeasure.cpp +++ b/src/Mod/Measure/Gui/QuickMeasure.cpp @@ -117,19 +117,23 @@ void QuickMeasure::addSelectionToMeasurement() int count = 0; int limit = 100; - for (auto& selObj : Gui::Selection().getSelectionEx()) { - App::DocumentObject* obj = selObj.getObject(); - + // Lambda function to check whether to continue + auto shouldSkip = [](App::DocumentObject* obj) { std::string vpType = obj->getViewProviderName(); auto* vp = Gui::Application::Instance->getViewProvider(obj); - if ((vpType == "SketcherGui::ViewProviderSketch" && vp->isEditing()) + return (vpType == "SketcherGui::ViewProviderSketch" && vp->isEditing()) || vpType.find("Gui::ViewProviderOrigin") != std::string::npos || vpType.find("Gui::ViewProviderPart") != std::string::npos || vpType.find("SpreadsheetGui") != std::string::npos - || vpType.find("TechDrawGui") != std::string::npos) { - continue; - } + || vpType.find("TechDrawGui") != std::string::npos; + }; + auto selObjs = Gui::Selection().getSelectionEx(nullptr, + App::DocumentObject::getClassTypeId(), + Gui::ResolveMode::NoResolve); + + for (auto& selObj : selObjs) { + App::DocumentObject* rootObj = selObj.getObject(); const std::vector subNames = selObj.getSubNames(); // Check that there's not too many selection @@ -140,12 +144,19 @@ void QuickMeasure::addSelectionToMeasurement() } if (subNames.empty()) { - measurement->addReference3D(obj, ""); - } - else { - for (auto& subName : subNames) { - measurement->addReference3D(obj, subName); + if (!shouldSkip(rootObj)) { + measurement->addReference3D(rootObj, ""); } + continue; + } + + for (auto& subName : subNames) { + App::DocumentObject* obj = rootObj->getSubObject(subName.c_str()); + + if (shouldSkip(obj)) { + continue; + } + measurement->addReference3D(rootObj, subName); } } } diff --git a/src/Mod/Measure/Gui/TaskMeasure.cpp b/src/Mod/Measure/Gui/TaskMeasure.cpp index a227c31f4e..f1d0eeba9f 100644 --- a/src/Mod/Measure/Gui/TaskMeasure.cpp +++ b/src/Mod/Measure/Gui/TaskMeasure.cpp @@ -115,7 +115,7 @@ TaskMeasure::TaskMeasure() App::GetApplication().setActiveTransaction("Add Measurement"); } - + setAutoCloseOnDeletedDocument(true); // Call invoke method delayed, otherwise the dialog might not be fully initialized QTimer::singleShot(0, this, &TaskMeasure::invoke); } @@ -250,7 +250,9 @@ void TaskMeasure::saveObject() } _mDocument = App::GetApplication().getActiveDocument(); - _mDocument->addObject(_mMeasureObject, _mMeasureType->label.c_str()); + _mDocument->addObject(_mMeasureObject, + modeSwitch->currentIndex() != 0 ? modeSwitch->currentText().toLatin1() + : QString().toLatin1()); } @@ -280,8 +282,6 @@ void TaskMeasure::update() valueResult->setText(QString::asprintf("-")); - // Get valid measure type - std::string mode = explicitMode ? modeSwitch->currentText().toStdString() : ""; App::MeasureSelection selection; @@ -292,13 +292,15 @@ void TaskMeasure::update() selection.push_back(item); } + // Get valid measure type + App::MeasureType* measureType = nullptr; auto measureTypes = App::MeasureManager::getValidMeasureTypes(selection, mode); if (measureTypes.size() > 0) { - _mMeasureType = measureTypes.front(); + measureType = measureTypes.front(); } - if (!_mMeasureType) { + if (!measureType) { // Note: If there's no valid measure type we might just restart the selection, // however this requires enough coverage of measuretypes that we can access all of them @@ -317,13 +319,12 @@ void TaskMeasure::update() } // Update tool mode display - setModeSilent(_mMeasureType); + setModeSilent(measureType); - if (!_mMeasureObject - || _mMeasureType->measureObject != _mMeasureObject->getTypeId().getName()) { + if (!_mMeasureObject || measureType->measureObject != _mMeasureObject->getTypeId().getName()) { // we don't already have a measureobject or it isn't the same type as the new one removeObject(); - createObject(_mMeasureType); + createObject(measureType); } // we have a valid measure object so we can enable the annotate button @@ -386,6 +387,7 @@ bool TaskMeasure::apply() { saveObject(); ensureGroup(_mMeasureObject); + _mMeasureObject = nullptr; reset(); // Commit transaction @@ -407,7 +409,6 @@ bool TaskMeasure::reject() void TaskMeasure::reset() { // Reset tool state - _mMeasureType = nullptr; _mMeasureObject = nullptr; this->clearSelection(); diff --git a/src/Mod/Measure/Gui/TaskMeasure.h b/src/Mod/Measure/Gui/TaskMeasure.h index f56e07eeb8..d41ca6e203 100644 --- a/src/Mod/Measure/Gui/TaskMeasure.h +++ b/src/Mod/Measure/Gui/TaskMeasure.h @@ -72,7 +72,6 @@ private: App::Document* _mDocument = nullptr; Gui::Document* _mGuiDocument = nullptr; - App::MeasureType* _mMeasureType = nullptr; Measure::MeasureBase* _mMeasureObject = nullptr; Gui::ViewProviderDocumentObject* _mViewObject = nullptr; diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts index a7c9987052..fa714c89d8 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_cs.ts @@ -2046,7 +2046,7 @@ to a smoother appearance. X: %1 Y: %2 Z: %3 - X: %1 Y: %2 Z: %3 + X: %1 Y: %2 Z: %3 diff --git a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ko.ts b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ko.ts index 05a2bf681b..1b41459bce 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_ko.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_ko.ts @@ -1954,7 +1954,7 @@ to a smoother appearance. Center - 센터 + 중심 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 fc2db05c15..8e3094df66 100644 --- a/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts +++ b/src/Mod/Mesh/Gui/Resources/translations/Mesh_zh-TW.ts @@ -1494,10 +1494,10 @@ to a smoother appearance. If face angle ≥ crease angle, facet shading is used If face angle < crease angle, smooth shading is used - Crease angle is a threshold angle between two faces. + 折痕角是兩個面之間的閾值角度。 - If face angle ≥ crease angle, facet shading is used - If face angle < crease angle, smooth shading is used +如果面角 ≥ 折痕角,則使用面片陰影 +如果面角 < 折痕角,則使用平滑陰影 diff --git a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts index ba405c7248..17bc19a6d6 100644 --- a/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts +++ b/src/Mod/MeshPart/Gui/Resources/translations/MeshPart_zh-TW.ts @@ -44,7 +44,7 @@ This command only works with a 'mesh' object. Mesh - Mesh + 網格 @@ -62,7 +62,7 @@ This command only works with a 'mesh' object. Mesh - Mesh + @@ -80,7 +80,7 @@ This command only works with a 'mesh' object. Mesh - Mesh + @@ -172,7 +172,7 @@ This command only works with a 'mesh' object. Failure - Failure + 失敗 @@ -242,27 +242,27 @@ This command only works with a 'mesh' object, not a regular face or surface. To Split threshold - Split threshold + 分割閾值 Spline Approximation - Spline Approximation + Spline 逼近 Tolerance to mesh - Tolerance to mesh + 網格容差 Continuity - Continuity + 連續性 Maximum curve degree - Maximum curve degree + 最大曲線階數 diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm index 16036bd548..4afe240876 100644 Binary files a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm and b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.qm differ diff --git a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts index 02fb1b35a2..41c740596b 100644 --- a/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts +++ b/src/Mod/OpenSCAD/Resources/translations/OpenSCAD_ja.ts @@ -107,17 +107,17 @@ Maximum fragment size - Maximum fragment size + 最大フラグメントサイズ angle (fa) - angle (fa) + 角度 (fa) Convexity - Convexity + 凸面 @@ -168,33 +168,33 @@ It looks like you may be using a Snap version of OpenSCAD. - It looks like you may be using a Snap version of OpenSCAD. + Snap 版の OpenSCAD を使用しているようです。 If OpenSCAD execution fails to load the temporary file, use FreeCAD's OpenSCAD Workbench Preferences to change the transfer mechanism. - If OpenSCAD execution fails to load the temporary file, use FreeCAD's OpenSCAD Workbench Preferences to change the transfer mechanism. + OpenSCAD が一時ファイルの読み込みに失敗する場合は FreeCAD の OpenSCAD ワークベンチのユーザー設定で転送方法を変更してください。 It looks like you may be using a sandboxed version of FreeCAD. - It looks like you may be using a sandboxed version of FreeCAD. + サンドボックス版の FreeCAD を使用しているようです。 Unable to explode %s - Unable to explode %s + %s を分解できません Convert Edges to Faces - Convert Edges to Faces + エッジを面に変換 Please select 3 objects first - Please select 3 objects first + 最初に3つのオブジェクトを選択してください @@ -226,7 +226,7 @@ Clear code - Clear code + コードをクリア @@ -242,13 +242,13 @@ as Mesh - as Mesh + メッシュとして Add OpenSCAD Element - Add OpenSCAD Element + OpenSCAD 要素を追加 @@ -270,13 +270,13 @@ Perform - Perform + 実行 Mesh Boolean - Mesh Boolean + メッシュのブール演算 @@ -286,18 +286,18 @@ OpenSCAD file contains both 2D and 3D shapes. That is not supported in this importer, all shapes must have the same dimensionality. - OpenSCAD file contains both 2D and 3D shapes. That is not supported in this importer, all shapes must have the same dimensionality. + OpenSCAD ファイルには、2次元形状と3次元形状の両方が含まれています。このインポートではサポートされていません。すべての形状は同じ次元である必要があります。 Error: either all shapes must be 2D or all shapes must be 3D - Error: either all shapes must be 2D or all shapes must be 3D + エラー:形状はすべて2Dか、すべて3Dでなければなりません Unsupported Function - Unsupported Function + サポートされていない関数です @@ -311,12 +311,12 @@ Explode Group - Explode Group + グループを分解 Remove fusion, apply placement to children, and color randomly - Remove fusion, apply placement to children, and color randomly + 結合を解除し、 子要素の位置と色をランダムに設定 @@ -324,12 +324,12 @@ Color Shapes - Color Shapes + 形状に着色 Color Shapes by validity and type - Color Shapes by validity and type + 有効性と種類に従って形状を着色 @@ -337,7 +337,7 @@ Convert Edges To Faces - Convert Edges To Faces + エッジを面に変換 @@ -345,12 +345,12 @@ Refine Shape Feature - Refine Shape Feature + 高精度形状フィーチャー Create Refine Shape Feature - Create Refine Shape Feature + 高精度形状フィーチャーを作成 @@ -358,12 +358,12 @@ Mirror Mesh Feature... - Mirror Mesh Feature... + 鏡像メッシュフィーチャー... Create Mirror Mesh Feature - Create Mirror Mesh Feature + 鏡像メッシュフィーチャーを作成 @@ -371,12 +371,12 @@ Scale Mesh Feature... - Scale Mesh Feature... + 拡大縮小メッシュフィーチャー... Create Scale Mesh Feature - Create Scale Mesh Feature + 拡大縮小メッシュフィーチャーを作成 @@ -384,12 +384,12 @@ Resize Mesh Feature... - Resize Mesh Feature... + サイズ変更メッシュフィーチャー... Create Resize Mesh Feature - Create Resize Mesh Feature + サイズ変更メッシュフィーチャーを作成 @@ -397,12 +397,12 @@ Increase Tolerance Feature - Increase Tolerance Feature + トレランス増加フィーチャー Create Feature that allows increasing the tolerance - Create Feature that allows increasing the tolerance + トレランスを増加できるようにするフィーチャーを作成 @@ -410,12 +410,12 @@ Expand Placements - Expand Placements + 配置を展開 Expand all placements downwards in the Tree view - Expand all placements downwards in the Tree view + ツリー ビューですべての配置を下に展開 @@ -423,12 +423,12 @@ Replace Object - Replace Object + オブジェクトの置換 Replace an object in the Tree view. Please select old, new, and parent object - Replace an object in the Tree view. Please select old, new, and parent object + ツリービューのオブジェクトを置換します。古いオブジェクト、新規オブジェクト、親オブジェクトを選択してください。 @@ -436,12 +436,12 @@ Remove Objects and their Children - Remove Objects and their Children + オブジェクトとその子オブジェクトを削除 Removes the selected objects and all children that are not referenced from other objects - Removes the selected objects and all children that are not referenced from other objects + 選択したオブジェクトと他のオブジェクトから参照されていないすべての子オブジェクトを削除 @@ -449,12 +449,12 @@ Add OpenSCAD Element... - Add OpenSCAD Element... + OpenSCAD 要素を追加... Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary - Add an OpenSCAD element by entering OpenSCAD code and executing the OpenSCAD binary + OpenSCADコードを入力してOpenSCADバイナリを実行することでOpenSCAD要素を追加 @@ -462,12 +462,12 @@ Mesh Boolean... - Mesh Boolean... + メッシュのブール演算... Export objects as meshes and use OpenSCAD to perform a boolean operation - Export objects as meshes and use OpenSCAD to perform a boolean operation + オブジェクトをメッシュとしてエクスポートし、OpenSCAD を使用してブール演算を実行 @@ -493,7 +493,7 @@ Frequently-used Part WB tools - Frequently-used Part WB tools + よく使用される Part ワークベンチのツール diff --git a/src/Mod/Part/App/MeasureClient.cpp b/src/Mod/Part/App/MeasureClient.cpp index bd1f9605ea..2239b9865a 100644 --- a/src/Mod/Part/App/MeasureClient.cpp +++ b/src/Mod/Part/App/MeasureClient.cpp @@ -48,6 +48,7 @@ #include #include #include +#include #include #include #include @@ -60,6 +61,7 @@ using namespace Part; + // From: https://github.com/Celemation/FreeCAD/blob/joel_selection_summary_demo/src/Gui/SelectionSummary.cpp // Should work with edges and wires @@ -102,10 +104,8 @@ TopoDS_Shape getLocatedShape(const App::SubObjectT& subject, Base::Matrix4D* mat return {}; } - auto gf = dynamic_cast(obj); - if (gf) { - shape.setPlacement(gf->globalPlacement()); - } + auto placement = App::GeoFeature::getGlobalPlacement(obj, subject.getObject(), subject.getSubName()); + shape.setPlacement(placement); // Don't get the subShape from datum elements if (obj->getTypeId().isDerivedFrom(Part::Datum::getClassTypeId())) { diff --git a/src/Mod/Part/App/PartFeatures.cpp b/src/Mod/Part/App/PartFeatures.cpp index 4e456f0e0f..f9e5643fcb 100644 --- a/src/Mod/Part/App/PartFeatures.cpp +++ b/src/Mod/Part/App/PartFeatures.cpp @@ -126,9 +126,15 @@ App::DocumentObjectExecReturn* RuledSurface::execute() std::vector shapes; std::array links = {&Curve1, &Curve2}; for (auto link : links) { + App::DocumentObject* obj = link->getValue(); + const Part::TopoShape part = Part::Feature::getTopoShape(obj); + if (part.isNull()) { + return new App::DocumentObjectExecReturn("No shape linked."); + } + // if no explicit sub-shape is selected use the whole part const auto& subs = link->getSubValues(); if (subs.empty()) { - shapes.push_back(getTopoShape(link->getValue())); + shapes.push_back(part); } else if (subs.size() != 1) { return new App::DocumentObjectExecReturn("Not exactly one sub-shape linked."); diff --git a/src/Mod/Part/App/PropertyTopoShape.cpp b/src/Mod/Part/App/PropertyTopoShape.cpp index b392c75577..17c4123325 100644 --- a/src/Mod/Part/App/PropertyTopoShape.cpp +++ b/src/Mod/Part/App/PropertyTopoShape.cpp @@ -389,11 +389,12 @@ void PropertyPartShape::Restore(Base::XMLReader &reader) } } } else if(owner && !owner->getDocument()->testStatus(App::Document::PartialDoc)) { + // Toponaming 09/2024: Original code has an infrastructure for document parameters we aren't bringing in: // if(App::DocumentParams::getWarnRecomputeOnRestore()) { - if( true ) { - FC_WARN("Pending recompute for generating element map: " << owner->getFullName()); - owner->getDocument()->addRecomputeObject(owner); - } + // However, this warning appeared on all files without element maps, and is now superseded by a user dialog + // after loading that is triggered by any call to addRecomputeObject() + // FC_WARN("Pending recompute for generating element map: " << owner->getFullName()); + owner->getDocument()->addRecomputeObject(owner); } if (!shape.isNull() || !_Shape.isNull()) { diff --git a/src/Mod/Part/App/Tools.cpp b/src/Mod/Part/App/Tools.cpp index 980c23e86d..93ce969ec9 100644 --- a/src/Mod/Part/App/Tools.cpp +++ b/src/Mod/Part/App/Tools.cpp @@ -28,6 +28,7 @@ # include # include # include +# include # include # include # include @@ -744,3 +745,37 @@ TopLoc_Location Part::Tools::fromPlacement(const Base::Placement& plm) trf.SetTransformation(gp_Quaternion(q1, q2, q3, q4), gp_Vec(t.x, t.y, t.z)); return {trf}; } + +bool Part::Tools::isConcave(const TopoDS_Face &face, const gp_Pnt &pointOfVue, const gp_Dir &direction){ + bool result = false; + + Handle(Geom_Surface) surf = BRep_Tool::Surface(face); + GeomAdaptor_Surface adapt(surf); + if(adapt.GetType() == GeomAbs_Plane){ + return false; + } + + // create a line through the point of vue + gp_Lin line; + line.SetLocation(pointOfVue); + line.SetDirection(direction); + + // Find intersection of line with the face + BRepIntCurveSurface_Inter mkSection; + mkSection.Init(face, line, Precision::Confusion()); + + result = mkSection.Transition() == IntCurveSurface_In; + + // compute normals at the intersection + gp_Pnt iPnt; + gp_Vec dU, dV; + surf->D1(mkSection.U(), mkSection.V(), iPnt, dU, dV); + + // check normals orientation + gp_Dir dirdU(dU); + result = (dirdU.Angle(direction) - M_PI_2) <= Precision::Confusion(); + gp_Dir dirdV(dV); + result = result || ((dirdV.Angle(direction) - M_PI_2) <= Precision::Confusion()); + + return result; +} diff --git a/src/Mod/Part/App/Tools.h b/src/Mod/Part/App/Tools.h index d5885d62b1..eec971dba8 100644 --- a/src/Mod/Part/App/Tools.h +++ b/src/Mod/Part/App/Tools.h @@ -225,6 +225,16 @@ public: * \return TopLoc_Location */ static TopLoc_Location fromPlacement(const Base::Placement&); + + /*! + * \brief isConcave + * \param face + * \param pointOfVue + * \param direction + * \return true if the face is concave when shown from pointOfVue and looking into direction + * and false otherwise, plane case included. + */ + static bool isConcave(const TopoDS_Face &face, const gp_Pnt &pointOfVue, const gp_Dir &direction); }; } //namespace Part diff --git a/src/Mod/Part/App/TopoShape.h b/src/Mod/Part/App/TopoShape.h index 9154de03d1..d7c8902b15 100644 --- a/src/Mod/Part/App/TopoShape.h +++ b/src/Mod/Part/App/TopoShape.h @@ -25,6 +25,7 @@ #include #include +#include #include #include diff --git a/src/Mod/Part/App/TopoShapeExpansion.cpp b/src/Mod/Part/App/TopoShapeExpansion.cpp index b68dd9f056..8527fecee7 100644 --- a/src/Mod/Part/App/TopoShapeExpansion.cpp +++ b/src/Mod/Part/App/TopoShapeExpansion.cpp @@ -104,6 +104,8 @@ #include #include +#include "Tools.h" + FC_LOG_LEVEL_INIT("TopoShape", true, true) // NOLINT #if OCC_VERSION_HEX >= 0x070600 @@ -2163,9 +2165,6 @@ TopoShape& TopoShape::makeElementRuledSurface(const std::vector& shap } auto countOfWires = s.countSubShapes(TopAbs_WIRE); if (countOfWires > 1) { - FC_THROWM(Base::CADKernelError, "Input shape has more than one wire"); - } - if (countOfWires == 1) { curves[i++] = s.getSubTopoShape(TopAbs_WIRE, 1); continue; } @@ -4231,6 +4230,14 @@ TopoShape& TopoShape::makeElementPrismUntil(const TopoShape& _base, BRepFeat_MakePrism PrismMaker; + // don't remove limits of concave face + if (checkLimits && __uptoface.shapeType(true) == TopAbs_FACE){ + Base::Vector3d vCog; + profile.getCenterOfGravity(vCog); + gp_Pnt pCog(vCog.x, vCog.y, vCog.z); + checkLimits = ! Part::Tools::isConcave(TopoDS::Face(__uptoface.getShape()), pCog , direction); + } + TopoShape _uptoface(__uptoface); if (checkLimits && _uptoface.shapeType(true) == TopAbs_FACE && !BRep_Tool::NaturalRestriction(TopoDS::Face(_uptoface.getShape()))) { @@ -4252,7 +4259,8 @@ TopoShape& TopoShape::makeElementPrismUntil(const TopoShape& _base, // Check whether the face has limits or not. Unlimited faces have no wire // Note: Datum planes are always unlimited - if (checkLimits && _uptoface.shapeType(true) == TopAbs_FACE && uptoface.hasSubShape(TopAbs_WIRE)) { + if (checkLimits && uptoface.shapeType(true) == TopAbs_FACE + && uptoface.hasSubShape(TopAbs_WIRE)) { TopoDS_Face face = TopoDS::Face(uptoface.getShape()); bool remove_limits = false; // Remove the limits of the upToFace so that the extrusion works even if profile is larger @@ -4292,10 +4300,7 @@ TopoShape& TopoShape::makeElementPrismUntil(const TopoShape& _base, // use the placement of the adapter, not of the upToFace loc = TopLoc_Location(adapt.Trsf()); BRepBuilderAPI_MakeFace mkFace(adapt.Surface().Surface(), Precision::Confusion()); - if (!mkFace.IsDone()) { - remove_limits = false; - } - else { + if (mkFace.IsDone()) { uptoface.setShape(located(mkFace.Shape(), loc), false); } } diff --git a/src/Mod/Part/Gui/Resources/translations/Part.ts b/src/Mod/Part/Gui/Resources/translations/Part.ts index 6ab215ebab..87b8c924d2 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part.ts @@ -2213,7 +2213,7 @@ of projection. - + Loft @@ -2244,7 +2244,7 @@ of projection. - + Sweep @@ -4334,27 +4334,27 @@ the sketch plane's normal vector will be used - + Too few elements - + At least two vertices, edges, wires or faces are required. - + Input error - + Vertex/Edge/Wire/Face - + Loft @@ -4705,69 +4705,69 @@ only created cuts will be visible - + Too few elements - + At least one edge or wire is required. - + Invalid selection - + Select one or more edges from a single object. - + Wrong selection - + '%1' cannot be used as profile and path. - + Input error - + Done - + Select one or more connected edges in the 3d view and press 'Done' - - + + Sweep path - - + + The selected sweep path is invalid. - + Vertex/Wire - + Sweep @@ -5397,7 +5397,7 @@ Individual boolean operation checks: - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. @@ -5900,7 +5900,7 @@ Do you want to continue? - + Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_be.ts b/src/Mod/Part/Gui/Resources/translations/Part_be.ts index 35bbe7c7e9..42dc20c080 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_be.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_be.ts @@ -2217,7 +2217,7 @@ of projection. Змяніць колер грані - + Loft Профіль @@ -2248,7 +2248,7 @@ of projection. Суцэльны - + Sweep Выцягнуць @@ -3155,8 +3155,7 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Калі птушка, зліццё злучэння будзе выконвацца падчас чытання файла (павольней, але дакладней). @@ -4359,27 +4358,27 @@ the sketch plane's normal vector will be used Абраныя профілі - + Too few elements Занадта мала элементаў - + At least two vertices, edges, wires or faces are required. Неабходна па меншай меры дзве вяршыні, рэбры, ломаныя лініі ці грані. - + Input error Памылка ўводу - + Vertex/Edge/Wire/Face Вяршыня/Рабро/Ломаная лінія/Грань - + Loft Профіль @@ -4732,69 +4731,69 @@ only created cuts will be visible Абраныя профілі - + Too few elements Занадта мала элементаў - + At least one edge or wire is required. Патрабуецца прынамсі адно рабро ці ломаная лінія. - + Invalid selection Хібны выбар - + Select one or more edges from a single object. Абраць адзін ці некалькі рэбраў аднаго аб'екту. - + Wrong selection Няправільны выбар - + '%1' cannot be used as profile and path. '%1' не атрымалася ўжываць у якасці профілю і траекторыі. - + Input error Памылка ўводу - + Done Гатова - + Select one or more connected edges in the 3d view and press 'Done' Абярыце адно ці некалькі злучаных рэбраў у трохмерным прадстаўленні, і націсніце 'Гатова' - - + + Sweep path Траекторыя выцягвання - - + + The selected sweep path is invalid. Хібная абраная траекторыя выцягвання. - + Vertex/Wire Vertex/Wire - + Sweep Выцягнуць @@ -5441,7 +5440,7 @@ Individual boolean operation checks: Вектар Фрэне - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Абярыце адзін ці некалькі профіляў, і абярыце рабро ці ломаную лінію ў трохмерным прадстаўленні для траекторыі выцягвання. @@ -5947,7 +5946,7 @@ Do you want to continue? Змяніць праекцыю - + Set appearance per face... Задаць знешні выгляд для кожнай грані... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ca.ts b/src/Mod/Part/Gui/Resources/translations/Part_ca.ts index c4eea75784..1f57afc7e0 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ca.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ca.ts @@ -1396,12 +1396,12 @@ Offset: - Separació: + Equidistància: Tools to offset shapes (construct parallel shapes) - Eines per compensar les formes (construir formes paral·leles) + Eines per a l'equidistància de les formes (construir formes paral·leles) @@ -1742,12 +1742,12 @@ 3D Offset... - Offset 3D... + Equidistància 3D... Utility to offset in 3D - Utilitat per a Offset ò separar en 3D + Utilitat per a l'equidistància 3D @@ -1760,12 +1760,12 @@ 2D Offset... - 2D Offset... ( Compensació)... + Equidistància 2D... Utility to offset planar shapes - Utilitat per a separar les formes d'un pla + Utilitat per a l'equidistància de les formes d'un pla @@ -2163,12 +2163,12 @@ de projecció. Make Offset - Desplassar, Ofsset + Fer equidistància Make 2D Offset - Desplassar 2D + Fer equidistància 2D @@ -2216,7 +2216,7 @@ de projecció. Cambiar colors de la cara - + Loft Altell @@ -2247,7 +2247,7 @@ de projecció. Sòlid - + Sweep Escombrar @@ -2297,7 +2297,7 @@ de projecció. Attachment Offset (in local coordinates): - Desplaçament de l'adjunt (en coordenades locals): + Equidistància de l'adjunt (en coordenades locals): @@ -2615,9 +2615,7 @@ dins de la propietat Placement. Export invisible objects - Exporta objectes invisibles - - + Exporta objectes invisibles @@ -3156,8 +3154,8 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Si està marcat, la fusió composta es farà +durant la lectura del fitxer (detalls més lents però més alts). @@ -4357,27 +4355,27 @@ s'utilitzarà el vector normal del pla d'esbós Perfils seleccionats - + Too few elements També alguns elements - + At least two vertices, edges, wires or faces are required. Calen com a mínim dos vèrtexs, arestes, Fils o cares. - + Input error Error d'entrada - + Vertex/Edge/Wire/Face Vèrtex/Marge/cable/cara - + Loft Altell @@ -4509,7 +4507,7 @@ s'utilitzarà el vector normal del pla d'esbós Offset - Equidistancia (ofset) + Equidistància @@ -4730,69 +4728,69 @@ només seran visibles els talls creats Perfils seleccionats - + Too few elements També alguns elements - + At least one edge or wire is required. Es requereix almenys una vora o filferro. - + Invalid selection Selecció no vàlid - + Select one or more edges from a single object. Seleccioneu una o més vores d'un sol objecte. - + Wrong selection Selecció incorrecta - + '%1' cannot be used as profile and path. '%1' no es pot utilitzar com a perfil i recorregut. - + Input error Error d'entrada - + Done Fet - + Select one or more connected edges in the 3d view and press 'Done' Seleccioneu un o més vores connectats a la vista 3D i premi "Fet" - - + + Sweep path Trajecte d'escombrat - - + + The selected sweep path is invalid. La trajectòria d'escombrat seleccionat no és vàlid ". - + Vertex/Wire Vertex/Wire - + Sweep Escombrar @@ -4833,7 +4831,7 @@ només seran visibles els talls creats Attachment Offset (in local coordinates): - Desplaçament de l'adjunt (en coordenades locals): + Equidistància de l'adjunt (en coordenades locals): @@ -4904,7 +4902,7 @@ de l'objecte que s'adjunta. Flip side of attachment and offset - Invertir de costat l'adjunt i desplassar + Invertir de costat l'adjunt i desplaçar @@ -4939,7 +4937,7 @@ de l'objecte que s'adjunta. Attachment Offset (inactive - not attached): - Òfset adjunt (inactiu - no adjunts): + Equidistància adjunt (inactiu - no adjunts): @@ -4969,7 +4967,7 @@ de l'objecte que s'adjunta. Not editable because rotation of AttachmentOffset is bound by expressions. - No es pot editar perquè la rotació està restringida per la superposiciò de les expressions. + No es pot editar perquè la rotació Equidistància adjunt està restringida per les expressions. @@ -5280,7 +5278,7 @@ Comprovacions d'operació booleana individual: Offset - Equidistancia (ofset) + Equidistància @@ -5431,7 +5429,7 @@ Comprovacions d'operació booleana individual: Angle Fix - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Seleccioneu un o més perfils i seleccioneu un avantatge o filferro a la visualització en 3D per al camí d'escombrat. @@ -5935,7 +5933,7 @@ Do you want to continue? Editar projecció - + Set appearance per face... Estableix l'aparença per cara... @@ -6301,12 +6299,12 @@ Crearà un "Filtre compost" per a cada forma. Attachment Offset (in local coordinates): - Desplaçament de l'adjunt (en coordenades locals): + Equidistància de l'adjunt (en coordenades locals): Attachment Offset (inactive - not attached): - Òfset adjunt (inactiu - no adjunts): + Equidistància adjunt (inactiu - no adjunts): diff --git a/src/Mod/Part/Gui/Resources/translations/Part_cs.ts b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts index d94fa536c8..8eb4d367e6 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_cs.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_cs.ts @@ -2215,7 +2215,7 @@ Pohled kamery určuje směr projekce. Změnit barvy plochy - + Loft Profilování @@ -2246,7 +2246,7 @@ Pohled kamery určuje směr projekce. Těleso - + Sweep Tažení @@ -3154,8 +3154,8 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Je-li zaškrtnuto, při čtení souboru budou vytvořeny +složeniny (pomalejší ale s podrobnějšími detaily). @@ -4359,27 +4359,27 @@ bude použit normálový vektor roviny náčrtu Vybrané profily - + Too few elements Příliž málo elemnetů - + At least two vertices, edges, wires or faces are required. Nejméně dva body, hrany, dráty, nebo plochy jsou požadovány. - + Input error Chyba zadání - + Vertex/Edge/Wire/Face Bod/Hrana/Drát/Plocha - + Loft Profilování @@ -4736,69 +4736,69 @@ budou viditelné pouze vytvořené řezy Vybrané profily - + Too few elements Příliž málo elemnetů - + At least one edge or wire is required. Je vyžadován alespoň jedna hrana nebo křivka. - + Invalid selection Neplatný výběr - + Select one or more edges from a single object. Vyberte jeden nebo více hran z jednoho objektu. - + Wrong selection Neplatný výběr - + '%1' cannot be used as profile and path. '%1' nemůže být použit jako profil a cesta. - + Input error Chyba zadání - + Done Hotovo - + Select one or more connected edges in the 3d view and press 'Done' Vyberte jednu nebo více spojitých hran v 3D pohledu a stiskněte "Hotovo" - - + + Sweep path Tažení po křivce - - + + The selected sweep path is invalid. Vybraná dráha Tažení je neplatná. - + Vertex/Wire Vrchol/Drát - + Sweep Tažení @@ -5440,7 +5440,7 @@ Jednotlivé kontroly booleovských operací: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Vyberte jeden nebo více profilů a vyberte hranu nebo křivku jako trajektorii tažení ve 3D pohledu. @@ -5944,7 +5944,7 @@ Chcete pokračovat? Upravit projekci - + Set appearance per face... Nastavit vzhled pro plochu... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_da.ts b/src/Mod/Part/Gui/Resources/translations/Part_da.ts index 7e66c22e78..02efe26480 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_da.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_da.ts @@ -2216,7 +2216,7 @@ of projection. Change face colors - + Loft Loft @@ -2247,7 +2247,7 @@ of projection. Solid - + Sweep Sweep @@ -4260,7 +4260,7 @@ will be used or black. Text color - Text color + Tekstfarve @@ -4361,27 +4361,27 @@ the sketch plane's normal vector will be used Selected profiles - + Too few elements Too few elements - + At least two vertices, edges, wires or faces are required. At least two vertices, edges, wires or faces are required. - + Input error Input error - + Vertex/Edge/Wire/Face Vertex/Edge/Wire/Face - + Loft Loft @@ -4513,7 +4513,7 @@ the sketch plane's normal vector will be used Offset - Offset + Forskydning @@ -4738,69 +4738,69 @@ only created cuts will be visible Selected profiles - + Too few elements Too few elements - + At least one edge or wire is required. At least one edge or wire is required. - + Invalid selection Ugyldigt valg - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Wrong selection - + '%1' cannot be used as profile and path. '%1' cannot be used as profile and path. - + Input error Input error - + Done Done - + Select one or more connected edges in the 3d view and press 'Done' Select one or more connected edges in the 3d view and press 'Done' - - + + Sweep path Sweep path - - + + The selected sweep path is invalid. The selected sweep path is invalid. - + Vertex/Wire Vertex/Wire - + Sweep Sweep @@ -5293,7 +5293,7 @@ Individual boolean operation checks: Offset - Offset + Forskydning @@ -5444,7 +5444,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Select one or more profiles and select an edge or wire @@ -5949,7 +5949,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_de.ts b/src/Mod/Part/Gui/Resources/translations/Part_de.ts index 7ba504ae41..a7d46dfa61 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_de.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_de.ts @@ -2216,7 +2216,7 @@ der Projektion. Flächenfarben ändern - + Loft Ausformung @@ -2247,7 +2247,7 @@ der Projektion. Festkörper - + Sweep Sweep @@ -3157,8 +3157,7 @@ Bitte zuerst ein oder mehrere Kantenelemente markieren. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Wenn aktiviert, werden beim Lesen der Datei die Körper zusammengeführt (langsamer, aber höhere Details). @@ -4359,27 +4358,27 @@ der Normalenvektor der Skizze verwendet Ausgewählte Profile - + Too few elements Zu wenig Elemente - + At least two vertices, edges, wires or faces are required. Es werden mindestens zwei Knoten, Kanten, Kantenzüge oder Flächen benötigt. - + Input error Eingabefehler - + Vertex/Edge/Wire/Face Knoten/Kante/Kantenzug/Fläche - + Loft Ausformung @@ -4735,69 +4734,69 @@ nur die beschnittenen Objeke sichtbar Ausgewählte Profile - + Too few elements Zu wenig Elemente - + At least one edge or wire is required. Mindestens eine Kante oder ein Kantenzug ist erforderlich. - + Invalid selection Ungültige Auswahl - + Select one or more edges from a single object. Eine oder mehrere Kanten eines einzelnen Objekts auswählen. - + Wrong selection Falsche Auswahl - + '%1' cannot be used as profile and path. '%1' kann nicht als Profil und Pfad verwendet werden. - + Input error Eingabefehler - + Done Fertig - + Select one or more connected edges in the 3d view and press 'Done' Eine oder mehrere verbundene Kanten in der 3D Ansicht auswählen und auf 'Fertig' drücken - - + + Sweep path Sweep-Pfad - - + + The selected sweep path is invalid. Der gewählte Sweep-Pfad ist ungültig. - + Vertex/Wire Knoten/Draht - + Sweep Sweep @@ -5434,7 +5433,7 @@ Einzelne Überprüfungen boolescher Verknüpfungen: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Ein oder mehrere Profile und dann eine Kante oder einen Kantenzug @@ -5938,7 +5937,7 @@ Do you want to continue? Projektion bearbeiten - + Set appearance per face... Aussehen flächenweise festlegen... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_el.ts b/src/Mod/Part/Gui/Resources/translations/Part_el.ts index 2373481d9b..b24c47b02f 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_el.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_el.ts @@ -226,7 +226,7 @@ Vertex AttachmentPoint mode caption - Vertex + Κορυφή @@ -570,13 +570,13 @@ XY parallel to plane AttachmentPlane mode caption - XY parallel to plane + XY παράλληλο προς το επίπεδο X' Y' plane is parallel to the plane (object's XY) and passes through the vertex AttachmentPlane mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex + Το επίπεδο X' Y' είναι παράλληλο προς το επίπεδο (XY του αντικειμένου) και διέρχεται από την κορυφή @@ -779,13 +779,13 @@ XY parallel to plane Attachment3D mode caption - XY parallel to plane + XY παράλληλο προς το επίπεδο X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. Attachment3D mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. + Το επίπεδο X' Y' είναι παράλληλο προς το επίπεδο (XY του αντικειμένου) και διέρχεται από την κορυφή. @@ -1219,7 +1219,7 @@ Set the color of each individual face of the selected object. - Set the color of each individual face of the selected object. + Ορίστε ξεχωριστά το χρώμα της κάθε έδρας του επιλεγμένου αντικειμένου. @@ -1360,7 +1360,7 @@ Compound tools - Compound tools + Σύνθετα εργαλεία @@ -1396,7 +1396,7 @@ Offset: - Offset: + Μετατόπιση: @@ -1544,12 +1544,12 @@ Create shape element copy - Create shape element copy + Δημιουργία αντιγράφου στοιχείου σχήματος Create a non-parametric copy of the selected shape element - Create a non-parametric copy of the selected shape element + Δημιουργία ενός μη παραμετρικού αντιγράφου του επιλεγμένου στοιχείου σχήματος @@ -1562,7 +1562,7 @@ Export CAD file... - Export CAD file... + Εξαγωγή αρχείου CAD... @@ -1634,7 +1634,7 @@ Import CAD file... - Import CAD file... + Εισαγωγή αρχείου CAD... @@ -2128,7 +2128,7 @@ of projection. Fusion - Fusion + Συγχώνευση @@ -2216,7 +2216,7 @@ of projection. Change face colors - + Loft Παρεμβολή ορθογώνιων διατομών @@ -2247,7 +2247,7 @@ of projection. Στερεό - + Sweep Σάρωση @@ -4362,27 +4362,27 @@ the sketch plane's normal vector will be used Επιλεγμένα προφίλ - + Too few elements Πολύ λίγα στοιχεία - + At least two vertices, edges, wires or faces are required. Απαιτούνται τουλάχιστον δύο κορυφές, ακμές, σύρματα ή όψεις. - + Input error Σφάλμα εισαγωγής - + Vertex/Edge/Wire/Face Κορυφή/Ακμή/Σύρμα/Όψη - + Loft Παρεμβολή ορθογώνιων διατομών @@ -4739,69 +4739,69 @@ only created cuts will be visible Επιλεγμένα προφίλ - + Too few elements Πολύ λίγα στοιχεία - + At least one edge or wire is required. Απαιτείται τουλάχιστον μία ακμή ή ένα σύρμα. - + Invalid selection Μη έγκυρη επιλογή - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Λάθος επιλογή - + '%1' cannot be used as profile and path. Το '%1' δεν μπορεί να χρησιμοποιηθεί ως προφίλ και διαδρομή. - + Input error Σφάλμα εισαγωγής - + Done Έγινε - + Select one or more connected edges in the 3d view and press 'Done' Επιλέξτε μια ή περισσότερες συνδεδεμένες ακμές στην τρισδιάστατη προβολή και πιέστε την επιλογή 'Έγινε' - - + + Sweep path Διαδρομή σάρωσης - - + + The selected sweep path is invalid. Η επιλεγμένη διαδρομή σάρωσης είναι μη έγκυρη. - + Vertex/Wire Vertex/Wire - + Sweep Σάρωση @@ -5444,7 +5444,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Επιλέξτε ένα ή περισσότερα προφίλ και στη συνέχεια επιλέξτε μια ακμή ή ένα σύρμα στην Τρισδιάστατη προβολή ως διαδρομή σάρωσης. @@ -5949,7 +5949,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_es-AR.ts b/src/Mod/Part/Gui/Resources/translations/Part_es-AR.ts index c3e4872a29..d669332a91 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_es-AR.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_es-AR.ts @@ -2216,7 +2216,7 @@ de proyección. Cambiar colores de cara - + Loft Puente @@ -2247,7 +2247,7 @@ de proyección. Sólido - + Sweep Barrido @@ -3157,8 +3157,8 @@ Por favor seleccione primero una o más aristas. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Si está marcado, se realizará una fusión compuesta durante +la lectura del archivo (más lenta pero con más detalles). @@ -4362,27 +4362,27 @@ se utilizará el vector normal del plano de croquis Perfiles seleccionados - + Too few elements Muy pocos elementos - + At least two vertices, edges, wires or faces are required. Se requieren al menos dos vértices, aristas, alambres o caras. - + Input error Error de entrada - + Vertex/Edge/Wire/Face Vértice/Arista/Alambre/Cara - + Loft Puente @@ -4739,69 +4739,69 @@ solo los cortes creados serán visibles Perfiles seleccionados - + Too few elements Muy pocos elementos - + At least one edge or wire is required. Se requiere al menos una arista o alambre. - + Invalid selection Selección inválida - + Select one or more edges from a single object. Seleccione uno o más aristas de un solo objeto. - + Wrong selection Selección Incorrecta - + '%1' cannot be used as profile and path. '%1' no puede usarse como perfil y trayectoria. - + Input error Error de entrada - + Done Hecho - + Select one or more connected edges in the 3d view and press 'Done' Seleccione una o más aristas conectadas en la vista tridimensional y pulse 'Hecho' - - + + Sweep path Trayectoria de barrido - - + + The selected sweep path is invalid. La trayectoria de barrido seleccionada es inválida. - + Vertex/Wire Vertex/Wire - + Sweep Barrido @@ -5444,7 +5444,7 @@ Comprobación de operaciones booleanas individuales: Ángulo fijo - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Seleccione uno o más perfiles y seleccione una arista o alambre en la vista tridimensional para la trayectoria de barrido. @@ -5948,7 +5948,7 @@ Do you want to continue? Editar proyección - + Set appearance per face... Establecer apariencia para cada cara... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts index 76dee1fb83..333ef993cb 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_es-ES.ts @@ -2216,7 +2216,7 @@ de proyección. Cambiar colores de cara - + Loft Proyección @@ -2247,7 +2247,7 @@ de proyección. Sólido - + Sweep Barrido @@ -3156,8 +3156,8 @@ Por favor selecciona primero una o más aristas. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Si está marcado, se realizará una fusión compuesta durante +la lectura del archivo (más lenta pero con más detalles). @@ -4359,27 +4359,27 @@ se utilizará el vector normal del plano de croquis Perfiles seleccionados - + Too few elements Demasiados pocos elementos - + At least two vertices, edges, wires or faces are required. Se necesitan al menos dos vértices, aristas o alambres. - + Input error Error de entrada - + Vertex/Edge/Wire/Face Vértice/Arista/Alambre/Cara - + Loft Proyección @@ -4736,69 +4736,69 @@ solo los cortes creados serán visibles Perfiles seleccionados - + Too few elements Demasiados pocos elementos - + At least one edge or wire is required. Se requiere al menos una arista o linea es requerida. - + Invalid selection Selección inválida - + Select one or more edges from a single object. Seleccione uno o más aristas de un solo objeto. - + Wrong selection Selección incorrecta - + '%1' cannot be used as profile and path. '%1' no puede usarse como perfil y trayectoria. - + Input error Error de entrada - + Done Hecho - + Select one or more connected edges in the 3d view and press 'Done' Seleccione uno o más vértices conectados en la vista 3d y pulse 'Hecho' - - + + Sweep path Ruta de barrido - - + + The selected sweep path is invalid. Trayectoria no válida para el barrido. - + Vertex/Wire Vertex/Wire - + Sweep Barrido @@ -5439,7 +5439,7 @@ Comprobación de operaciones booleanas individuales: Ángulo fijo - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Seleccionar uno o más perfiles y seleccione una arista o alambre en la vista 3D para el trazado de barrido. @@ -5943,7 +5943,7 @@ Do you want to continue? Editar proyección - + Set appearance per face... Establecer apariencia para cada cara... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_eu.ts b/src/Mod/Part/Gui/Resources/translations/Part_eu.ts index a4eb5fffdc..edf58c18a0 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_eu.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_eu.ts @@ -2216,7 +2216,7 @@ zehazten du. Aldatu aurpegi-koloreak - + Loft Jaurti @@ -2247,7 +2247,7 @@ zehazten du. Solidoa - + Sweep Ekortu @@ -4360,27 +4360,27 @@ bestela krokisaren planoren bektore normala erabiliko da Hautatutako profilak - + Too few elements Elementu gutxiegi - + At least two vertices, edges, wires or faces are required. Gutxienez bi erpin, ertz, alanbre edo aurpegi behar dira. - + Input error Sarrera-errorea - + Vertex/Edge/Wire/Face Erpina/Ertza/Alanbrea/Aurpegia - + Loft Jaurti @@ -4737,69 +4737,69 @@ sortutako mozketak soilik daude ikusgai Hautatutako profilak - + Too few elements Elementu gutxiegi - + At least one edge or wire is required. Gutxienez ertz bat edo alanbre bat behar da. - + Invalid selection Baliogabeko hautapena - + Select one or more edges from a single object. Hautatu objektu bakar baten ertz bat edo gehiago. - + Wrong selection Hautapen okerra - + '%1' cannot be used as profile and path. '%1' ezin da erabili profil eta bide gisa. - + Input error Sarrera-errorea - + Done Egina - + Select one or more connected edges in the 3d view and press 'Done' Hautatu konektatutako ertz bat edo gehiago 3D bistan eta sakatu 'Egina' - - + + Sweep path Ekortze-bidea - - + + The selected sweep path is invalid. Hautatutako ekortze-bidea baliogabea da. - + Vertex/Wire Erpina/alanbrea - + Sweep Ekortu @@ -5441,7 +5441,7 @@ Eragiketa boolearren banakako egiaztatzeak: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Hautatu profil bat edo gehiago eta hautatu ertz bat edo alanbre bat @@ -5945,7 +5945,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fi.ts b/src/Mod/Part/Gui/Resources/translations/Part_fi.ts index 489d408e93..819f918b0e 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_fi.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_fi.ts @@ -2213,7 +2213,7 @@ of projection. Change face colors - + Loft Profiilivenytys @@ -2244,7 +2244,7 @@ of projection. Kiintomuoto - + Sweep Pyyhkäise @@ -4359,27 +4359,27 @@ the sketch plane's normal vector will be used Valitut profiilit - + Too few elements Liian vähän elementtejä - + At least two vertices, edges, wires or faces are required. Tarvitaan vähintään kaksi pistettä, reunaa, lankaa tai pintatahkoa. - + Input error Syötteen virhe - + Vertex/Edge/Wire/Face Kärkipiste/reuna/lanka/pintatahko - + Loft Profiilivenytys @@ -4736,69 +4736,69 @@ only created cuts will be visible Valitut profiilit - + Too few elements Liian vähän elementtejä - + At least one edge or wire is required. Tarvitaan vähintään yksi reuna tai lanka. - + Invalid selection Virheellinen valinta - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Virheellinen valinta - + '%1' cannot be used as profile and path. Objektia '%1' ei voi käyttää sekä profiilina että reittinä. - + Input error Syötteen virhe - + Done Valmis - + Select one or more connected edges in the 3d view and press 'Done' Valitse vähintään yksi kytketty reuna 3d-näkymässä ja paina 'Valmis' - - + + Sweep path Pyyhkäisyreitti - - + + The selected sweep path is invalid. Valittu pyyhkäisyreitti on virheellinen. - + Vertex/Wire Kärkipiste/Lanka - + Sweep Pyyhkäise @@ -5442,7 +5442,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Valitse vähintään yksi profiili, ja valitse 3D näkymästä @@ -5947,7 +5947,7 @@ Haluatko jatkaa? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_fr.ts b/src/Mod/Part/Gui/Resources/translations/Part_fr.ts index 41ad49cc91..ea108f0025 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_fr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_fr.ts @@ -2214,7 +2214,7 @@ La vue de la caméra détermine la direction de la projection. Changer les couleurs des faces - + Loft Lissage @@ -2245,7 +2245,7 @@ La vue de la caméra détermine la direction de la projection. Solide - + Sweep Balayage @@ -3151,8 +3151,7 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Si cette case est cochée, aucune fusion de composés ne sera faite au cours de la lecture du fichier (plus lent mais plus détaillé). @@ -4354,27 +4353,27 @@ le vecteur normal du plan de l'esquisse sera utilisé Profils sélectionnés - + Too few elements Trop peu d'éléments - + At least two vertices, edges, wires or faces are required. Au moins deux sommets, arêtes, fils ou faces sont requis. - + Input error Erreur de saisie - + Vertex/Edge/Wire/Face Sommet/arête/polyligne/face - + Loft Lissage @@ -4728,70 +4727,70 @@ only created cuts will be visible Profils sélectionnés - + Too few elements Trop peu d'éléments - + At least one edge or wire is required. Au moins une arête ou un fil est requis. - + Invalid selection Sélection non valide - + Select one or more edges from a single object. Sélectionner une ou plusieurs arêtes à partir d'un seul objet - + Wrong selection Sélection invalide - + '%1' cannot be used as profile and path. '%1' ne peut pas servir de profil et de trajectoire. - + Input error Erreur de saisie - + Done - Confirmer + Valider - + Select one or more connected edges in the 3d view and press 'Done' Sélectionner une ou plusieurs arêtes connectées dans la vue 3D -et appuyer sur "Confirmer". +et appuyer sur "Valider". - - + + Sweep path Trajectoire de balayage - - + + The selected sweep path is invalid. La trajectoire de balayage sélectionnée n'est pas valide. - + Vertex/Wire Sommet/polyligne - + Sweep Balayage @@ -5304,12 +5303,12 @@ Valeur par défaut : true Skin - Peau + Objet creux Pipe - Tuyau + Tube @@ -5445,7 +5444,7 @@ Valeur par défaut : true Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Sélectionnez au moins un profil dans la liste, puis une arête ou une polyligne dans la vue 3D comme trajectoire. @@ -5491,12 +5490,12 @@ in the 3D view for the sweep path. Select faces of the source object and press 'Done' - Sélectionner des faces de l'objet source et cliquer sur "Confirmer" + Sélectionner des faces de l'objet source et cliquer sur "Valider" Done - Confirmer + Valider @@ -5949,7 +5948,7 @@ Voulez-vous continuer ? Modifier la projection - + Set appearance per face... Définir l'apparence par face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hr.ts b/src/Mod/Part/Gui/Resources/translations/Part_hr.ts index b2b5ac041f..cbe9a3ad59 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_hr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_hr.ts @@ -2221,7 +2221,7 @@ projekcije. Promijeni boju lica - + Loft Tuba @@ -2252,7 +2252,7 @@ projekcije. Čvrsto tijelo - + Sweep Zamah @@ -4374,27 +4374,27 @@ u suprotnom koristit će se normalni vektor ravnine skice Odabrani profili - + Too few elements Premalo elemenata - + At least two vertices, edges, wires or faces are required. Najmanje su potrebna dva vrha, ruba, žice, ili naličja. - + Input error Pogreška na ulazu - + Vertex/Edge/Wire/Face Vrh/Rub/Žice/Naličja - + Loft Tuba @@ -4751,71 +4751,71 @@ bit će vidljivi samo stvoreni rezovi Odabrani profili - + Too few elements Premalo elemenata - + At least one edge or wire is required. Potreban je barem jedan rub ili žica. - + Invalid selection Nevažeći odabir - + Select one or more edges from a single object. Odaberite jedan ili više rubova iz jednog objekta. - + Wrong selection Pogrešan odabir - + '%1' cannot be used as profile and path. '%1' nije moguće koristiti kao profil i put. - + Input error Pogreška na ulazu - + Done Gotovo - + Select one or more connected edges in the 3d view and press 'Done' Odaberite jedan ili više povezanih rubova u 3d prikazu i pritisnite 'Gotovo' - - + + Sweep path Staza zamaha - - + + The selected sweep path is invalid. Odabrani zamah puta je nevažeći. - + Vertex/Wire Vrh/Žica - + Sweep Zamah @@ -5462,7 +5462,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Odaberi jedan ili više profila i odaberi rub ili žicu @@ -5966,7 +5966,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_hu.ts b/src/Mod/Part/Gui/Resources/translations/Part_hu.ts index 036f7207b6..6b48c35b4c 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_hu.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_hu.ts @@ -2216,7 +2216,7 @@ irányát. Felületi színek megváltoztatása - + Loft Szint @@ -2247,7 +2247,7 @@ irányát. Szilárd test - + Sweep Húzás @@ -3156,8 +3156,8 @@ Kérem, válasszon ki legalább egyet. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Ha ez bejelölt, kapcsolat egyesítés történik +a fájl olvasása közben (lassabb, de pontosabb). @@ -4360,27 +4360,27 @@ the sketch plane's normal vector will be used Kiválasztott profilok - + Too few elements Túl kevés elem - + At least two vertices, edges, wires or faces are required. Szükséges legalább két csúcspont, él, drótháló vagy felület. - + Input error Bemeneti hiba - + Vertex/Edge/Wire/Face Csúcspont/Él/Drótváz/Felület - + Loft Szint @@ -4736,69 +4736,69 @@ only created cuts will be visible Kiválasztott profilok - + Too few elements Túl kevés elem - + At least one edge or wire is required. Szükséges legalább egy él vagy háló. - + Invalid selection Érvénytelen kijelölés - + Select one or more edges from a single object. Jelöljön ki egy vagy több szegélyt egyetlen tárgyból. - + Wrong selection Rossz kijelölés - + '%1' cannot be used as profile and path. '%1' profilként és elérési útként nem használható. - + Input error Bemeneti hiba - + Done Kész - + Select one or more connected edges in the 3d view and press 'Done' Jelöljön ki egy vagy több csatlakoztatott élt a 3D-s nézetben, és nyomjon a "Kész"-re - - + + Sweep path Húzás elérési útja - - + + The selected sweep path is invalid. A kijelölt pásztázási (sweep) út érvénytelen. - + Vertex/Wire Végpont/Vonal - + Sweep Húzás @@ -5440,7 +5440,7 @@ Egyedi logikai művelet ellenőrzés: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Válassz egy vagy több profilt és válassza ki a szegélyt vagy hálót 3D nézetben a húzás irányához. @@ -5943,7 +5943,7 @@ Do you want to continue? Kivetítés szerkesztése - + Set appearance per face... Megjelenés beállítása felületenként... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_it.ts b/src/Mod/Part/Gui/Resources/translations/Part_it.ts index 82651bec96..562a11ed68 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_it.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_it.ts @@ -2208,7 +2208,7 @@ della proiezione. Edit attachment - Modifica allegato + Modifica associazione @@ -2216,7 +2216,7 @@ della proiezione. Cambia i colori della faccia - + Loft Loft @@ -2247,7 +2247,7 @@ della proiezione. Solido - + Sweep Sweep @@ -3157,8 +3157,7 @@ Selezionare prima uno o più spigoli. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Selezionando questa opzione, durante la lettura del file viene eseguita l' unione di composti (più lento, ma con maggiori dettagli). @@ -4358,27 +4357,27 @@ verrà utilizzato il vettore normale del piano di schizzo Profili selezionati - + Too few elements Elementi insufficienti - + At least two vertices, edges, wires or faces are required. Sono richiesti almeno due vertici, spigoli, polilinee o facce. - + Input error Errore di input - + Vertex/Edge/Wire/Face Vertice/Spigolo/Polilinea/Faccia - + Loft Loft @@ -4735,69 +4734,69 @@ saranno visibili solo i tagli creati Profili selezionati - + Too few elements Elementi insufficienti - + At least one edge or wire is required. Selezionare almeno un bordo o una polilinea. - + Invalid selection Selezione non valida - + Select one or more edges from a single object. Selezionare uno o più bordi di un singolo oggetto. - + Wrong selection Selezione errata - + '%1' cannot be used as profile and path. '%1' non può essere utilizzato come profilo e percorso. - + Input error Errore di input - + Done Fatto - + Select one or more connected edges in the 3d view and press 'Done' Selezionare uno o più bordi connessi nella vista 3d e poi premere 'Fatto' - - + + Sweep path Percorso di sweep - - + + The selected sweep path is invalid. Il percorso sweep selezionato non è valido. - + Vertex/Wire Vertice/Wire - + Sweep Sweep @@ -5441,7 +5440,7 @@ Controlli individuali delle operazioni booleane: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Selezionare uno o più profili e selezionare un bordo o una polilinea nella vista 3D per definire il percorso di sweep. @@ -5921,7 +5920,7 @@ Do you want to continue? Attachment editor - Editor allegato + Editor associazione @@ -5944,7 +5943,7 @@ Do you want to continue? Modifica proiezione - + Set appearance per face... Imposta aspetto per la faccia... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts index c097c6c98b..68950b0710 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ja.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ja.ts @@ -2216,7 +2216,7 @@ of projection. 面の色を変更 - + Loft ロフト @@ -2247,7 +2247,7 @@ of projection. ソリッド - + Sweep スイープ @@ -3153,8 +3153,7 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + チェックされている場合、ファイル読み込み中にコンパウンドのマージを行ないます(処理は遅くなりますが高精度になります)。 @@ -4354,27 +4353,27 @@ the sketch plane's normal vector will be used 選択したプロファイル - + Too few elements 要素が少なすぎます - + At least two vertices, edges, wires or faces are required. 少なくとも 2 つの頂点、稜線、ワイヤまたは面を必要とします。 - + Input error 入力エラー - + Vertex/Edge/Wire/Face 頂点/辺/法線/面 - + Loft ロフト @@ -4727,69 +4726,69 @@ only created cuts will be visible 選択したプロファイル - + Too few elements 要素が少なすぎます - + At least one edge or wire is required. 少なくとも1つのエッジまたはワイヤーが必要です。 - + Invalid selection 無効な選択です。 - + Select one or more edges from a single object. 1 つのオブジェクトから 1 つ以上のエッジを選択 - + Wrong selection 誤った選択 - + '%1' cannot be used as profile and path. '%1' は、プロファルおよびパスとして使用できません。 - + Input error 入力エラー - + Done 終了 - + Select one or more connected edges in the 3d view and press 'Done' 3Dビューで1つまたは複数の接続エッジを選択して「終了」を押してください - - + + Sweep path スイープパス - - + + The selected sweep path is invalid. 選択されたスイープ経路が正しくありません。 - + Vertex/Wire 頂点/連線 - + Sweep スイープ @@ -5425,7 +5424,7 @@ Individual boolean operation checks: フレネ - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. スイープパス用に3Dビューで1つまたは複数のプロファイルを選択し、 @@ -5929,7 +5928,7 @@ Do you want to continue? 投影を編集 - + Set appearance per face... 面ごとの外観を設定... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ka.ts b/src/Mod/Part/Gui/Resources/translations/Part_ka.ts index 94c127e875..4118ca5dc5 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ka.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ka.ts @@ -2215,7 +2215,7 @@ of projection. ზედაპირის ფერების შეცვლა - + Loft პროფილი @@ -2246,7 +2246,7 @@ of projection. მყარი - + Sweep შლილი @@ -4359,27 +4359,27 @@ the sketch plane's normal vector will be used მონიშნული პროფილები - + Too few elements ძალიან ცოტა ელემენტი - + At least two vertices, edges, wires or faces are required. სულ ცოტა, საჭიროა ორი წვერო, წიბო, პოლიხაზი ან ზედაპირი. - + Input error შეყვანის შეცდომა - + Vertex/Edge/Wire/Face წვერო/წიბო/პოლიხაზი/ზედაპირი - + Loft პროფილი @@ -4735,69 +4735,69 @@ only created cuts will be visible მონიშნული პროფილები - + Too few elements ძალიან ცოტა ელემენტი - + At least one edge or wire is required. საჭიროა ერთი წიბო ან პოლიხაზი მაინც. - + Invalid selection არასწორი მონიშნული - + Select one or more edges from a single object. მონიშნეთ ერთი ობიექტის ერთი ან მეტი წიბო. - + Wrong selection არასწორი არჩევანი - + '%1' cannot be used as profile and path. %1-ის გამოყენება პროფილად და ტრაექტორიად შეუძლებელია. - + Input error შეყვანის შეცდომა - + Done მზადაა - + Select one or more connected edges in the 3d view and press 'Done' 3D ხედში მონიშნეთ ერთი ან მეტი დაკავშირებული წიბო და დააწექით "დასრულება"-ს - - + + Sweep path შლილის ტრაექტორია - - + + The selected sweep path is invalid. მონიშნული შლილის ტრაექტორია არასწორია. - + Vertex/Wire Vertex/Wire - + Sweep შლილი @@ -5436,7 +5436,7 @@ Individual boolean operation checks: ფრენე - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. 3D ხედში შლილის ტრეაქტორიისთვის აირჩიეთ @@ -5941,7 +5941,7 @@ Do you want to continue? პროექციის ჩასწორება - + Set appearance per face... გარეგნობის დაყენება თითოეული ზედაპირისთვის... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ko.ts b/src/Mod/Part/Gui/Resources/translations/Part_ko.ts index fce5f13505..b4787ef2a0 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ko.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ko.ts @@ -1219,7 +1219,7 @@ Set the color of each individual face of the selected object. - Set the color of each individual face of the selected object. + 선택한 객체의 각각의 면의 색상을 설정합니다. @@ -1252,7 +1252,7 @@ Cube - Cube + 입방체 @@ -1688,7 +1688,7 @@ Make face from wires - Make face from wires + 철사로부터 면을 만듦 @@ -1913,7 +1913,7 @@ of projection. Create a ruled surface from either two Edges or two wires - 두 모서리 혹은 두 와이어(로프)를 이용하여 선직면 생성 + 두 모서리 혹은 두 철사를 이용하여 선직면 생성 @@ -2211,10 +2211,10 @@ of projection. Change face colors - Change face colors + 면의 색상 변경 - + Loft 로프트 @@ -2245,7 +2245,7 @@ of projection. 고체 - + Sweep 스윕 @@ -2493,7 +2493,7 @@ Note: The placement is expressed in local space of object being attached. Select a shape on the right side, first - 오른쪽 면의 셰이프를 먼저 선택 + 오른쪽의 형상을 먼저 선택 @@ -2885,7 +2885,7 @@ If both lengths are zero, magnitude of direction is used. Fillet Parameter - 필렛 파라메터 + 모깎기 매개변수 @@ -3028,8 +3028,8 @@ If both lengths are zero, magnitude of direction is used. No valid shape is selected. Please select a valid shape in the drop-down box first. - 유효한 셰이프가 선택되지 않았습니다. -드롭다운 상자에서 유효한 셰이프를 선택하세요. + 유효한 형상이 선택되지 않았습니다. +드롭다운 상자에서 유효한 형상 선택하세요. @@ -4003,7 +4003,7 @@ during file reading (slower but higher details). Defines the deviation of tessellation to the actual surface - 실제 표면과 공간 분할의 편차를 정의 + 실제 표면에 대한 쪽매붙임의 편차를 정의합니다 @@ -4056,7 +4056,7 @@ during file reading (slower but higher details). Automatically refine model after sketch-based operation - 스케치 기반 작업 후 자동으로 모델을 수정 + 스케치 기반 작업 후 자동으로 모형의 선 정리 @@ -4089,7 +4089,7 @@ during file reading (slower but higher details). Shape appearance - Shape appearance + 형상의 외관 @@ -4099,12 +4099,12 @@ during file reading (slower but higher details). Shape color - 모양 색상 + 형상의 색상 The default color for new shapes - 새 셰이프에 대한 기본 색상 + 새 형상의 기본 색상 @@ -4149,22 +4149,22 @@ during file reading (slower but higher details). Shape transparency - Shape transparency + 형상 투명도 The default transparency for new shapes - The default transparency for new shapes + 새 형상의 기본 투명도 Shape shininess - Shape shininess + 형상의 광택 The default shininess for new shapes - The default shininess for new shapes + 새 형상의 기본 광택 @@ -4174,7 +4174,7 @@ during file reading (slower but higher details). The default line color for new shapes - 새 셰이프의 기본 선 색 + 새 형상의 기본 선 색 @@ -4184,7 +4184,7 @@ during file reading (slower but higher details). The default line thickness for new shapes - 새 셰이프의 기본 선 두께 + 새 형상의 기본 선 두께 @@ -4195,17 +4195,17 @@ during file reading (slower but higher details). Vertex color - Vertex color + 꼭지점 색 The default color for new vertices - The default color for new vertices + 새 꼭지점의 기본 색 Vertex size - Vertex size + 꼭지점 크기 @@ -4220,7 +4220,7 @@ during file reading (slower but higher details). The color of bounding boxes in the 3D view - 3D 뷰에서 테두리 상자 색상 + 3D보기에서 경계 상자 색상 @@ -4251,12 +4251,12 @@ will be used or black. Default Annotation color - Default Annotation color + 기본 주석의 색상 Text color - 텍스트 색 + 문자 색 @@ -4356,27 +4356,27 @@ the sketch plane's normal vector will be used 선택된 윤곽 - + Too few elements 너무 적은 요소들 - + At least two vertices, edges, wires or faces are required. - 적어도 두 개의 꼭지점과 모서리, 선이나 면이 필요 합니다. + 적어도 두 개의 꼭지점과 모서리, 철사나 면이 필요 합니다. - + Input error 입력 오류 - + Vertex/Edge/Wire/Face - 꼭지점/가장자리/선/면 + 꼭지점/모서리/철사/면 - + Loft 로프트 @@ -4536,7 +4536,7 @@ the sketch plane's normal vector will be used Color of cut face - Color of cut face + 단면의 색상 @@ -4591,7 +4591,7 @@ will get the same color Color for all objects - Color for all objects + 모든 객체들의 색상 @@ -4733,69 +4733,69 @@ only created cuts will be visible 선택된 윤곽 - + Too few elements 너무 적은 요소들 - + At least one edge or wire is required. At least one edge or wire is required. - + Invalid selection 잘못된 선택 - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection 잘못 된 선택 - + '%1' cannot be used as profile and path. '%'은 윤곽과 경로로써 사용할 수 없습니다. - + Input error 입력 오류 - + Done 완료 - + Select one or more connected edges in the 3d view and press 'Done' Select one or more connected edges in the 3d view and press 'Done' - - + + Sweep path 스윕 경로 - - + + The selected sweep path is invalid. The selected sweep path is invalid. - + Vertex/Wire Vertex/Wire - + Sweep 스윕 @@ -5434,7 +5434,7 @@ Individual boolean operation checks: 프레네 - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. 쓸기경로를 설정하기 위해 하나 이상의 윤곽을 선택하고 3D 보기에서 모서리나 철사를 선택 @@ -5719,7 +5719,7 @@ Do you want to continue? Empty Wire - 빈 와이어 + 빈 철사 @@ -5729,7 +5729,7 @@ Do you want to continue? Self Intersecting Wire - 스스로 교차하는 와이어 + 자기 교차하는 철사 @@ -5739,22 +5739,22 @@ Do you want to continue? Invalid Wire - 잘못 된 와이어 + 잘못 된 철사 Redundant Wire - 중복 와이어 + 중복된 철사 Intersecting Wires - 교차 와이어 + 교차하는 철사 Invalid Imbrication Of Wires - 와이어의 잘못 된 Imbrication + 철사의 잘못된 중첩 @@ -5937,7 +5937,7 @@ Do you want to continue? 투상 편집 - + Set appearance per face... Set appearance per face... @@ -6344,7 +6344,7 @@ It will create a 'Compound Filter' for each shape. Wires - 와이어 + 철사 @@ -6739,7 +6739,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Wire is not closed. - Wire is not closed. + 철사가 닫히지 않았습니다. diff --git a/src/Mod/Part/Gui/Resources/translations/Part_lt.ts b/src/Mod/Part/Gui/Resources/translations/Part_lt.ts index c421b6f596..b5be14ea67 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_lt.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_lt.ts @@ -2216,7 +2216,7 @@ of projection. Keisti sienų spalvas - + Loft Tiesiškasis paviršius @@ -2247,7 +2247,7 @@ of projection. Pilnaviduris daiktas - + Sweep Skleisti @@ -4362,27 +4362,27 @@ the sketch plane's normal vector will be used Pasirinkti profiliai - + Too few elements Per mažai elementų - + At least two vertices, edges, wires or faces are required. Būtinos bent dvi viršūnės, kraštinės, rėmeliai ar sienos. - + Input error Įvesties klaida - + Vertex/Edge/Wire/Face Viršūnė/kraštinė/kontūras/siena - + Loft Tiesiškasis paviršius @@ -4739,69 +4739,69 @@ only created cuts will be visible Pasirinkti profiliai - + Too few elements Per mažai elementų - + At least one edge or wire is required. Būtina bent viena kraštinė ar rėmelis. - + Invalid selection Klaidingas pasirinkimas - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Netinkama pasirinktis - + '%1' cannot be used as profile and path. '%1' cannot be used as profile and path. - + Input error Įvesties klaida - + Done Atlikta - + Select one or more connected edges in the 3d view and press 'Done' Select one or more connected edges in the 3d view and press 'Done' - - + + Sweep path Skleidimo (pratempimo) kelias - - + + The selected sweep path is invalid. Pasirinktas skleidimo kelias yra netinkamas. - + Vertex/Wire Viršūnė/kraštinė - + Sweep Skleisti @@ -5442,7 +5442,7 @@ Atskiri dvejetainio veiksmo patikrinimai: Freneto - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Pasirinkite vieną ar daugiau skerspjūvių bei kraštinę ar laužtę erdviniame rodinyje skleidimui (pratempimui). @@ -5946,7 +5946,7 @@ Ar vistiek norite tęsti? Taisyti projekciją - + Set appearance per face... Nustatyti kievienos sienos išvaizdą... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_nl.ts b/src/Mod/Part/Gui/Resources/translations/Part_nl.ts index 6224b6b17a..097cccba5d 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_nl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_nl.ts @@ -2214,7 +2214,7 @@ Het camerabeeld bepaalt de richting van de projectie. Change face colors - + Loft Loft @@ -2245,7 +2245,7 @@ Het camerabeeld bepaalt de richting van de projectie. Volumemodel - + Sweep Sweep @@ -4359,27 +4359,27 @@ the sketch plane's normal vector will be used Geselecteerde profielen - + Too few elements Te weinig elementen - + At least two vertices, edges, wires or faces are required. Ten minste twee hoekpunten, randen, polygonale lijnen of vlakken zijn vereist. - + Input error Invoerfout - + Vertex/Edge/Wire/Face Eindpunt/Rand/Polygonale lijn/Vlak - + Loft Loft @@ -4736,69 +4736,69 @@ only created cuts will be visible Geselecteerde profielen - + Too few elements Te weinig elementen - + At least one edge or wire is required. Minstens één rand of polygonale lijn is vereist. - + Invalid selection Foute selectie - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Verkeerde selectie - + '%1' cannot be used as profile and path. '%1' kan niet gebruikt worden als profiel en pad. - + Input error Invoerfout - + Done Klaar - + Select one or more connected edges in the 3d view and press 'Done' Selecteer een of meer verbonden randen in de 3d-weergave en druk op 'Klaar' - - + + Sweep path Sweeppad - - + + The selected sweep path is invalid. Het geselecteerde sweeppad is ongeldig. - + Vertex/Wire Vertex/Wire - + Sweep Sweep @@ -5442,7 +5442,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Selecteer een of meer profielen en selecteer een rand of poygonale lijn in de 3D-weergave voor het veegpad. @@ -5946,7 +5946,7 @@ Wilt u doorgaan? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pl.ts b/src/Mod/Part/Gui/Resources/translations/Part_pl.ts index a594ab463c..392f73c2a1 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_pl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_pl.ts @@ -2226,7 +2226,7 @@ Ujęcie widoku określa kierunek rzutowania. Zmień kolory ściany - + Loft Wyciągnięcie przez profile @@ -2257,7 +2257,7 @@ Ujęcie widoku określa kierunek rzutowania. Bryła - + Sweep Wyciągnięcie po ścieżce @@ -3169,8 +3169,8 @@ Zaznacz najpierw jedną lub więcej krawędzi. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Jeśli opcja jest zaznaczona, połączenie złożenia zostanie wykonane +podczas odczytu pliku (wolniejsze, ale wyższa szczegółowość). @@ -4375,27 +4375,27 @@ zostanie użyty wektor normalnej płaszczyzny szkicu Wybrane profile - + Too few elements Zbyt mało elementów - + At least two vertices, edges, wires or faces are required. Wymagane są co najmniej dwa wierzchołki, krawędzie, polilinie lub ściany. - + Input error Błąd danych wejściowych - + Vertex/Edge/Wire/Face Wierzchołek/Krawędź/Polilinia/Powierzchnia - + Loft Wyciągnięcie przez profile @@ -4751,69 +4751,69 @@ only created cuts will be visible Wybrane profile - + Too few elements Zbyt mało elementów - + At least one edge or wire is required. Wymagana jest co najmniej jedna krawędź lub polilinia. - + Invalid selection Nieprawidłowy wybór - + Select one or more edges from a single object. Wybierz jedną lub więcej krawędzi z pojedynczego obiektu. - + Wrong selection Niewłaściwy wybór - + '%1' cannot be used as profile and path. "%1" nie można użyć jako profilu i ścieżki. - + Input error Błąd danych wejściowych - + Done Gotowe - + Select one or more connected edges in the 3d view and press 'Done' Wybierz jedną lub więcej połączonych krawędzi w oknie widoku 3D i naciśnij przycisk "Gotowe" - - + + Sweep path Ścieżka przeciągania - - + + The selected sweep path is invalid. Zaznaczona ścieżka wyciągnięcia jest nieprawidłowa. - + Vertex/Wire Utwórz obwiednię - + Sweep Wyciągnięcie po ścieżce @@ -5457,7 +5457,7 @@ Pojedyncze kontrole operacji logicznych: Wektor Freneta - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Wybierz jeden lub więcej profili i zaznacz krawędź lub polilinię w widoku 3D dla utworzenia ścieżki. @@ -5961,7 +5961,7 @@ Lub, wybierz jedno złożenie zawierające dwa lub więcej kształtów, które m Edycja rzutu - + Set appearance per face... Ustaw wygląd dla ściany ... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts index d239901ee2..be42cd212c 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_pt-BR.ts @@ -2213,7 +2213,7 @@ of projection. Alterar as cores das faces - + Loft Loft @@ -2244,7 +2244,7 @@ of projection. Sólido - + Sweep Varredura @@ -4347,27 +4347,27 @@ o vetor normal ao plano de esboço será usado Perfis selecionados - + Too few elements Muito poucos elementos - + At least two vertices, edges, wires or faces are required. Pelo menos dois vértices, arestas, arames ou faces são necessários. - + Input error Erro de entrada - + Vertex/Edge/Wire/Face Vértice/Aresta/Arame/Face - + Loft Loft @@ -4720,69 +4720,69 @@ only created cuts will be visible Perfis selecionados - + Too few elements Muito poucos elementos - + At least one edge or wire is required. É necessário pelo menos uma aresta ou arame. - + Invalid selection Seleção inválida - + Select one or more edges from a single object. Selecione uma ou mais arestas de um único objeto. - + Wrong selection Seleção errada - + '%1' cannot be used as profile and path. '%1' não pode ser usado como perfil e caminho. - + Input error Erro de entrada - + Done Feito - + Select one or more connected edges in the 3d view and press 'Done' Selecione uma ou mais arestas conectadas na vista 3d e aperte 'Done' - - + + Sweep path Caminho de varredura - - + + The selected sweep path is invalid. O caminho de varredura selecionado é inválido. - + Vertex/Wire Vértice/arame - + Sweep Varredura @@ -5420,7 +5420,7 @@ Verificações de operações booleanas individuais: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Selecione um ou mais perfis e selecione também uma aresta ou arame na vista 3D para o caminho de varredura. @@ -5924,7 +5924,7 @@ Deseja continuar? Editar projeção - + Set appearance per face... Definir aparência por face... 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 c50faaf1a8..ae6018b577 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_pt-PT.ts @@ -2216,7 +2216,7 @@ of projection. Change face colors - + Loft Arrastar @@ -2247,7 +2247,7 @@ of projection. Sólido - + Sweep Arrastar (Sweep) @@ -4354,27 +4354,27 @@ the sketch plane's normal vector will be used Perfis selecionados - + Too few elements Muito poucos elementos - + At least two vertices, edges, wires or faces are required. São necessários pelo menos dois vértices, arestas, arames ou faces. - + Input error Erro de Inserção - + Vertex/Edge/Wire/Face Vertice/Aresta/Arame(wire)/Face - + Loft Arrastar @@ -4731,69 +4731,69 @@ only created cuts will be visible Perfis selecionados - + Too few elements Muito poucos elementos - + At least one edge or wire is required. É necessário pelo menos uma aresta ou arame(wire). - + Invalid selection Seleção inválida - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Seleção errada - + '%1' cannot be used as profile and path. '%1' não pode ser usado como o perfil e caminho. - + Input error Erro de Inserção - + Done Concluído - + Select one or more connected edges in the 3d view and press 'Done' Selecione uma ou mais arestas conectadas na vista 3d e pressione 'Done' - - + + Sweep path Caminho de arrasto (Sweep) - - + + The selected sweep path is invalid. O caminho de arrasto (sweep) selecionado é inválido. - + Vertex/Wire Vertex/Wire - + Sweep Arrastar (Sweep) @@ -5437,7 +5437,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Selecione um ou mais perfis e selecione também uma aresta ou traço (wire) na vista 3D para o caminho de arrasto (sweep). @@ -5940,7 +5940,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ro.ts b/src/Mod/Part/Gui/Resources/translations/Part_ro.ts index 666ac1ecdd..934d4f363e 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ro.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ro.ts @@ -2217,7 +2217,7 @@ de proiecție. Schimbă culorile fețelor - + Loft Pod @@ -2248,7 +2248,7 @@ de proiecție. Solid - + Sweep Matura @@ -4357,27 +4357,27 @@ vectorul normal al planului va fi folosit Profiluri selectate - + Too few elements Prea putine elemente - + At least two vertices, edges, wires or faces are required. Sunt necesare cel puțin două muchii, fire sau feţele. - + Input error Eroare de intrare - + Vertex/Edge/Wire/Face Nod/muchie/sârmă/fata - + Loft Pod @@ -4734,69 +4734,69 @@ doar comenzile create vor fi vizibile Profiluri selectate - + Too few elements Prea putine elemente - + At least one edge or wire is required. Este necesara cel putin o margine sau o polilinie. - + Invalid selection Selectie invalida - + Select one or more edges from a single object. Selectați una sau mai multe margini de la un singur obiect. - + Wrong selection Selecţie greşită - + '%1' cannot be used as profile and path. Imposibil de utilizat '%1' ca profilul si calea. - + Input error Eroare de intrare - + Done Gata - + Select one or more connected edges in the 3d view and press 'Done' Selectaţi unul sau mai multe muchiile conectate în 3d vedere şi apăsaţi 'Done' - - + + Sweep path Matura calea - - + + The selected sweep path is invalid. Calea de baleiere selectionată nu este validă. - + Vertex/Wire Vertex/Wire - + Sweep Matura @@ -5441,7 +5441,7 @@ Operarea testului boolean individual: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Selecteaza unul sau mai multe profile apoi @@ -5946,7 +5946,7 @@ Do you want to continue? Editează proiect - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts index a54a9cf74d..24ee74fb91 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_ru.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_ru.ts @@ -148,7 +148,7 @@ Point is put at object's placement position. Works on objects with placements, and ellipse/parabola/hyperbola edges. AttachmentPoint mode tooltip - Point is put at object's placement position. Works on objects with placements, and ellipse/parabola/hyperbola edges. + Точка ставится в позицию размещения объекта. Работает с объектами с размещениями и краями эллипса/параболы/гиперболы. @@ -570,13 +570,13 @@ XY parallel to plane AttachmentPlane mode caption - XY parallel to plane + Параллельно XY плоскости X' Y' plane is parallel to the plane (object's XY) and passes through the vertex AttachmentPlane mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex + Плоскость X' Y' параллельна плоскости (объект XY) и проходит через вершину @@ -779,13 +779,13 @@ XY parallel to plane Attachment3D mode caption - XY parallel to plane + Параллельно XY плоскости X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. Attachment3D mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. + Плоскость X' Y' параллельна плоскости (XY объекта) и проходит через вершину. @@ -1562,7 +1562,7 @@ Export CAD file... - Export CAD file... + Экспорт CAD файла... @@ -1634,7 +1634,7 @@ Import CAD file... - Import CAD file... + Импорт CAD файла... @@ -2217,7 +2217,7 @@ of projection. Изменить цвета грани - + Loft Профиль @@ -2248,7 +2248,7 @@ of projection. Твердотельный объект - + Sweep Профиль по траектории @@ -2600,7 +2600,7 @@ Note: The placement is expressed in local space of object being attached. Uncheck this to skip invisible objects when exporting, which is useful for CADs that do not support invisibility STEP styling. - Uncheck this to skip invisible objects when exporting, which is useful for CADs that do not support invisibility STEP styling. + Снимите этот флажок, чтобы пропустить невидимые объекты при экспорте, что полезно для САПР, которые не поддерживают невидимость стилей STEP. @@ -2608,10 +2608,8 @@ Note: The placement is expressed in local space of object being attached. - Check this option to keep the placement information when exporting -a single object. Please note that when importing back the STEP file, the -placement will be encoded into the shape geometry, instead of keeping -it inside the Placement property. + Установите этот флажок, чтобы сохранить информацию о размещении при экспорте +отдельного объекта. Обратите внимание, что при обратном импорте файла STEP размещение будет закодировано в геометрию формы, а не сохранено внутри свойства Placement. @@ -2969,7 +2967,7 @@ If both lengths are zero, magnitude of direction is used. Chamfer Parameters - Chamfer Parameters + Параметры Фаски @@ -3081,7 +3079,7 @@ Please check one or more edge entities first. Export solids and shells as - Export solids and shells as + Экспортировать твердотельное и оболочки как @@ -3155,8 +3153,7 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Если этот флажок установлен, то во время чтения файла будет выполнено слияние составных файлов (медленнее, но с более высокой детализацией). @@ -3212,7 +3209,7 @@ during file reading (slower but higher details). Do not use instance names. Useful for some legacy STEP files with non-meaningful auto-generated instance names. - Do not use instance names. Useful for some legacy STEP files with non-meaningful auto-generated instance names. + Не используйте имена экземпляров. Полезно для некоторых устаревших файлов STEP с не имеющими смысла автоматически сгенерированными именами экземпляров. @@ -3222,7 +3219,7 @@ during file reading (slower but higher details). CodePage - CodePage + Код страницы @@ -3387,7 +3384,7 @@ during file reading (slower but higher details). STEP input file - STEP input file + STEP входной файл @@ -4079,12 +4076,12 @@ during file reading (slower but higher details). These settings are experimental and may result in decreased stability, more problems and undefined behaviors. - These settings are experimental and may result in decreased stability, more problems and undefined behaviors. + Эти настройки являются экспериментальными и могут привести к снижению стабильности, появлению дополнительных проблем и неопределенному поведению. Allow multiple solids in Part Design Body by default (experimental) - Allow multiple solids in Part Design Body by default (experimental) + Разрешить несколько твердых тел в теле конструкции детали по умолчанию (экспериментальная функция) @@ -4241,10 +4238,9 @@ during file reading (slower but higher details). If not checked, it depends on the option "Backlight color" (preferences section Display -> 3D View); either the backlight color will be used or black. - The bottom side of the surface will be rendered the same way as the top. -If not checked, it depends on the option "Backlight color" -(preferences section Display -> 3D View); either the backlight color -will be used or black. + Нижняя сторона поверхности будет визуализироваться так же, как и верхняя. +Если не отмечено, это зависит от параметра «Цвет подсветки» +(раздел настроек Дисплей -> 3D-вид); будет использоваться либо цвет подсветки, либо черный. @@ -4360,27 +4356,27 @@ the sketch plane's normal vector will be used Выбранные профили - + Too few elements Слишком мало элементов - + At least two vertices, edges, wires or faces are required. Необходимы две вершины, линии или грани. - + Input error Ошибка ввода - + Vertex/Edge/Wire/Face Точка/Ребро/Ломаная/грань - + Loft Чердак (под крышей) @@ -4500,7 +4496,7 @@ the sketch plane's normal vector will be used Persistent Section Cutting - Persistent Section Cutting + Постоянная резка секции @@ -4737,69 +4733,69 @@ only created cuts will be visible Выбранные профили - + Too few elements Слишком мало элементов - + At least one edge or wire is required. Требуется по крайней мере одна кривая линия или ломаная. - + Invalid selection Неправильное выделение - + Select one or more edges from a single object. Выберите один или несколько ребер одного объекта. - + Wrong selection Неправильный выбор - + '%1' cannot be used as profile and path. '%1' не может использоваться в качестве профиля и пути. - + Input error Ошибка ввода - + Done Готово - + Select one or more connected edges in the 3d view and press 'Done' Выберите один или несколько соединенных ребер в трёхмерном виде и нажмите «OK» - - + + Sweep path Траектория построения - - + + The selected sweep path is invalid. Недопустимый путь траектории равёртки с заметанием. - + Vertex/Wire Вершина/проволока - + Sweep Профиль по траектории @@ -5135,7 +5131,7 @@ Individual boolean operation checks: Skip this settings page - Skip this settings page + Пропустить страницу настроек @@ -5443,7 +5439,7 @@ Individual boolean operation checks: Френе - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Выберите один или более профилей, а также выберите грань или последовательность граней в трёхмерном виде для пути заметания. @@ -5564,12 +5560,12 @@ Do you want to continue? Please select two shapes or more. Or, select one compound containing two or more shapes to compute the intersection between. - Please select two shapes or more. Or, select one compound containing two or more shapes to compute the intersection between. + Пожалуйста, выберите две фигуры или более. Или выберите одно соединение, содержащее две или более фигур, чтобы вычислить пересечение между ними. Please select two shapes or more. Or, select one compound containing two or more shapes to be fused. - Please select two shapes or more. Or, select one compound containing two or more shapes to be fused. + Пожалуйста, выберите две формы или более. Или выберите одно соединение, содержащее две или более форм для слияния. @@ -5946,9 +5942,9 @@ Do you want to continue? Изменить проекцию - + Set appearance per face... - Set appearance per face... + Установить внешний вид для каждой стороны... @@ -6594,7 +6590,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. The document '%1' doesn't exist. - The document '%1' doesn't exist. + Документ «%1» не существует. @@ -6762,7 +6758,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Set appearance per face - Set appearance per face + Установить внешний вид для каждой стороны @@ -6782,14 +6778,13 @@ A 'Compound Filter' can be used to extract the remaining pieces. Custom appearance: - Custom appearance: + Пользовательский вид: When checked, you can select multiple faces by dragging a selection rectangle in the 3D view - When checked, you can select multiple faces -by dragging a selection rectangle in the 3D view + Если этот флажок установлен, вы можете выбрать несколько граней, перетащив прямоугольник выбора в 3D-виде diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sl.ts b/src/Mod/Part/Gui/Resources/translations/Part_sl.ts index 058d052278..06d4aecef5 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_sl.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_sl.ts @@ -2216,7 +2216,7 @@ pogleda kamere. Spremeni barve ploskev - + Loft Navleci @@ -2247,7 +2247,7 @@ pogleda kamere. Telo - + Sweep Vzdolži @@ -4362,27 +4362,27 @@ sicer bo uporabljena normala očrtne ravnine Izbrani prerezi - + Too few elements Premalo elementov - + At least two vertices, edges, wires or faces are required. Zahtevani sta vsaj dve oglišči, robova, črtovji ali ploskvi. - + Input error Napaka vnosa - + Vertex/Edge/Wire/Face Oglišče/Rob/Črtovje/Ploskev - + Loft Navleci @@ -4739,69 +4739,69 @@ bodo prikazane le prerezne ploskve Izbrani prerezi - + Too few elements Premalo elementov - + At least one edge or wire is required. Potreben je vsaj en rob ali črtovje. - + Invalid selection Neveljaven izbor - + Select one or more edges from a single object. Izberite enega ali več robov enega samega predmeta. - + Wrong selection Napačna izbira - + '%1' cannot be used as profile and path. '%1' ne more biti uporabljen kot prerez in pot. - + Input error Napaka vnosa - + Done Končano - + Select one or more connected edges in the 3d view and press 'Done' Izberi enega ali več povezanih robov v pogledu 3D in pritisnite 'Končano' - - + + Sweep path Pot vzdolženja - - + + The selected sweep path is invalid. Izbrana pot vzdolženja je neveljavna. - + Vertex/Wire Vertex/Wire - + Sweep Vzdolži @@ -5447,7 +5447,7 @@ Preverjanja posamezne logične operacije: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Izberite v 3D pogledu enega ali več prerezov in rob ali črtovje za pot vzdolženja. @@ -5951,7 +5951,7 @@ Ali želite nadaljevati? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sr-CS.ts b/src/Mod/Part/Gui/Resources/translations/Part_sr-CS.ts index 77f11d6581..4459ada9cc 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_sr-CS.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_sr-CS.ts @@ -2216,7 +2216,7 @@ projekcije. Promeni boju stranice - + Loft Po presecima @@ -2247,7 +2247,7 @@ projekcije. Puno - + Sweep Po putanji @@ -3154,8 +3154,8 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Ako je označeno, sastavljeni objekat će se sjediniti +tokom učitavanja datoteke (sporije, ali sa više detalja). @@ -4359,27 +4359,27 @@ the sketch plane's normal vector will be used Izabrani preseci - + Too few elements Premalo elemenata - + At least two vertices, edges, wires or faces are required. Potrebna su najmanje dva temena, ivice, žičane ivice ili stranice. - + Input error Greška pri unosu - + Vertex/Edge/Wire/Face Teme/Ivica/Žičana ivica/Stranica - + Loft Po presecima @@ -4736,69 +4736,69 @@ only created cuts will be visible Izabrani preseci - + Too few elements Premalo elemenata - + At least one edge or wire is required. Potrebna je najmanje jedna ivica ili žičana ivica. - + Invalid selection Neispravan izbor - + Select one or more edges from a single object. Izaberi jednu ili više ivica jednog objekta. - + Wrong selection Pogrešan izbor - + '%1' cannot be used as profile and path. '%1' ne može se koristiti kao profil i putanja. - + Input error Greška pri unosu - + Done Gotovo - + Select one or more connected edges in the 3d view and press 'Done' Izaberi jednu ili više povezanih ivica u 3D pogledu i pritisni 'Gotovo' - - + + Sweep path Putanja vodilja preseka - - + + The selected sweep path is invalid. Izabrana putanja vodilja je nevažeća. - + Vertex/Wire Vertex/Wire - + Sweep Po putanji @@ -5443,7 +5443,7 @@ Provera pojedinačnih bulovih operacija: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Izaberi jedan ili više profila i izaberi ivicu ili žičanu ivicu u 3D pogledu koja će biti putanja vodilja profila. @@ -5947,7 +5947,7 @@ Da li želiš da nastaviš? Edit projection - + Set appearance per face... Ofarbaj pojedinačne stranice... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sr.ts b/src/Mod/Part/Gui/Resources/translations/Part_sr.ts index 37d8e2a0b4..8382b091f6 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_sr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_sr.ts @@ -2216,7 +2216,7 @@ of projection. Промени боју странице - + Loft По пресецима @@ -2247,7 +2247,7 @@ of projection. Пуно - + Sweep По путањи @@ -3154,8 +3154,8 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + Ако је означено, састављени објекат ће се сјединити +током учитавања датотеке (спорије, али са више детаља). @@ -4359,27 +4359,27 @@ the sketch plane's normal vector will be used Изабрани пресеци - + Too few elements Премало елемената - + At least two vertices, edges, wires or faces are required. Потребна су најмање два темена, ивице, жичане ивице или странице. - + Input error Грешка приликом уноса - + Vertex/Edge/Wire/Face Теме/Ивица/Жичана ивица/Страница - + Loft По пресецима @@ -4735,69 +4735,69 @@ only created cuts will be visible Изабрани пресеци - + Too few elements Премало елемената - + At least one edge or wire is required. Потребна је најмање једна ивица или жичана ивица. - + Invalid selection Неисправан избор - + Select one or more edges from a single object. Изабери једну или више ивица једног објекта. - + Wrong selection Погрешан избор - + '%1' cannot be used as profile and path. '%1' не може cе кориcтити као профил и путања. - + Input error Грешка приликом уноса - + Done Готово - + Select one or more connected edges in the 3d view and press 'Done' Изабери једну или више повезаних ивица у 3Д погледу и притисни 'Готово' - - + + Sweep path Путања водиља пресека - - + + The selected sweep path is invalid. Изабрана путања водиља је неважећа. - + Vertex/Wire Vertex/Wire - + Sweep По путањи @@ -5442,7 +5442,7 @@ Individual boolean operation checks: Френет - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Изабери један или више профила и изабери ивицу или жичану ивицу у 3Д погледу која ће бити путања водиља профила. @@ -5946,7 +5946,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Офарбај појединачне странице... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts index 8ea7df025e..b4497e3d13 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_sv-SE.ts @@ -2216,7 +2216,7 @@ of projection. Change face colors - + Loft Loft @@ -2247,7 +2247,7 @@ of projection. Solid - + Sweep Svep @@ -4361,27 +4361,27 @@ the sketch plane's normal vector will be used Valda profiler - + Too few elements För få element - + At least two vertices, edges, wires or faces are required. Minst två hörnpunkter, kanter, trådar eller ytor krävs. - + Input error Inmatningsfel - + Vertex/Edge/Wire/Face Hörnpunkt/kant/tråd/yta - + Loft Loft @@ -4738,69 +4738,69 @@ only created cuts will be visible Valda profiler - + Too few elements För få element - + At least one edge or wire is required. Det krävs minst en kant eller tråd. - + Invalid selection Ogiltig markering - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Fel val - + '%1' cannot be used as profile and path. '%1' kan inte användas som profil och bana. - + Input error Inmatningsfel - + Done Färdig - + Select one or more connected edges in the 3d view and press 'Done' Markera en eller fler anslutna kanter i 3D-vyn och tryck på 'Klar' - - + + Sweep path Svepningsbana - - + + The selected sweep path is invalid. Den valda svepbanan är felaktig. - + Vertex/Wire Hörn/Tråd - + Sweep Svep @@ -5444,7 +5444,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Markera en eller flera profiler och välj en kant eller tråd i 3D-vyn för svep banan. @@ -5948,7 +5948,7 @@ Vill du fortsätta? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_tr.ts b/src/Mod/Part/Gui/Resources/translations/Part_tr.ts index 7d19bb6918..c944f8e834 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_tr.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_tr.ts @@ -2214,7 +2214,7 @@ Kamera görünümü, izdüşüm yönünü belirler. Yüz renklerini değiştir - + Loft Çatıla @@ -2245,7 +2245,7 @@ Kamera görünümü, izdüşüm yönünü belirler. Katı - + Sweep Süpür @@ -4355,27 +4355,27 @@ yoksa eskiz düzlemine dik vektör kullanılacak Seçilen profiller - + Too few elements Çok az öğe - + At least two vertices, edges, wires or faces are required. En az iki köşe, kenar, tel veya yüz gereklidir. - + Input error Girdi hatası - + Vertex/Edge/Wire/Face Köşe/Kenar/Tel/Yüzey - + Loft Çatıla @@ -4732,69 +4732,69 @@ yalnızca oluşturulan kesimler görünür Seçilen profiller - + Too few elements Çok az öğe - + At least one edge or wire is required. En az bir kenar veya tel gereklidir. - + Invalid selection Geçersiz seçim - + Select one or more edges from a single object. Tek bir nesneden bir veya daha fazla kenar seçin. - + Wrong selection Yanlış seçim - + '%1' cannot be used as profile and path. '%1', profil ve yol olarak kullanılamaz. - + Input error Girdi hatası - + Done Bitti - + Select one or more connected edges in the 3d view and press 'Done' 3d görünümünde bir veya daha fazla bağlı kenarı seçin ve 'Bitti' tuşuna basın - - + + Sweep path Yolu süpür - - + + The selected sweep path is invalid. Seçilen süpürme yolu geçersiz. - + Vertex/Wire Vertex/Wire - + Sweep Süpür @@ -5432,7 +5432,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. 3B görünümü içinde Süpürme yolu @@ -5937,7 +5937,7 @@ Devam etmek istiyor musun? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_uk.ts b/src/Mod/Part/Gui/Resources/translations/Part_uk.ts index 0e90aef9be..2425c33e96 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_uk.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_uk.ts @@ -2213,7 +2213,7 @@ of projection. Змінити кольори грані - + Loft Лофт @@ -2244,7 +2244,7 @@ of projection. Суцільне тіло - + Sweep Розгортка @@ -4362,27 +4362,27 @@ the sketch plane's normal vector will be used Обрані профілі - + Too few elements Занадто мало елементів - + At least two vertices, edges, wires or faces are required. At least two vertices, edges, wires or faces are required. - + Input error Помилка вводу - + Vertex/Edge/Wire/Face Вершина/Ребро/Каркас/Поверхня - + Loft Лофт @@ -4739,69 +4739,69 @@ only created cuts will be visible Обрані профілі - + Too few elements Занадто мало елементів - + At least one edge or wire is required. At least one edge or wire is required. - + Invalid selection Невірний вибір - + Select one or more edges from a single object. Виберіть один або кілька ребер з одного об'єкта. - + Wrong selection Невірний вибір - + '%1' cannot be used as profile and path. '%1' cannot be used as profile and path. - + Input error Помилка вводу - + Done Готово - + Select one or more connected edges in the 3d view and press 'Done' Select one or more connected edges in the 3d view and press 'Done' - - + + Sweep path Траєкторія витягування - - + + The selected sweep path is invalid. The selected sweep path is invalid. - + Vertex/Wire Вершина/Струна - + Sweep Розгортка @@ -5447,7 +5447,7 @@ Individual boolean operation checks: Френе - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Select one or more profiles and select an edge or wire @@ -5951,7 +5951,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_val-ES.ts b/src/Mod/Part/Gui/Resources/translations/Part_val-ES.ts index e94bf1fc74..b46202ed32 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_val-ES.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_val-ES.ts @@ -2216,7 +2216,7 @@ of projection. Change face colors - + Loft Projecció @@ -2247,7 +2247,7 @@ of projection. Sòlid - + Sweep Escombratge @@ -4354,27 +4354,27 @@ the sketch plane's normal vector will be used Perfils seleccionats - + Too few elements Massa pocs elements - + At least two vertices, edges, wires or faces are required. Calen com a mínim dos vèrtexs, arestes, fils o cares. - + Input error Input error - + Vertex/Edge/Wire/Face Vèrtex/Aresta/Filferro/Cara - + Loft Projecció @@ -4731,69 +4731,69 @@ only created cuts will be visible Perfils seleccionats - + Too few elements Massa pocs elements - + At least one edge or wire is required. Es requereix almenys una aresta o filferro. - + Invalid selection La selecció no és vàlida. - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection Selecció incorrecta - + '%1' cannot be used as profile and path. '%1' no es pot utilitzar com a perfil i camí. - + Input error Input error - + Done Fet - + Select one or more connected edges in the 3d view and press 'Done' Seleccioneu una o més arestes connectades en la vista 3D i premeu "Fet" - - + + Sweep path Trajecte d'escombratge - - + + The selected sweep path is invalid. La trajectòria d'escombratge seleccionada no és vàlida. - + Vertex/Wire Vertex/Wire - + Sweep Escombratge @@ -5437,7 +5437,7 @@ Individual boolean operation checks: Angle fix - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. Seleccioneu un o més perfils i seleccioneu una aresta o filferro en la vista 3D per al camí d'escombratge. @@ -5940,7 +5940,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts index 628ce47120..1ada8b6fa1 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_zh-CN.ts @@ -2215,7 +2215,7 @@ of projection. 更改面的颜色 - + Loft 放样 @@ -2246,7 +2246,7 @@ of projection. 实体 - + Sweep 扫掠 @@ -4357,27 +4357,27 @@ the sketch plane's normal vector will be used 选定的轮廓 - + Too few elements 元素太少 - + At least two vertices, edges, wires or faces are required. 至少需要两个顶点, 边, 线或面 - + Input error 输入错误 - + Vertex/Edge/Wire/Face 顶点/边/线/面 - + Loft 放样 @@ -4734,69 +4734,69 @@ only created cuts will be visible 选定的轮廓 - + Too few elements 元素太少 - + At least one edge or wire is required. 至少需要一条边或线. - + Invalid selection 无效选择 - + Select one or more edges from a single object. Select one or more edges from a single object. - + Wrong selection 选择错误 - + '%1' cannot be used as profile and path. "%1" 不能用作轮廓和路径。 - + Input error 输入错误 - + Done 完成 - + Select one or more connected edges in the 3d view and press 'Done' 在3d 视图中选择一个或多个连接的边, 然后按 "完成" - - + + Sweep path 扫掠路径 - - + + The selected sweep path is invalid. 选定的扫描路径无效。 - + Vertex/Wire 顶点/线 - + Sweep 扫掠 @@ -5439,7 +5439,7 @@ Individual boolean operation checks: Frenet - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. 在3D视图中选择一个或多个轮廓以及一条边或线作为扫掠路径. @@ -5942,7 +5942,7 @@ Do you want to continue? Edit projection - + Set appearance per face... Set appearance per face... diff --git a/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts index ea86d3cb17..ae7c73b375 100644 --- a/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts +++ b/src/Mod/Part/Gui/Resources/translations/Part_zh-TW.ts @@ -148,7 +148,7 @@ Point is put at object's placement position. Works on objects with placements, and ellipse/parabola/hyperbola edges. AttachmentPoint mode tooltip - Point is put at object's placement position. Works on objects with placements, and ellipse/parabola/hyperbola edges. + 點被放置在物件的放置位置。此功能適用於有位置的物件以及橢圓、拋物線或雙曲線邊緣。 @@ -570,13 +570,13 @@ XY parallel to plane AttachmentPlane mode caption - XY parallel to plane + XY 平行於平面 X' Y' plane is parallel to the plane (object's XY) and passes through the vertex AttachmentPlane mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex + X' Y' 平面與該平面 (物件的 XY 平面) 平行並通過頂點 @@ -779,13 +779,13 @@ XY parallel to plane Attachment3D mode caption - XY parallel to plane + XY 平行於平面 X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. Attachment3D mode tooltip - X' Y' plane is parallel to the plane (object's XY) and passes through the vertex. + X' Y' 平面與該平面 (物件的 XY 平面) 平行並通過頂點。 @@ -1562,7 +1562,7 @@ Export CAD file... - Export CAD file... + 匯出 CAD 檔案... @@ -1634,7 +1634,7 @@ Import CAD file... - Import CAD file... + 匯入 CAD 檔案... @@ -2214,7 +2214,7 @@ of projection. 改變面顏色 - + Loft 斷面混成 @@ -2245,7 +2245,7 @@ of projection. 實體 - + Sweep 掃描 @@ -2597,7 +2597,7 @@ Note: The placement is expressed in local space of object being attached. Uncheck this to skip invisible objects when exporting, which is useful for CADs that do not support invisibility STEP styling. - Uncheck this to skip invisible objects when exporting, which is useful for CADs that do not support invisibility STEP styling. + 取消勾選此項以在匯出時跳過不可視物件,這對於不支援不可視 STEP 樣式的 CAD 軟體來說很有用。 @@ -2605,10 +2605,7 @@ Note: The placement is expressed in local space of object being attached. - Check this option to keep the placement information when exporting -a single object. Please note that when importing back the STEP file, the -placement will be encoded into the shape geometry, instead of keeping -it inside the Placement property. + 勾選此選項以在匯出單一物件時保留位置資訊。請注意當重新匯入 STEP 檔案時,位置將被編碼到形狀幾何中,而不是保留在 Placement 屬性中。 @@ -2964,7 +2961,7 @@ If both lengths are zero, magnitude of direction is used. Chamfer Parameters - Chamfer Parameters + 倒角參數 @@ -3077,7 +3074,7 @@ Please check one or more edge entities first. Export solids and shells as - Export solids and shells as + 匯出實體及表殼為 @@ -3151,8 +3148,7 @@ Please check one or more edge entities first. If checked, Compound merge will be done during file reading (slower but higher details). - If checked, Compound merge will be done -during file reading (slower but higher details). + 如果勾選,在讀取檔案時會執行組件合併操作(速度較慢但細節較高)。 @@ -3208,7 +3204,7 @@ during file reading (slower but higher details). Do not use instance names. Useful for some legacy STEP files with non-meaningful auto-generated instance names. - Do not use instance names. Useful for some legacy STEP files with non-meaningful auto-generated instance names. + 不要使用實例名稱。對於某些舊版 STEP 檔案中自動生成的無意義實例名稱非常有用。 @@ -3218,7 +3214,7 @@ during file reading (slower but higher details). CodePage - CodePage + 編碼頁 @@ -3383,7 +3379,7 @@ during file reading (slower but higher details). STEP input file - STEP input file + STEP輸入檔案 @@ -4078,7 +4074,7 @@ during file reading (slower but higher details). Allow multiple solids in Part Design Body by default (experimental) - Allow multiple solids in Part Design Body by default (experimental) + 預設允許在零件設計主體中包含多個實體 (實驗功能) @@ -4121,27 +4117,27 @@ during file reading (slower but higher details). The default ambient color for new shapes - The default ambient color for new shapes + 新形狀的預設環境顏色 Emissive shape color - Emissive shape color + 自發光形狀顏色 The default emissive color for new shapes - The default emissive color for new shapes + 新形狀的預設自發光顏色 Specular shape color - Specular shape color + 鏡面反射形狀顏色 The default specular color for new shapes - The default specular color for new shapes + 新形狀的預設鏡面反射顏色 @@ -4156,12 +4152,12 @@ during file reading (slower but higher details). Shape shininess - Shape shininess + 形狀光澤度 The default shininess for new shapes - The default shininess for new shapes + 新形狀的預設光澤度 @@ -4235,10 +4231,7 @@ during file reading (slower but higher details). If not checked, it depends on the option "Backlight color" (preferences section Display -> 3D View); either the backlight color will be used or black. - The bottom side of the surface will be rendered the same way as the top. -If not checked, it depends on the option "Backlight color" -(preferences section Display -> 3D View); either the backlight color -will be used or black. + 表面的底部將與頂部以相同的方式算繪。如果未勾選,則取決於“背光顏色”選項(在偏好設定的 顯示 -> 3D 視圖);將使用背光顏色或黑色。 @@ -4354,27 +4347,27 @@ the sketch plane's normal vector will be used 選定的輪廓 - + Too few elements 物件過少 - + At least two vertices, edges, wires or faces are required. 至少需要兩個頂點,邊,線或面 - + Input error 輸入錯誤 - + Vertex/Edge/Wire/Face 頂點/邊/線/面 - + Loft 斷面混成 @@ -4420,12 +4413,12 @@ the sketch plane's normal vector will be used Selecting - Selecting + 選擇 Mirror plane reference - Mirror plane reference + 鏡像平面參考 @@ -4494,7 +4487,7 @@ the sketch plane's normal vector will be used Persistent Section Cutting - Persistent Section Cutting + 永久剖面切割 @@ -4725,69 +4718,69 @@ only created cuts will be visible 選定的輪廓 - + Too few elements 物件過少 - + At least one edge or wire is required. 只少需要一個邊或線 - + Invalid selection 無效選擇 - + Select one or more edges from a single object. 從單一物件中選擇一或多個邊。 - + Wrong selection 錯誤的選取 - + '%1' cannot be used as profile and path. 「%1」無法用來作為輪廓及路徑 - + Input error 輸入錯誤 - + Done 完成 - + Select one or more connected edges in the 3d view and press 'Done' 於3D視圖中選取一或多條相連的邊後按下「完成」 - - + + Sweep path 掃描路徑 - - + + The selected sweep path is invalid. 所選掃略路徑無效 - + Vertex/Wire 頂點/線 - + Sweep 掃描 @@ -5086,7 +5079,7 @@ Individual boolean operation checks: Continuity - Continuity + 連續性 @@ -5116,7 +5109,7 @@ Individual boolean operation checks: Skip this settings page - Skip this settings page + 跳過此設定頁面 @@ -5421,7 +5414,7 @@ Individual boolean operation checks: 弗勒內公式(Frenet) - + Select one or more profiles and select an edge or wire in the 3D view for the sweep path. 於3D檢視中選取一或多個輪廓,並選取一個邊或線作為掃掠路徑 @@ -5543,12 +5536,12 @@ Do you want to continue? Please select two shapes or more. Or, select one compound containing two or more shapes to compute the intersection between. - Please select two shapes or more. Or, select one compound containing two or more shapes to compute the intersection between. + 請選擇兩個或更多形狀。或者,選擇一個包含兩個或更多形狀的複合體,以計算它們之間的交叉。 Please select two shapes or more. Or, select one compound containing two or more shapes to be fused. - Please select two shapes or more. Or, select one compound containing two or more shapes to be fused. + 請選擇兩個或更多形狀。或者,選擇一個包含兩個或更多形狀的複合體以進行融合。 @@ -5592,7 +5585,7 @@ Do you want to continue? Vertex - Vertex + 頂點 @@ -5922,12 +5915,12 @@ Do you want to continue? Edit projection - Edit projection + 編輯投影 - + Set appearance per face... - Set appearance per face... + 為每個面設定外觀... @@ -6394,7 +6387,7 @@ It will create a 'Compound Filter' for each shape. Continuity - Continuity + 連續性 @@ -6554,7 +6547,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. The document '%1' doesn't exist. - The document '%1' doesn't exist. + 文件 '%1' 不存在。 @@ -6608,7 +6601,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Only allow the selection of vertices - Only allow the selection of vertices + 僅允許選擇頂點 @@ -6622,7 +6615,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Only allow the selection of edges - Only allow the selection of edges + 僅允許選擇邊 @@ -6636,7 +6629,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Only allow the selection of faces - Only allow the selection of faces + 僅允許選擇面 @@ -6654,7 +6647,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Shape must be a wire, edge or compound. Something else was supplied. - Shape must be a wire, edge or compound. Something else was supplied. + 形狀必須是線、邊或複合體。其它東西被提供。 @@ -6714,7 +6707,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Wire is not closed. - Wire is not closed. + 非封閉線段 @@ -6722,7 +6715,7 @@ A 'Compound Filter' can be used to extract the remaining pieces. Set appearance per face - Set appearance per face + 為每個面設定外觀 @@ -6737,19 +6730,18 @@ A 'Compound Filter' can be used to extract the remaining pieces. ... - ... + ... Custom appearance: - Custom appearance: + 自訂外觀: When checked, you can select multiple faces by dragging a selection rectangle in the 3D view - When checked, you can select multiple faces -by dragging a selection rectangle in the 3D view + 當勾選時,您可以在3D視圖中拖動選擇框來選擇多個面。 diff --git a/src/Mod/Part/Gui/TaskLoft.cpp b/src/Mod/Part/Gui/TaskLoft.cpp index c9e25de6a4..59066d3fa2 100644 --- a/src/Mod/Part/Gui/TaskLoft.cpp +++ b/src/Mod/Part/Gui/TaskLoft.cpp @@ -137,10 +137,11 @@ void LoftWidget::findShapes() } } - if (shape.ShapeType() == TopAbs_FACE || + if (!shape.Infinite() && + (shape.ShapeType() == TopAbs_FACE || shape.ShapeType() == TopAbs_WIRE || shape.ShapeType() == TopAbs_EDGE || - shape.ShapeType() == TopAbs_VERTEX) { + shape.ShapeType() == TopAbs_VERTEX)) { QString label = QString::fromUtf8(obj->Label.getValue()); QString name = QString::fromLatin1(obj->getNameInDocument()); QTreeWidgetItem* child = new QTreeWidgetItem(); diff --git a/src/Mod/Part/Gui/TaskSweep.cpp b/src/Mod/Part/Gui/TaskSweep.cpp index efecba6a2b..0c5097799f 100644 --- a/src/Mod/Part/Gui/TaskSweep.cpp +++ b/src/Mod/Part/Gui/TaskSweep.cpp @@ -199,10 +199,11 @@ void SweepWidget::findShapes() } } - if (shape.ShapeType() == TopAbs_FACE || + if (!shape.Infinite() && + (shape.ShapeType() == TopAbs_FACE || shape.ShapeType() == TopAbs_WIRE || shape.ShapeType() == TopAbs_EDGE || - shape.ShapeType() == TopAbs_VERTEX) { + shape.ShapeType() == TopAbs_VERTEX)) { QString label = QString::fromUtf8(obj->Label.getValue()); QString name = QString::fromLatin1(obj->getNameInDocument()); diff --git a/src/Mod/Part/Gui/ViewProviderExt.cpp b/src/Mod/Part/Gui/ViewProviderExt.cpp index be31634f38..1233ca4ea1 100644 --- a/src/Mod/Part/Gui/ViewProviderExt.cpp +++ b/src/Mod/Part/Gui/ViewProviderExt.cpp @@ -341,8 +341,17 @@ void ViewProviderPartExt::onChanged(const App::Property* prop) } else if (prop == &_diffuseColor) { // Used to load the old DiffuseColor values asynchronously - ShapeAppearance.setDiffuseColors(_diffuseColor.getValues()); - ShapeAppearance.setTransparency(Transparency.getValue() / 100.0F); + // v0.21 used the alpha channel to store transparency values + std::vector colors = _diffuseColor.getValues(); + std::vector transparencies; + transparencies.resize(static_cast(colors.size())); + for (int i = 0; i < static_cast(colors.size()); i++) { + Base::Console().Log("%d: %f\n", i, colors[i].a); + transparencies[i] = colors[i].a; + colors[i].a = 1.0; + } + ShapeAppearance.setDiffuseColors(colors); + ShapeAppearance.setTransparencies(transparencies); } else if (prop == &ShapeAppearance) { setHighlightedFaces(ShapeAppearance); diff --git a/src/Mod/PartDesign/App/FeatureExtrude.cpp b/src/Mod/PartDesign/App/FeatureExtrude.cpp index c54309ecc1..d0ea1a748c 100644 --- a/src/Mod/PartDesign/App/FeatureExtrude.cpp +++ b/src/Mod/PartDesign/App/FeatureExtrude.cpp @@ -40,6 +40,7 @@ #include #include #include "Mod/Part/App/TopoShapeOpCode.h" +#include #include "FeatureExtrude.h" @@ -131,6 +132,41 @@ bool FeatureExtrude::hasTaperedAngle() const fabs(TaperAngle2.getValue()) > Base::toRadians(Precision::Angular()); } +TopoShape FeatureExtrude::makeShellFromUpToShape(TopoShape shape, TopoShape sketchshape, gp_Dir dir){ + + // Find nearest/furthest face + std::vector cfaces = + Part::findAllFacesCutBy(shape, sketchshape, dir); + if (cfaces.empty()) { + dir = -dir; + cfaces = Part::findAllFacesCutBy(shape, sketchshape, dir); + } + struct Part::cutTopoShapeFaces *nearFace; + struct Part::cutTopoShapeFaces *farFace; + nearFace = farFace = &cfaces.front(); + for (auto &face : cfaces) { + if (face.distsq > farFace->distsq) { + farFace = &face; + } + else if (face.distsq < nearFace->distsq) { + nearFace = &face; + } + } + + if (nearFace != farFace) { + std::vector faceList; + for (auto &face : shape.getSubTopoShapes(TopAbs_FACE)) { + if (! (face == farFace->face)){ + // don't use the last face so the shell is open + // and OCC works better + faceList.push_back(face); + } + } + return shape.makeElementCompound(faceList); + } + return shape; +} + // TODO: Toponaming April 2024 Deprecated in favor of TopoShape method. Remove when possible. void FeatureExtrude::generatePrism(TopoDS_Shape& prism, const TopoDS_Shape& sketchshape, @@ -579,23 +615,25 @@ App::DocumentObjectExecReturn* FeatureExtrude::buildExtrusion(ExtrudeOptions opt faceCount = 1; } else if (method == "UpToShape") { - try { - faceCount = getUpToShapeFromLinkSubList(upToShape, UpToShape); - upToShape.move(invObjLoc); - } - catch (Base::ValueError&){ - //no shape selected use the base + faceCount = getUpToShapeFromLinkSubList(upToShape, UpToShape); + upToShape.move(invObjLoc); + if (faceCount == 0){ + // No shape selected, use the base upToShape = base; faceCount = 0; } } if (faceCount == 1) { - getUpToFace(upToShape, base, supportface, sketchshape, method, dir); + getUpToFace(upToShape, base, sketchshape, method, dir); addOffsetToFace(upToShape, dir, Offset.getValue()); } - else if (fabs(Offset.getValue()) > Precision::Confusion()){ - return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Extrude: Can only offset one face")); + else{ + if (fabs(Offset.getValue()) > Precision::Confusion()){ + return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Extrude: Can only offset one face")); + } + // open the shell by removing the furthest face + upToShape = makeShellFromUpToShape(upToShape, sketchshape, dir); } if (!supportface.hasSubShape(TopAbs_WIRE)) { @@ -645,13 +683,22 @@ App::DocumentObjectExecReturn* FeatureExtrude::buildExtrusion(ExtrudeOptions opt this->Shape.setValue(getSolid(prism)); return App::DocumentObject::StdReturn; } - prism.makeElementPrismUntil(base, - sketchshape, - supportface, - upToShape, - dir, - TopoShape::PrismMode::None, - true /*CheckUpToFaceLimits.getValue()*/); + try { + prism.makeElementPrismUntil(base, + sketchshape, + supportface, + upToShape, + dir, + TopoShape::PrismMode::None, + true /*CheckUpToFaceLimits.getValue()*/); + } + catch (Base::Exception& e) { + if (method == "UpToShape" && faceCount > 1){ + return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP( + "Exception", + "Unable to reach the selected shape, please select faces")); + } + } } else { Part::ExtrusionParameters params; diff --git a/src/Mod/PartDesign/App/FeatureExtrude.h b/src/Mod/PartDesign/App/FeatureExtrude.h index 51350074de..8978834c78 100644 --- a/src/Mod/PartDesign/App/FeatureExtrude.h +++ b/src/Mod/PartDesign/App/FeatureExtrude.h @@ -71,6 +71,7 @@ protected: Base::Vector3d computeDirection(const Base::Vector3d& sketchVector, bool inverse); bool hasTaperedAngle() const; + /// Options for buildExtrusion() enum class ExtrudeOption { @@ -84,6 +85,13 @@ protected: App::DocumentObjectExecReturn* buildExtrusion(ExtrudeOptions options); + /** + * generate an open shell from a given shape + * by removing the farthest face from the sketchshape in the direction + * if farthest is nearest (circular) then return the initial shape + */ + TopoShape makeShellFromUpToShape(TopoShape shape, TopoShape sketchshape, gp_Dir dir); + /** * Generates an extrusion of the input sketchshape and stores it in the given \a prism */ diff --git a/src/Mod/PartDesign/App/FeatureHole.cpp b/src/Mod/PartDesign/App/FeatureHole.cpp index 440761fa4d..2af49ea716 100644 --- a/src/Mod/PartDesign/App/FeatureHole.cpp +++ b/src/Mod/PartDesign/App/FeatureHole.cpp @@ -51,10 +51,14 @@ #include #include #include +#include +#include #include "FeatureHole.h" #include "json.hpp" +FC_LOG_LEVEL_INIT("PartDesign", true, true); + namespace PartDesign { /* TRANSLATOR PartDesign::Hole */ @@ -1882,30 +1886,76 @@ App::DocumentObjectExecReturn* Hole::execute() // we reuse the name protoHole (only now it is threaded) protoHole = mkFuse.Shape(); } + std::vector holes; + auto compound = findHoles(holes, profileshape, protoHole); - TopoDS_Compound holes = findHoles(profileshape.getShape(), protoHole); - this->AddSubShape.setValue(holes); + TopoShape result(0); - // For some reason it is faster to do the cut through a BooleanOperation. - BRepAlgoAPI_Cut mkBool(base.getShape(), holes); - if (!mkBool.IsDone()) { - return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Boolean operation failed")); + // set the subtractive shape property for later usage in e.g. pattern + this->AddSubShape.setValue(compound); + + if (base.isNull()) { + Shape.setValue(compound); + return App::DocumentObject::StdReturn; } - TopoDS_Shape result = mkBool.Shape(); + // First try cutting with compound which will be faster as it is done in + // parallel + bool retry = true; + const char *maker; + switch (getAddSubType()) { + case Additive: + maker = Part::OpCodes::Fuse; + break; + default: + maker = Part::OpCodes::Cut; + } + try { + if (base.isNull()) + result = compound; + else + result.makeElementBoolean(maker, {base,compound}); + result = getSolid(result); + retry = false; + } catch (Standard_Failure & e) { + FC_WARN(getFullName() << ": boolean operation with compound failed (" + << e.GetMessageString() << "), retry..."); + } catch (Base::Exception & e) { + FC_WARN(getFullName() << ": boolean operation with compound failed (" + << e.what() << "), retry..."); + } - // We have to get the solids (fuse sometimes creates compounds) - base = getSolid(result); - if (base.isNull()) - return new App::DocumentObjectExecReturn(QT_TRANSLATE_NOOP("Exception", "Resulting shape is not a solid")); - base = refineShapeIfActive(base); + if (retry) { + int i = 0; + for (auto & hole : holes) { + ++i; + try { + result.makeElementBoolean(maker, {base,hole}); + } catch (Standard_Failure &) { + std::string msg(QT_TRANSLATE_NOOP("Exception", "Boolean operation failed on profile Edge")); + msg += std::to_string(i); + return new App::DocumentObjectExecReturn(msg.c_str()); + } catch (Base::Exception &e) { + e.ReportException(); + std::string msg(QT_TRANSLATE_NOOP("Exception", "Boolean operation failed on profile Edge")); + msg += std::to_string(i); + return new App::DocumentObjectExecReturn(msg.c_str()); + } + base = getSolid(result); + if (base.isNull()) { + std::string msg(QT_TRANSLATE_NOOP("Exception", "Boolean operation produced non-solid on profile Edge")); + msg += std::to_string(i); + return new App::DocumentObjectExecReturn(msg.c_str()); + } + } + result = base; + } - if (!isSingleSolidRuleSatisfied(base.getShape())) { + if (!isSingleSolidRuleSatisfied(result.getShape())) { return new App::DocumentObjectExecReturn( - QT_TRANSLATE_NOOP("Exception", "Result has multiple solids: that is not currently supported.")); + QT_TRANSLATE_NOOP("Exception", "Result has multiple solids: that is not currently supported.")); } - - this->Shape.setValue(base); + this->Shape.setValue(result); return App::DocumentObject::StdReturn; } @@ -1979,54 +2029,43 @@ gp_Vec Hole::computePerpendicular(const gp_Vec& zDir) const xDir.Normalize(); return xDir; } - -TopoDS_Compound Hole::findHoles(const TopoDS_Shape& profileshape, - const TopoDS_Shape& protohole) const +TopoShape Hole::findHoles(std::vector &holes, + const TopoShape& profileshape, + const TopoDS_Shape& protoHole) const { - BRep_Builder builder; - TopoDS_Compound holes; - builder.MakeCompound(holes); - TopTools_IndexedMapOfShape edgeMap; - TopExp::MapShapes(profileshape, TopAbs_EDGE, edgeMap); - std::vector holePointsList; - for (int i = 1; i <= edgeMap.Extent(); i++) { - bool dupCenter = false; + TopoShape result(0); + + int i = 0; + for(const auto &profileEdge : profileshape.getSubTopoShapes(TopAbs_EDGE)) { + ++i; Standard_Real c_start; Standard_Real c_end; - TopoDS_Edge edge = TopoDS::Edge(edgeMap(i)); + TopoDS_Edge edge = TopoDS::Edge(profileEdge.getShape()); Handle(Geom_Curve) c = BRep_Tool::Curve(edge, c_start, c_end); // Circle? - if (c.IsNull() || c->DynamicType() != STANDARD_TYPE(Geom_Circle)) { + if (c->DynamicType() != STANDARD_TYPE(Geom_Circle)) continue; - } Handle(Geom_Circle) circle = Handle(Geom_Circle)::DownCast(c); gp_Pnt loc = circle->Axis().Location(); - for (auto holePoint : holePointsList) { - if (holePoint.IsEqual(loc, Precision::Confusion())) { - Base::Console().Log( - "PartDesign_Hole - There is a duplicate circle/curve center at %.2f : %.2f " - ": %.2f therefore not passing parameter\n", - loc.X(), - loc.Y(), - loc.Z()); - dupCenter = true; - } - } - if (!dupCenter) { - holePointsList.push_back(loc); - gp_Trsf localSketchTransformation; - localSketchTransformation.SetTranslation(gp_Pnt(0, 0, 0), loc); - TopoDS_Shape copy = protohole; - copy.Move(localSketchTransformation); - builder.Add(holes, copy); - } + gp_Trsf localSketchTransformation; + localSketchTransformation.SetTranslation( gp_Pnt( 0, 0, 0 ), + gp_Pnt(loc.X(), loc.Y(), loc.Z()) ); + + Part::ShapeMapper mapper; + mapper.populate(Part::MappingStatus::Modified, profileEdge, TopoShape(protoHole).getSubTopoShapes(TopAbs_FACE)); + + TopoShape hole(-getID()); + hole.makeShapeWithElementMap(protoHole, mapper, {profileEdge}); + + // transform and generate element map. + hole = hole.makeElementTransform(localSketchTransformation); + holes.push_back(hole); } - - return holes; + return TopoShape().makeElementCompound(holes); } TopoDS_Shape Hole::makeThread(const gp_Vec& xDir, const gp_Vec& zDir, double length) diff --git a/src/Mod/PartDesign/App/FeatureHole.h b/src/Mod/PartDesign/App/FeatureHole.h index 6460874bba..662dde2b6c 100644 --- a/src/Mod/PartDesign/App/FeatureHole.h +++ b/src/Mod/PartDesign/App/FeatureHole.h @@ -224,7 +224,7 @@ private: void rotateToNormal(const gp_Dir& helixAxis, const gp_Dir& normalAxis, TopoDS_Shape& helixShape) const; gp_Vec computePerpendicular(const gp_Vec&) const; TopoDS_Shape makeThread(const gp_Vec&, const gp_Vec&, double); - TopoDS_Compound findHoles(const TopoDS_Shape& profileshape, const TopoDS_Shape& protohole) const; + TopoShape findHoles(std::vector &holes, const TopoShape& profileshape, const TopoDS_Shape& protohole) const; // helpers for nlohmann json friend void from_json(const nlohmann::json &j, CounterBoreDimension &t); diff --git a/src/Mod/PartDesign/App/FeatureLoft.cpp b/src/Mod/PartDesign/App/FeatureLoft.cpp index baffc52b51..c2208a0999 100644 --- a/src/Mod/PartDesign/App/FeatureLoft.cpp +++ b/src/Mod/PartDesign/App/FeatureLoft.cpp @@ -72,7 +72,11 @@ Loft::getSectionShape(const char *name, size_t expected_size) { std::vector shapes; - if (subs.empty() || std::find(subs.begin(), subs.end(), std::string()) != subs.end()) { + // Be smart. If part of a sketch is selected, use the entire sketch unless it is a single vertex - + // backward compatibility (#16630) + auto subName = subs.empty() ? "" : subs.front(); + auto useEntireSketch = obj->isDerivedFrom(Part::Part2DObject::getClassTypeId()) && subName.find("Vertex") != 0; + if (subs.empty() || std::find(subs.begin(), subs.end(), std::string()) != subs.end() || useEntireSketch ) { shapes.push_back(Part::Feature::getTopoShape(obj)); if (shapes.back().isNull()) FC_THROWM(Part::NullShapeException, "Failed to get shape of " diff --git a/src/Mod/PartDesign/App/FeatureSketchBased.cpp b/src/Mod/PartDesign/App/FeatureSketchBased.cpp index a0a9ca7194..baf36b1e00 100644 --- a/src/Mod/PartDesign/App/FeatureSketchBased.cpp +++ b/src/Mod/PartDesign/App/FeatureSketchBased.cpp @@ -708,12 +708,10 @@ int ProfileBased::getUpToShapeFromLinkSubList(TopoShape& upToShape, const App::P } } if (ret == 0){ - throw Base::ValueError("SketchBased: No face selected"); + return 0; } - - upToShape = faceList[0]; - if (ret == 1){ + upToShape = faceList[0]; return 1; } @@ -850,7 +848,6 @@ void ProfileBased::getUpToFace(TopoDS_Face& upToFace, void ProfileBased::getUpToFace(TopoShape& upToFace, const TopoShape& support, - const TopoShape& supportface, const TopoShape& sketchshape, const std::string& method, gp_Dir& dir) @@ -889,13 +886,11 @@ void ProfileBased::getUpToFace(TopoShape& upToFace, TopoDS_Face face = TopoDS::Face(upToFace.getShape()); // Check that the upToFace does not intersect the sketch face and - // is not parallel to the extrusion direction (for simplicity, supportface is used instead of - // sketchshape) - BRepAdaptor_Surface adapt1(TopoDS::Face(supportface.getShape())); - BRepAdaptor_Surface adapt2(face); + // is not parallel to the extrusion direction + BRepAdaptor_Surface adapt(face); - if (adapt2.GetType() == GeomAbs_Plane) { - if (adapt1.Plane().Axis().IsNormal(adapt2.Plane().Axis(), Precision::Confusion())) { + if (adapt.GetType() == GeomAbs_Plane) { + if (dir.IsNormal(adapt.Plane().Axis().Direction(), Precision::Confusion())) { throw Base::ValueError( "SketchBased: Up to face: Must not be parallel to extrusion direction!"); } diff --git a/src/Mod/PartDesign/App/FeatureSketchBased.h b/src/Mod/PartDesign/App/FeatureSketchBased.h index 04a293a670..dfeba5a349 100644 --- a/src/Mod/PartDesign/App/FeatureSketchBased.h +++ b/src/Mod/PartDesign/App/FeatureSketchBased.h @@ -168,12 +168,11 @@ protected: /// Create a shape with shapes and faces from a given LinkSubList /// return 0 if almost one full shape is selected else the face count - int getUpToShapeFromLinkSubList(TopoShape& upToShape, const App::PropertyLinkSubList& refShape); // TODO static + static int getUpToShapeFromLinkSubList(TopoShape& upToShape, const App::PropertyLinkSubList& refShape); /// Find a valid face to extrude up to static void getUpToFace(TopoShape& upToFace, const TopoShape& support, - const TopoShape& supportface, const TopoShape& sketchshape, const std::string& method, gp_Dir& dir); diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign.ts index 79857d427d..97b05b9df4 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign.ts @@ -877,18 +877,18 @@ so that self intersection is avoided. - + Make copy - + Create a Sketch on Face - + Create a new Sketch @@ -1563,17 +1563,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list - + The body list cannot be empty - + Boolean: Accept: Input error @@ -1602,7 +1602,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error @@ -1684,13 +1684,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected - + Face @@ -1700,48 +1700,48 @@ click again to end selection - + Preview - + Select faces - + No shape selected - + Sketch normal - + Face normal - + Select reference... - - + + Custom direction - + Click on a shape in the model - + Click on a face in the model @@ -2545,12 +2545,12 @@ measured along the specified direction - + Section orientation - + Remove @@ -2614,13 +2614,13 @@ measured along the specified direction - - + + Input error - + No active body @@ -2658,12 +2658,12 @@ measured along the specified direction - + Section transformation - + Remove @@ -3029,59 +3029,59 @@ click again to end selection - + Normal sketch axis - + Vertical sketch axis - + Horizontal sketch axis - - + + Construction line %1 - + Base X axis - + Base Y axis - + Base Z axis - - + + Select reference... - + Base XY plane - + Base YZ plane - + Base XZ plane @@ -3368,42 +3368,42 @@ click again to end selection - + Several sub-elements selected - + You have to select a single face as support for a sketch! - + No support face selected - + You have to select a face as support for a sketch! - + No planar support - + You need a planar face as support for a sketch! - + No valid planes in this document - + Please create a plane first or select a face to sketch on @@ -3411,7 +3411,7 @@ click again to end selection - + @@ -3423,7 +3423,7 @@ click again to end selection - + @@ -3679,13 +3679,13 @@ This may lead to unexpected results. - + Vertical sketch axis - + Horizontal sketch axis @@ -4713,19 +4713,18 @@ over 90: larger hole radius at the bottom - + - Resulting shape is not a solid - - - + + + @@ -4733,7 +4732,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. @@ -4800,7 +4799,7 @@ over 90: larger hole radius at the bottom - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4809,49 +4808,54 @@ over 90: larger hole radius at the bottom - + Length too small - + Second length too small - + Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face - + Creating a face from sketch failed - + Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + + + + Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed @@ -4918,7 +4922,7 @@ Intersecting sketch entities in a sketch are not allowed. - + Error: Result is not a solid @@ -4957,94 +4961,104 @@ Intersecting sketch entities in a sketch are not allowed. - + Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification - + Hole error: Invalid hole depth - + Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink - + Hole error: Invalid drill point angle - + Hole error: Invalid drill point - + Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty - + Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + + + + + Boolean operation produced non-solid on profile Edge + + - Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range - + Thread size out of range - + Error: Thread could not be built @@ -5069,7 +5083,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. @@ -5310,7 +5324,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. - + Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_be.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_be.ts index 59d1034d3b..540d722e8a 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_be.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_be.ts @@ -884,18 +884,18 @@ False = унутраная шасцярня Стварыць дублікат - + Make copy Зрабіць копію - + Create a Sketch on Face Стварыць эскіз на грані - + Create a new Sketch Стварыць новы эскіз @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Пусты спіс цел - + The body list cannot be empty Спіс цел не можа быць пустым - + Boolean: Accept: Input error Лагічная аперацыя: Прыняць: Памылка ўводу @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Памылка ўводу @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Грань не абраная - + Face Грань @@ -1714,48 +1714,48 @@ click again to end selection Выдаліць - + Preview Папярэдні выгляд - + Select faces Абраць грані - + No shape selected Фігура не абраная - + Sketch normal Вектар нармалі эскізу - + Face normal Вектар нармалі грані - + Select reference... Select reference... - - + + Custom direction Адвольны напрамак - + Click on a shape in the model Пстрыкнуць па фігуры ў мадэлі - + Click on a face in the model Пстрыкнуць па грані ў мадэлі @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Арыентацыя перасеку - + Remove Выдаліць @@ -2634,13 +2634,13 @@ measured along the specified direction Выдаліць - - + + Input error Памылка ўводу - + No active body Без бягучага цела @@ -2678,12 +2678,12 @@ measured along the specified direction Спіс можна парадкаваць перацягваннем - + Section transformation Пераўтварэнне перасеку - + Remove Выдаліць @@ -3051,59 +3051,59 @@ click again to end selection Выдаліць - + Normal sketch axis Вектар нармалі восі эскізу - + Vertical sketch axis Вертыкальная вось эскізу - + Horizontal sketch axis Гарызантальная вось эскізу - - + + Construction line %1 Будаўнічая лінія %1 - + Base X axis Асноўная вось X - + Base Y axis Асноўная вось Y - + Base Z axis Асноўная вось Z - - + + Select reference... Абраць апорны элемент... - + Base XY plane Асноўная плоскасць XY - + Base YZ plane Асноўная плоскасць YZ - + Base XZ plane Асноўная плоскасць XZ @@ -3390,42 +3390,42 @@ click again to end selection Злучнае рэчыва ўкладзенай фігуры - + Several sub-elements selected Некалькі абраных укладзеных элементаў - + You have to select a single face as support for a sketch! Вы павінны абраць адну грань у якасці падтрымкі для эскізу! - + No support face selected Не абрана грань падтрымкі - + You have to select a face as support for a sketch! Вы павінны абраць грань у якасці падтрымкі для эскізу! - + No planar support Адсутнічае плоская падтрымка - + You need a planar face as support for a sketch! Вам патрэбна абраць плоскую грань у якасці падтрымкі для эскізу! - + No valid planes in this document У дакуменце дапушчальныя плоскасці адсутнічаюць - + Please create a plane first or select a face to sketch on Калі ласка, спачатку стварыце плоскасць, альбо абярыце грань на эскізе @@ -3433,7 +3433,7 @@ click again to end selection - + @@ -3445,7 +3445,7 @@ click again to end selection - + @@ -3707,13 +3707,13 @@ This may lead to unexpected results. Немагчыма стварыць элемент адымання без даступнага асноўнага элементу - + Vertical sketch axis Вертыкальная вось эскізу - + Horizontal sketch axis Гарызантальная вось эскізу @@ -4752,19 +4752,18 @@ over 90: larger hole radius at the bottom Лагічная аперацыя не падтрымліваецца - + - Resulting shape is not a solid Выніковая фігура атрымалася не суцэльным целам - - - + + + @@ -4772,7 +4771,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Вынік змяшчае некалькі суцэльных цел: у бягучы час гэтае не падтрымліваецца. @@ -4839,7 +4838,7 @@ over 90: larger hole radius at the bottom Вугал пазу занадта малы - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4850,49 +4849,54 @@ over 90: larger hole radius at the bottom - абраны эскіз не належыць да бягучага Цела. - + Length too small Даўжыня занадта маленькая - + Second length too small Другая даўжыня занадта малая - + Failed to obtain profile shape Не атрымалася атрымаць фігуру профілю - + Creation failed because direction is orthogonal to sketch's normal vector Стварэнне не атрымалася, паколькі напрамак артаганальнага вектару нармалі эскіза - + Extrude: Can only offset one face Выдушыць: можна зрушыць толькі адну грань - + Creating a face from sketch failed Не атрымалася стварыць грань з эскізу - + Up to face: Could not get SubShape! Да грані: не атрымалася змяніць укладзеную фігуру! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Велічыня вуглу конусу зянкоўкі адпавядае ці перавышае 90 градусаў - + Padding with draft angle failed Не атрымалася выцягванне з вуглом нахілу @@ -4960,7 +4964,7 @@ Intersecting sketch entities in a sketch are not allowed. Памылка: грань павінна быць плоскай - + Error: Result is not a solid @@ -4999,95 +5003,105 @@ Intersecting sketch entities in a sketch are not allowed. Памылка: не атрымалася стварыць грань з эскізу - + Hole error: Creating a face from sketch failed Памылка адтуліны: не атрымалася стварыць грань з эскізу - + Hole error: Unsupported length specification Памылка адтуліны: спецыфікацыя даўжыні не падтрымліваецца - + Hole error: Invalid hole depth Памылка адтуліны: хібная глыбіня адтуліны - + Hole error: Invalid taper angle Памылка адтуліны: хібны вугал конусу зянкоўкі - + Hole error: Hole cut diameter too small Памылка адтуліны: дыяметр абрэзкі адтуліны занадта малы - + Hole error: Hole cut depth must be less than hole depth Памылка адтуліны: глыбіня абрэзкі адтуліны павінна быць менш глыбіні адтуліны - + Hole error: Hole cut depth must be greater or equal to zero Памылка адтуліны: глыбіня абрэзкі адтуліны павінна быць больш ці роўная нулю - + Hole error: Invalid countersink Памылка адтуліны: хібная зянкоўка - + Hole error: Invalid drill point angle Памылка адтуліны: хібны вугал кропкі свідравання - + Hole error: Invalid drill point Памылка адтуліны: хібная кропка свідравання - + Hole error: Could not revolve sketch Памылка адтуліны: не атрымалася павярнуць эскіз - + Hole error: Resulting shape is empty Памылка адтуліны: выніковая фігура пустая - + Error: Adding the thread failed Памылка: не атрымалася дадаць разьбу + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Лагічная аперацыя завяршылася няўдачай - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Не атрымалася стварыць грань з эскізу. Перасякальныя сутнасці эскізу ці некалькі граняў у эскізе не дапускаюцца для стварэння кішэні да грані. - + Thread type out of range Тып разьбы па-за межамі дыяпазону - + Thread size out of range Памер разьбы па-за межамі дыяпазону - + Error: Thread could not be built Памылка: не атрымалася пабудаваць разьбу @@ -5112,7 +5126,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Профіль: не атрымалася стварыць абалонку - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Не атрымалася стварыць грань з эскізу. @@ -5354,7 +5368,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Хібная вось апорнага элементу - + Fusion with base feature failed Не атрымалася выканаць зліццё з асноўнай функцыяй diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ca.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ca.ts index 7c536f5ca3..64e59883fe 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ca.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ca.ts @@ -883,18 +883,18 @@ de manera que s'evita l'autointersecció. Crea un clon - + Make copy Fer còpia - + Create a Sketch on Face Creeu un Sketch a la cara croquis - + Create a new Sketch Creeu un esbós nou @@ -1575,17 +1575,17 @@ clica altre cop per finalitzar la selecció PartDesignGui::TaskDlgBooleanParameters - + Empty body list La llista de cossos és buida - + The body list cannot be empty La llista de cossos no pot ser buida - + Boolean: Accept: Input error Boolean: Acceptar: error d'entrada @@ -1614,7 +1614,7 @@ clica altre cop per finalitzar la selecció PartDesignGui::TaskDlgShapeBinder - + Input error Error d'entrada @@ -1699,13 +1699,13 @@ clica altre cop per finalitzar la selecció PartDesignGui::TaskExtrudeParameters - + No face selected Cap cara seleccionada - + Face Cara @@ -1715,48 +1715,48 @@ clica altre cop per finalitzar la selecció Elimina - + Preview Previsualització - + Select faces Seleccioneu cares - + No shape selected Forma no seleccionada - + Sketch normal Croquis normal - + Face normal Cara Normal - + Select reference... Seleccioneu referència... - - + + Custom direction Direcció personalitzada - + Click on a shape in the model Clica en una forma del model - + Click on a face in the model Clica en una cara del model @@ -2120,7 +2120,7 @@ clica altre cop per finalitzar la selecció Offset - Equidistancia (ofset) + Equidistància @@ -2330,7 +2330,7 @@ clica altre cop per finalitzar la selecció Offset to face - Desplaçament a la Cara + Equidistància a la Cara @@ -2566,12 +2566,12 @@ mesurada al llarg de la direcció especificada Z - + Section orientation Orientació de la secció - + Remove Elimina @@ -2635,13 +2635,13 @@ mesurada al llarg de la direcció especificada Elimina - - + + Input error Error d'entrada - + No active body Cap cos actiu @@ -2679,12 +2679,12 @@ mesurada al llarg de la direcció especificada La llista es pot reordenar arrossegant - + Section transformation Transformació de la secció - + Remove Elimina @@ -2699,7 +2699,7 @@ mesurada al llarg de la direcció especificada Offset from face at which pocket will end - Desplaçament de la cara a la qual acabarà la cavitat + Equidistància de la cara a la qual acabarà la cavitat @@ -2762,7 +2762,7 @@ mesurada al llarg de la direcció especificada Offset Angle - Desplaçament de l'Angle + Equidistància de l'Angle @@ -2772,7 +2772,7 @@ mesurada al llarg de la direcció especificada Offset - Equidistancia (ofset) + Equidistància @@ -3053,59 +3053,59 @@ clica altre cop per finalitzar la selecció Elimina - + Normal sketch axis Eix normal al croquis - + Vertical sketch axis Eix vertical de croquis - + Horizontal sketch axis Eix horitzontal de croquis - - + + Construction line %1 Construcció línia %1 - + Base X axis Eix base X - + Base Y axis Eix base Y - + Base Z axis Eix base Z - - + + Select reference... Seleccioneu referència... - + Base XY plane Base pla XY - + Base YZ plane Pla YZ base - + Base XZ plane Base pla XZ @@ -3392,42 +3392,42 @@ clica altre cop per finalitzar la selecció Sub Shape Binder - + Several sub-elements selected S'han seleccionat diversos sub-elements - + You have to select a single face as support for a sketch! Heu de seleccionar una única cara com a suport de l'esbós! - + No support face selected No s'ha seleccionat una cara de suport - + You have to select a face as support for a sketch! Heu seleccionat una cara de suport per a un esbós! - + No planar support No hi ha suport pla - + You need a planar face as support for a sketch! Necessiteu una cara plana com a suport per a un esbós! - + No valid planes in this document Esbossos no vàlids en aquest document - + Please create a plane first or select a face to sketch on Si us plau, crear un plànol primer o seleccioneu una cara a esbossar @@ -3435,7 +3435,7 @@ clica altre cop per finalitzar la selecció - + @@ -3447,7 +3447,7 @@ clica altre cop per finalitzar la selecció - + @@ -3707,13 +3707,13 @@ Això pot portar a resultats inesperats. No és possible crear un pla Sustractiu sense una base pla disponible - + Vertical sketch axis Eix vertical de croquis - + Horizontal sketch axis Eix horitzontal de croquis @@ -4752,19 +4752,18 @@ més de 90: radi de forat més gran a la part inferior No s’admet l’operació booleana - + - Resulting shape is not a solid La forma resultant no és un sòlid - - - + + + @@ -4772,7 +4771,7 @@ més de 90: radi de forat més gran a la part inferior - + Result has multiple solids: that is not currently supported. El resultat té múltiples sòlids: que actualment no està suportat. @@ -4839,7 +4838,7 @@ més de 90: radi de forat més gran a la part inferior L'angle de la ranura és massa petit - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4850,49 +4849,54 @@ més de 90: radi de forat més gran a la part inferior - l'esbós seleccionat no pertany al Cos actiu. - + Length too small Longitud massa petita - + Second length too small Segona longitud massa petita - + Failed to obtain profile shape L'obtenció de la forma del perfil ha fallat - + Creation failed because direction is orthogonal to sketch's normal vector La creació ha fallat perquè la direcció és ortogonal al vector normal del croquis - + Extrude: Can only offset one face - Extrusió: Només pots fer l'extrusió d'una cara + Extrusió: Només pots fer l'equidistància d'una cara - + Creating a face from sketch failed La creació de la cara del croquis ha fallat - + Up to face: Could not get SubShape! Fins a la cara: No s'ha pogut obtenir la subforma! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees La magnitud de l'angle cònic coincideix o supera els 90 graus - + Padding with draft angle failed El farciment amb l'angle d'esbós ha fallat @@ -4960,7 +4964,7 @@ No es permet la intersecció d'entitats d'un croquis. Error: La cara ha de ser planar - + Error: Result is not a solid @@ -4999,95 +5003,105 @@ No es permet la intersecció d'entitats d'un croquis. Error: No s'ha pogut crear la cara del croquis - + Hole error: Creating a face from sketch failed Error de forat: La creació de la cara del croquis ha fallat - + Hole error: Unsupported length specification Error de forat: Especificació de longitud no suportada - + Hole error: Invalid hole depth Error de forat: Profunditat del forat invàlida - + Hole error: Invalid taper angle Error de forat: Angle cònic invàlid - + Hole error: Hole cut diameter too small Error de forat: El diàmetre del tall del forat és massa petit - + Hole error: Hole cut depth must be less than hole depth Error de forat: La profunditat del tall del forat ha de ser menor que la profunditat del forat - + Hole error: Hole cut depth must be greater or equal to zero Error de forat: La profunditat del tall del forat ha de ser major o igual a 0 - + Hole error: Invalid countersink Error de forat: Avellanat invàlid - + Hole error: Invalid drill point angle Error de forat: Angle de la punta del trepant invàlid - + Hole error: Invalid drill point Error de forat: Punta del trepant invàlida - + Hole error: Could not revolve sketch Error de forat: No s'ha pogut revolucionar el croquis - + Hole error: Resulting shape is empty Error de forat: La forma resultant és buida - + Error: Adding the thread failed Error: L'afegit de la rosca ha fallat + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed L'operació booleana ha fallat - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. No s'ha pogut crear una cara del croquis. No es permet la intersecció d'entitats o múltiples cares d'un croquis per crear un buidatge en una cara. - + Thread type out of range Tipus de rosca fora de rang - + Thread size out of range Mida de rosca fora de rang - + Error: Thread could not be built Error: No s'ha pogut construir la rosca @@ -5112,7 +5126,7 @@ No es permet la intersecció d'entitats o múltiples cares d'un croquis per crea Altell: La creació d'un entorn ha fallat - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. No s'ha pogut crear una cara del croquis. @@ -5354,7 +5368,7 @@ No es permet la intersecció d'entitats o múltiples cares d'un croquis.L'eix de referència és invàlid - + Fusion with base feature failed La fusió amb la característica base ha fallat diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts index 5e2cd98bd5..0310aa394e 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_cs.ts @@ -883,18 +883,18 @@ aby se zabránilo sebe. Vytvořit klon - + Make copy Vytvořit kopii - + Create a Sketch on Face Vytvořit nový náčrt na oříznuté ploše - + Create a new Sketch Vytvořit nový náčrt @@ -1575,17 +1575,17 @@ klikněte znovu pro ukončení výběru PartDesignGui::TaskDlgBooleanParameters - + Empty body list Prázdný seznam těles - + The body list cannot be empty Seznam těles nemůže být prázdný - + Boolean: Accept: Input error Boolean: Přimutí: Vstupní chyba @@ -1614,7 +1614,7 @@ klikněte znovu pro ukončení výběru PartDesignGui::TaskDlgShapeBinder - + Input error Chyba zadání @@ -1699,13 +1699,13 @@ klikněte znovu pro ukončení výběru PartDesignGui::TaskExtrudeParameters - + No face selected Nevybrána žádná stěna - + Face Plocha @@ -1715,48 +1715,48 @@ klikněte znovu pro ukončení výběru Odstranit - + Preview Náhled - + Select faces Výběr ploch - + No shape selected Není vybrán útvar - + Sketch normal Normála náčrtu - + Face normal Normála plochy - + Select reference... Vyber referenci... - - + + Custom direction Vlastní směr - + Click on a shape in the model Klikněte na tvar v modelu - + Click on a face in the model Klikněte na plochu v modelu @@ -2566,12 +2566,12 @@ měřena ve stanoveném směru Z - + Section orientation Orientace průřezu - + Remove Odstranit @@ -2635,13 +2635,13 @@ měřena ve stanoveném směru Odstranit - - + + Input error Chyba zadání - + No active body Žádné aktivní těleso @@ -2679,12 +2679,12 @@ měřena ve stanoveném směru Seznam lze přeřadit přetažením - + Section transformation Transformace průřezů - + Remove Odstranit @@ -3053,59 +3053,59 @@ klikněte znovu pro ukončení výběru Odstranit - + Normal sketch axis Normálová osa roviny náčrtu - + Vertical sketch axis Svislá skicovací osa - + Horizontal sketch axis Vodorovná skicovací osa - - + + Construction line %1 Konstrukční čára %1 - + Base X axis Základní osa X - + Base Y axis Základní osa Y - + Base Z axis Základní osa Z - - + + Select reference... Vyber referenci... - + Base XY plane Základní rovina XY - + Base YZ plane Základní rovina YZ - + Base XZ plane Základní rovina XZ @@ -3392,42 +3392,42 @@ klikněte znovu pro ukončení výběru Pořadač dílčích tvarů - + Several sub-elements selected několik pod elementů vybráno - + You have to select a single face as support for a sketch! Máte vybranou jednoduchou plochu jako podklad pro náčrt! - + No support face selected Není vybrána žádná podporovaná stěna - + You have to select a face as support for a sketch! Musíte vybrat stěnu jako plochu pro náčrt! - + No planar support Není k dispozici podporovaná rovina - + You need a planar face as support for a sketch! Potřebujete stěnu jako plochu pro náčrt! - + No valid planes in this document V tomto dokumento nejsou platné roviny - + Please create a plane first or select a face to sketch on Nejprve vytvořte rovinu nebo vyberte plochu, na kterou chcete vytvořit náčrt @@ -3435,7 +3435,7 @@ klikněte znovu pro ukončení výběru - + @@ -3447,7 +3447,7 @@ klikněte znovu pro ukončení výběru - + @@ -3709,13 +3709,13 @@ To může vést k neočekávaným výsledkům. Není možné vytvořit odečtový prvek bez základního prvku - + Vertical sketch axis Svislá skicovací osa - + Horizontal sketch axis Vodorovná skicovací osa @@ -4755,19 +4755,18 @@ nad 90: větší poloměr díry ve spodní části Nepodporovaná booleovská operace - + - Resulting shape is not a solid Výsledný tvar není plné těleso - - - + + + @@ -4775,7 +4774,7 @@ nad 90: větší poloměr díry ve spodní části - + Result has multiple solids: that is not currently supported. Výsledek se skládá z více těles: to není v současné době podporováno. @@ -4842,7 +4841,7 @@ nad 90: větší poloměr díry ve spodní části Úhel drážky příliš malý - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4854,49 +4853,54 @@ nad 90: větší poloměr díry ve spodní části - vybraný náčrt nepatří k aktivnímu tělesu. - + Length too small Příliš malá délka - + Second length too small Příliš malá druhá délka - + Failed to obtain profile shape Nepodařilo se získat tvar profilu - + Creation failed because direction is orthogonal to sketch's normal vector Vytvoření selhalo, protože směr je kolmý k normálovému vektoru náčrtu - + Extrude: Can only offset one face Vysunutí: Umožňuje odsadit jen jednu plochu - + Creating a face from sketch failed Vytvoření plochy z náčrtu selhalo - + Up to face: Could not get SubShape! K ploše: Nelze získat dílčí tvar! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Velikost kuželového úhlu se shoduje nebo přesahuje 90 stupňů - + Padding with draft angle failed Vytvoření desky s úhlem návrhu se nezdařilo @@ -4964,7 +4968,7 @@ Protínání entit náčrtu v náčrtu není povoleno. Chyba: Plocha musí být rovinná - + Error: Result is not a solid @@ -5003,95 +5007,105 @@ Protínání entit náčrtu v náčrtu není povoleno. Chyba: Nelze vytvořit plochu z náčrtu - + Hole error: Creating a face from sketch failed Chyba díry: Vytvoření plochy z náčrtu selhalo - + Hole error: Unsupported length specification Chyba díry: Specifikována nepodporovaná délka - + Hole error: Invalid hole depth Chyba díry: Neplatná hloubka díry - + Hole error: Invalid taper angle Chyba díry: Neplatný úhel zkosení - + Hole error: Hole cut diameter too small Chyba díry: Průměr řezu díry je příliš malý - + Hole error: Hole cut depth must be less than hole depth Chyba díry: Hloubka řezu díry musí být menší než hloubka otvoru - + Hole error: Hole cut depth must be greater or equal to zero Chyba díry: Hloubka řezu díry musí být větší nebo rovna nule - + Hole error: Invalid countersink Chyba díry: Neplatné kuželové zahloubení - + Hole error: Invalid drill point angle Chyba díry: Neplatný úhel bodu zahloubení - + Hole error: Invalid drill point Chyba díry: Neplatný bod zahloubení - + Hole error: Could not revolve sketch Chyba díry: Nelze otočit náčrt - + Hole error: Resulting shape is empty Chyba díry: Výsledný tvar je prázdný - + Error: Adding the thread failed Chyba: Přidání závitu selhalo + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Booleovská operace selhala - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nelze vytvořit plochu z náčrtu. Protínání entit náčrtu nebo několika ploch v náčrtu není povoleno pro vytvoření kapsy k ploše. - + Thread type out of range Typ závitu mino rozsah - + Thread size out of range Velikost závitu mimo rozsah - + Error: Thread could not be built Chyba: Závit nelze vytvořit @@ -5116,7 +5130,7 @@ Protínání entit náčrtu nebo několika ploch v náčrtu není povoleno pro v Nepodařilo se vytvořit obal - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nelze vytvořit plochu z náčrtu. @@ -5358,7 +5372,7 @@ Nejsou povoleny protínající se prvky náčrtu nebo více ploch v náčrtu.Vztažná osa je neplatná - + Fusion with base feature failed Sjednocení se základním prvkem selhalo diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_da.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_da.ts index 30f5808cdd..385a11018e 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_da.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_da.ts @@ -883,18 +883,18 @@ så profilet ikke overlapper sig selv. Opret Klon - + Make copy Lav kopi - + Create a Sketch on Face Opret en skitse på en flade - + Create a new Sketch Opret en ny skitse @@ -1575,17 +1575,17 @@ klik igen for at afslutte valget PartDesignGui::TaskDlgBooleanParameters - + Empty body list Tom liste over emner - + The body list cannot be empty Listen over emner kan ikke være tom - + Boolean: Accept: Input error Boolesk: Accepter: Input fejl @@ -1614,7 +1614,7 @@ klik igen for at afslutte valget PartDesignGui::TaskDlgShapeBinder - + Input error Indtastningsfejl @@ -1699,13 +1699,13 @@ klik igen for at afslutte valget PartDesignGui::TaskExtrudeParameters - + No face selected Ingen flade valgt - + Face Flade @@ -1715,48 +1715,48 @@ klik igen for at afslutte valget Fjern - + Preview Preview - + Select faces Select faces - + No shape selected Ingen figur er markeret - + Sketch normal Normal til skitse - + Face normal Fladenormal - + Select reference... Select reference... - - + + Custom direction Brugerdefineret retning - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Klik på en flade på modellen @@ -2566,12 +2566,12 @@ målt i den angivne retning Z - + Section orientation Section orientation - + Remove Fjern @@ -2635,13 +2635,13 @@ målt i den angivne retning Fjern - - + + Input error Input error - + No active body Intet aktivt emne @@ -2679,12 +2679,12 @@ målt i den angivne retning Rækkefølgen i listen kan ændre ved at trække/slippe - + Section transformation Tværsnitstransformation - + Remove Fjern @@ -3053,59 +3053,59 @@ klik igen for at afslutte valget Fjern - + Normal sketch axis Normalakse til skitse - + Vertical sketch axis Lodret skitseakse - + Horizontal sketch axis Vandret skitseakse - - + + Construction line %1 Konstruktionslinje %1 - + Base X axis Basis X akse - + Base Y axis Basis Y akse - + Base Z axis Basis Z akse - - + + Select reference... Vælg reference... - + Base XY plane Basis XY plan - + Base YZ plane Basis YZ plan - + Base XZ plane Basis XZ plan @@ -3392,42 +3392,42 @@ klik igen for at afslutte valget Sub-Shape Binder - + Several sub-elements selected Flere underelementer er valgt - + You have to select a single face as support for a sketch! Du skal vælge en enkelt flade til fastgørelse af en skitse! - + No support face selected Ingen fastgørelsesflade valgt - + You have to select a face as support for a sketch! Du skal vælge en flade til fastgørelse af en skitse! - + No planar support Ingen fladeunderstøttelse - + You need a planar face as support for a sketch! Du skal bruge en plan flade til fastgørelse af en skitse! - + No valid planes in this document Ingen gyldige konstruktionsplaner i dette dokument - + Please create a plane first or select a face to sketch on Opret først et konstruktionsplan eller vælg en flade at skitsere på @@ -3435,7 +3435,7 @@ klik igen for at afslutte valget - + @@ -3447,7 +3447,7 @@ klik igen for at afslutte valget - + @@ -3709,13 +3709,13 @@ Dette kan føre til uventede resultater. Det er ikke muligt at oprette en subtraktiv geometri uden at have en basisgeometri - + Vertical sketch axis Lodret skitseakse - + Horizontal sketch axis Vandret skitseakse @@ -4755,19 +4755,18 @@ over 90: større hulradius i bunden Unsupported boolean operation - + - Resulting shape is not a solid Resulterende geometri er ikke én sammenhængende geometri - - - + + + @@ -4775,7 +4774,7 @@ over 90: større hulradius i bunden - + Result has multiple solids: that is not currently supported. Resultatet bliver ikke én sammenhængende geometri: Det er ikke understøttet. @@ -4842,7 +4841,7 @@ over 90: større hulradius i bunden Vinkel af rille for lille - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4854,49 +4853,54 @@ over 90: større hulradius i bunden - den valgte skitse ikke hører til det aktive emne. - + Length too small Længde for lille - + Second length too small Længde nr. 2 for lille - + Failed to obtain profile shape Kunne ikke finde profil - + Creation failed because direction is orthogonal to sketch's normal vector Oprettelse mislykkedes, fordi retningen vinkelret på skitsens normalvektor - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Oprettelse af en flade fra en skitse mislykkedes - + Up to face: Could not get SubShape! Til flade: Kunne ikke finde underliggende geometri! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Størrelsen af konusvinklen er 90 grader eller mere - + Padding with draft angle failed Ekstrudering med affasningsvinklen mislykkedes @@ -4964,7 +4968,7 @@ Krydsende linjer i en skitse er ikke tilladt. Fejl: Fladen skal være plan - + Error: Result is not a solid @@ -5003,95 +5007,105 @@ Krydsende linjer i en skitse er ikke tilladt. Fejl: Kunne ikke oprette en flade fra skitsen - + Hole error: Creating a face from sketch failed Hulfejl: Oprettelse af en flade fra skitsen mislykkedes - + Hole error: Unsupported length specification Hulfejl: Længdespecifikationen understøttes ikke - + Hole error: Invalid hole depth Hul fejl: Ugyldig huldybde - + Hole error: Invalid taper angle Hulfejl: Ugyldig konusvinkel - + Hole error: Hole cut diameter too small Hulfejl: Gevinddiameter for lille - + Hole error: Hole cut depth must be less than hole depth Hulfejl: Gevinddybden skal være mindre end hul dybden - + Hole error: Hole cut depth must be greater or equal to zero Hulfejl: Gevinddybden skal være større end, eller lig med, nul - + Hole error: Invalid countersink Hulfejl: Ugyldig undersænkning - + Hole error: Invalid drill point angle Hulfejl: Ugyldig borevinkel - + Hole error: Invalid drill point Hulfejl: Ugyldigt borepunkt - + Hole error: Could not revolve sketch Hul fejl: Kunne ikke dreje skitsen - + Hole error: Resulting shape is empty Hulfejl: Den resulterende geometri er tom - + Error: Adding the thread failed Fejl: Tilføjelse af gevindet mislykkedes + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolesk operation mislykkedes - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Kunne ikke oprette en flade fra skitsen. Krydsende skitselinjer eller flere flader i en skitse er ikke tilladt. - + Thread type out of range Gevindtype ikke mulig - + Thread size out of range Gevindstørrelse ikke mulig - + Error: Thread could not be built Fejl: Gevind kunne ikke oprettes @@ -5116,7 +5130,7 @@ Krydsende skitselinjer eller flere flader i en skitse er ikke tilladt.Transformér: Kunne ikke oprette fladegeometri - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Kunne ikke oprette en flade fra skitsen. @@ -5358,7 +5372,7 @@ Krydsende linjer eller flere flader i en skitse er ikke tilladt. Referenceaksen er ugyldig - + Fusion with base feature failed Fusion med basisgeometri mislykkedes diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts index c31153a85b..a0878e2ab8 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_de.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. Klon erstellen - + Make copy Kopie erstellen - + Create a Sketch on Face Skizze auf einer Fläche erstellen - + Create a new Sketch Erstellt eine neue Skizze @@ -1573,17 +1573,17 @@ erneut klicken um die Auswahl zu beenden PartDesignGui::TaskDlgBooleanParameters - + Empty body list Leere Körperliste - + The body list cannot be empty Die Körperliste darf nicht leer sein - + Boolean: Accept: Input error Boolean: Akzeptieren: Eingabefehler @@ -1612,7 +1612,7 @@ erneut klicken um die Auswahl zu beenden PartDesignGui::TaskDlgShapeBinder - + Input error Eingabefehler @@ -1697,13 +1697,13 @@ erneut klicken um die Auswahl zu beenden PartDesignGui::TaskExtrudeParameters - + No face selected Keine Fläche ausgewählt - + Face Fläche @@ -1713,48 +1713,48 @@ erneut klicken um die Auswahl zu beenden Entfernen - + Preview Vorschau - + Select faces Flächen auswählen - + No shape selected Keine Form gewählt - + Sketch normal Skizzennormale - + Face normal Flächennormale - + Select reference... Referenz auswählen... - - + + Custom direction Benutzerdefinierte Richtung - + Click on a shape in the model Auf eine Form im Modell klicken - + Click on a face in the model Auf eine Fläche im Modell klicken @@ -2564,12 +2564,12 @@ entlang der angegebenen Richtung gemessen Z - + Section orientation Ausrichtung der Querschnitte - + Remove Entfernen @@ -2633,13 +2633,13 @@ entlang der angegebenen Richtung gemessen Entfernen - - + + Input error Eingabefehler - + No active body Kein aktiver Körper @@ -2677,12 +2677,12 @@ entlang der angegebenen Richtung gemessen Die Liste kann durch Ziehen neu sortiert werden - + Section transformation Querschnittsänderung - + Remove Entfernen @@ -3051,59 +3051,59 @@ erneut klicken um die Auswahl zu beenden Entfernen - + Normal sketch axis Senkrecht zur Skizze - + Vertical sketch axis Vertikale Skizzenachse - + Horizontal sketch axis Horizontale Skizzenachse - - + + Construction line %1 Konstruktionslinie %1 - + Base X axis Basis X-Achse - + Base Y axis Basis Y-Achse - + Base Z axis Basis Z-Achse - - + + Select reference... Referenz auswählen... - + Base XY plane XY-Basis-Ebene - + Base YZ plane YZ-Basis-Ebene - + Base XZ plane XZ-Basis-Ebene @@ -3390,42 +3390,42 @@ erneut klicken um die Auswahl zu beenden Formbinder für Teilobjekt - + Several sub-elements selected Mehrere Unter-Elemente selektiert - + You have to select a single face as support for a sketch! Eine einzelne Fläche als Auflage für eine Skizze auswählen! - + No support face selected Keine Fläche als Auflage selektiert - + You have to select a face as support for a sketch! Eine Fläche als Auflage für eine Skizze auswählen! - + No planar support Keine ebene Auflage - + You need a planar face as support for a sketch! Benötigt eine ebene Fläche als Auflage für eine Skizze! - + No valid planes in this document Keine gültigen Ebenen in diesem Dokument - + Please create a plane first or select a face to sketch on Bitte zuerst eine Ebene erstellen oder eine Fläche auswählen, um darauf eine Skizze zu erstellen @@ -3433,7 +3433,7 @@ erneut klicken um die Auswahl zu beenden - + @@ -3445,7 +3445,7 @@ erneut klicken um die Auswahl zu beenden - + @@ -3705,13 +3705,13 @@ This may lead to unexpected results. Es ist nicht möglich, ein abzuziehendes Objekt ohne ein Basisobjekt zu erstellen - + Vertical sketch axis Vertikale Skizzenachse - + Horizontal sketch axis Horizontale Skizzenachse @@ -4751,19 +4751,18 @@ unter 90: kleinerer Bohrungsradius an der Unterseite Nicht unterstützte boolesche Verknüpfung - + - Resulting shape is not a solid Die resultierende Form ist kein Festkörper - - - + + + @@ -4771,7 +4770,7 @@ unter 90: kleinerer Bohrungsradius an der Unterseite - + Result has multiple solids: that is not currently supported. Das Ergebnis enthält mehrere Festkörper: Dies wird derzeit leider nicht unterstützt. @@ -4838,7 +4837,7 @@ unter 90: kleinerer Bohrungsradius an der Unterseite Winkel der Nut zu klein - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4849,49 +4848,54 @@ unter 90: kleinerer Bohrungsradius an der Unterseite - Die gewählte Skizze gehört nicht zum aktiven Körper. - + Length too small Länge zu klein - + Second length too small Zweite Länge zu klein - + Failed to obtain profile shape Profilform konnte nicht ermittelt werden - + Creation failed because direction is orthogonal to sketch's normal vector Erstellen fehlgeschlagen, weil die Richtung senkrecht auf dem Normalvektor der Skizze steht - + Extrude: Can only offset one face Aufpolstern: kann nur eine Fläche versetzen - + Creating a face from sketch failed Es konnte keine Fläche aus der Skizze erstellt werden - + Up to face: Could not get SubShape! Bis zu Oberfläche: Konnte kein SubShape ermitteln! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Größe des Schrägungswinkels ist größer oder gleich 90 Grad - + Padding with draft angle failed Aufpolsterung mit Schrägungswinkel fehlgeschlagen @@ -4959,7 +4963,7 @@ Skizzenobjekte dürfen einander nicht schneiden. Fehler: Fläche muss eben sein - + Error: Result is not a solid @@ -4998,95 +5002,105 @@ Skizzenobjekte dürfen einander nicht schneiden. Fehler: Konnte keine Fläche aus Skizze erzeugen - + Hole error: Creating a face from sketch failed Fehler bei Bohrung: Es konnte keine Fläche aus der Skizze erstellt werden - + Hole error: Unsupported length specification Bohrungsfehler: Nicht unterstützte Längenangabe - + Hole error: Invalid hole depth Lochfehler: Ungültige Lochtiefe - + Hole error: Invalid taper angle Bohrungsfehler: Ungültiger Kegelwinkel - + Hole error: Hole cut diameter too small Lochfehler: Lochdurchmesser zu klein - + Hole error: Hole cut depth must be less than hole depth Bohrungsfehler: Die Senkungstiefe muss kleiner als die Bohrungstiefe sein - + Hole error: Hole cut depth must be greater or equal to zero Bohrungsfehler: Die Senkungstiefe muss größer oder gleich null sein - + Hole error: Invalid countersink Lochfehler: Ungültige Senkung - + Hole error: Invalid drill point angle Lochfehler: Ungültiger Spitzenwinkel - + Hole error: Invalid drill point Fehler bei Bohrung: Ungültiger Bohrpunkt - + Hole error: Could not revolve sketch Fehler bei Bohrung: Konnte die Skizze nicht drehen - + Hole error: Resulting shape is empty Bohrungsfehler: Die resultierende Form ist leer - + Error: Adding the thread failed Fehler: Konnte das Gewinde nicht hinzufügen + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolesche Verknüpfung fehlgeschlagen - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Es konnte keine Fläche aus der Skizze erstellt werden. Beim Erstellen von Taschen bis zu einer Fläche sind nur einzelne Flächen in der Skizze erlaubt. Mehrere Flächen oder sich überschneidende Skizzenobjekte können nicht auf ein Mal bearbeitet werden. - + Thread type out of range Gewindetyp außerhalb des Bereichs - + Thread size out of range Gewindegröße außerhalb des Bereichs - + Error: Thread could not be built Fehler: Gewinde konnte nicht gebaut werden @@ -5111,7 +5125,7 @@ Beim Erstellen von Taschen bis zu einer Fläche sind nur einzelne Flächen in de Ausformung: Fehler beim Erstellen des Hüllkörpers - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Konnte keine Fläche aus der Skizze erstellen. @@ -5353,7 +5367,7 @@ Skizzenobjekte dürfen einander nicht schneiden und auch mehrfache Flächen sind Referenzachse ist ungültig - + Fusion with base feature failed Vereinigung mit Basis-Formelement ist fehlgeschlagen diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_el.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_el.ts index e2ea76845a..50e5c78f20 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_el.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_el.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. Create Clone - + Make copy Δημιουργία αντιγράφου - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Create a new Sketch @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Κενή λίστα σωμάτων - + The body list cannot be empty Η λίστα σωμάτων δεν δύναται να είναι κενή - + Boolean: Accept: Input error Χρήση Λειτουργιών Boole: Αποδοχή: Σφάλμα εισαγωγής @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Σφάλμα εισαγωγής @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Δεν επιλέχθηκε καμία όψη - + Face Όψη @@ -1714,48 +1714,48 @@ click again to end selection Αφαίρεση - + Preview Προεπισκόπηση - + Select faces Επιλέξτε όψεις - + No shape selected Δεν έχει επιλεχθεί κανένα σχήμα - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Επιλογή αναφοράς... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Προσανατολισμός τομής - + Remove Αφαίρεση @@ -2634,13 +2634,13 @@ measured along the specified direction Αφαίρεση - - + + Input error Σφάλμα εισαγωγής - + No active body No active body @@ -2678,12 +2678,12 @@ measured along the specified direction Η λίστα μπορεί να αναδιαταχθεί με σύρσιμο - + Section transformation Μετατόπιση τμήματος - + Remove Αφαίρεση @@ -3052,59 +3052,59 @@ click again to end selection Αφαίρεση - + Normal sketch axis Κανονικός άξονας σκίτσου - + Vertical sketch axis Κάθετος άξονας σκίτσου - + Horizontal sketch axis Οριζόντιος άξονας σκίτσου - - + + Construction line %1 Γραμμή κατασκευής %1 - + Base X axis Άξονας X βάσης - + Base Y axis Άξονας Y βάσης - + Base Z axis Άξονας Z βάσης - - + + Select reference... Επιλογή αναφοράς... - + Base XY plane Επίπεδο XY βάσης - + Base YZ plane Επίπεδο YZ βάσης - + Base XZ plane Επίπεδο XZ βάσης @@ -3391,42 +3391,42 @@ click again to end selection Sub-Shape Binder - + Several sub-elements selected Several sub-elements selected - + You have to select a single face as support for a sketch! Πρέπει να επιλέξετε ένα μόνο πρόσωπο ως υποστήριξη για ένα σκίτσο! - + No support face selected No support face selected - + You have to select a face as support for a sketch! Πρέπει να επιλέξετε ένα πρόσωπο ως υποστήριξη για ένα σκίτσο! - + No planar support No planar support - + You need a planar face as support for a sketch! Χρειάζεστε ένα επίπεδο πρόσωπο ως υποστήριξη για ένα σκίτσο! - + No valid planes in this document Δεν υπάρχουν έγκυρα επίπεδα σε αυτό το έγγραφο - + Please create a plane first or select a face to sketch on Παρακαλώ δημιουργήστε πρώτα ένα επίπεδο ή επιλέξτε την όψη πάνω στην οποία θα δημιουργήσετε σκαρίφημα @@ -3434,7 +3434,7 @@ click again to end selection - + @@ -3446,7 +3446,7 @@ click again to end selection - + @@ -3708,13 +3708,13 @@ This may lead to unexpected results. Δεν είναι εφικτό να δημιουργήσετε αφαιρετικό χαρακτηριστικό χωρίς κάποιο διαθέσιμο χαρακτηριστικό βάσης - + Vertical sketch axis Κάθετος άξονας σκίτσου - + Horizontal sketch axis Οριζόντιος άξονας σκίτσου @@ -4754,19 +4754,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4774,7 +4773,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4841,7 +4840,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4963,7 +4967,7 @@ Intersecting sketch entities in a sketch are not allowed. Σφάλμα: Η επιφάνεια πρέπει να είναι επίπεδη - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5115,7 +5129,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5357,7 +5371,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Ο άξονας αναφοράς δεν είναι έγκυρος - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-AR.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-AR.ts index af7633feca..75fa2d494d 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-AR.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-AR.ts @@ -882,18 +882,18 @@ para que se evite la auto intersección. Clona - + Make copy Copia - + Create a Sketch on Face Crea un croquis en una cara - + Create a new Sketch Crea un nuevo croquis @@ -1574,17 +1574,17 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista de cuerpos vacía - + The body list cannot be empty La lista de cuerpos no puede estar vacía - + Boolean: Accept: Input error Booleana: Aceptar: error de entrada @@ -1613,7 +1613,7 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskDlgShapeBinder - + Input error Error de entrada @@ -1698,13 +1698,13 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskExtrudeParameters - + No face selected Ninguna cara seleccionada - + Face Cara @@ -1714,48 +1714,48 @@ haga clic de nuevo para finalizar la selección Eliminar - + Preview Vista previa - + Select faces Seleccione caras - + No shape selected Ninguna forma seleccionada - + Sketch normal Normal al croquis - + Face normal Normal de la cara - + Select reference... Seleccione referencia... - - + + Custom direction Dirección personalizada - + Click on a shape in the model Haga clic en una forma en el modelo - + Click on a face in the model Haga clic en una cara en el modelo @@ -2306,7 +2306,7 @@ haga clic de nuevo para finalizar la selección Up to shape - Up to shape + Hasta la forma @@ -2564,12 +2564,12 @@ measured along the specified direction Z - + Section orientation Orientación de la sección - + Remove Eliminar @@ -2633,13 +2633,13 @@ measured along the specified direction Eliminar - - + + Input error Error de entrada - + No active body Ningún cuerpo activo @@ -2677,12 +2677,12 @@ measured along the specified direction La lista puede ser reordenada arrastrando - + Section transformation Transformación de sección - + Remove Eliminar @@ -2732,7 +2732,7 @@ measured along the specified direction Up to shape - Up to shape + Hasta la forma @@ -3051,59 +3051,59 @@ haga clic de nuevo para finalizar la selección Eliminar - + Normal sketch axis Eje normal al croquis - + Vertical sketch axis Eje vertical del croquis - + Horizontal sketch axis Eje horizontal del croquis - - + + Construction line %1 Línea de construcción %1 - + Base X axis Eje X base - + Base Y axis Eje Y base - + Base Z axis Eje Z base - - + + Select reference... Seleccionar referencia... - + Base XY plane Plano XY base - + Base YZ plane Plano YZ base - + Base XZ plane Plano XZ base @@ -3115,7 +3115,7 @@ haga clic de nuevo para finalizar la selección Transform tool shapes - Transform tool shapes + Transformar las formes de las herramientas @@ -3390,42 +3390,42 @@ haga clic de nuevo para finalizar la selección Sub Shape Binder - + Several sub-elements selected Varios sub-elementos seleccionados - + You have to select a single face as support for a sketch! ¡Tienes que seleccionar una sola cara como soporte para un croquis! - + No support face selected Ninguna cara de soporte seleccionada - + You have to select a face as support for a sketch! ¡Tienes que seleccionar una cara como soporte para un croquis! - + No planar support No hay soporte plano - + You need a planar face as support for a sketch! ¡Necesitas una cara plana como soporte para un croquis! - + No valid planes in this document No hay planos válidos en este documento - + Please create a plane first or select a face to sketch on Por favor, crea un plano primero o selecciona una cara para croquizar @@ -3433,7 +3433,7 @@ haga clic de nuevo para finalizar la selección - + @@ -3445,7 +3445,7 @@ haga clic de nuevo para finalizar la selección - + @@ -3707,13 +3707,13 @@ Esto puede conducir a resultados inesperados. No es posible crear una operación sustractiva sin una operación base disponible - + Vertical sketch axis Eje vertical del croquis - + Horizontal sketch axis Eje horizontal del croquis @@ -4356,7 +4356,7 @@ la parte superior del tornillo debajo de la superficie Hole Cut Type - Hole Cut Type + Tipo de corte del agujero @@ -4752,19 +4752,18 @@ más de 90: radio de agujero más grande en la parte inferior Operación booleana no soportada - + - Resulting shape is not a solid La forma resultante no es un sólido - - - + + + @@ -4772,7 +4771,7 @@ más de 90: radio de agujero más grande en la parte inferior - + Result has multiple solids: that is not currently supported. El resultado tiene múltiples sólidos: esto no está soportado actualmente. @@ -4839,7 +4838,7 @@ más de 90: radio de agujero más grande en la parte inferior Ángulo de ranura demasiado pequeño - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4851,51 +4850,56 @@ más de 90: radio de agujero más grande en la parte inferior - el croquis seleccionado no pertenece al Cuerpo activo. - + Length too small Longitud demasiado pequeña - + Second length too small Segunda longitud demasiado pequeña - + Failed to obtain profile shape Error al obtener la forma del perfil - + Creation failed because direction is orthogonal to sketch's normal vector La creación falló porque la dirección es ortogonal al vector normal del croquis - + Extrude: Can only offset one face Extruir: Sólo se puede desplazar una cara - + Creating a face from sketch failed Fallo al crear una cara a partir del croquis - + Up to face: Could not get SubShape! Hasta la cara: ¡No se pudo obtener SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees La magnitud del ángulo cónico coincide o supera los 90 grados - + Padding with draft angle failed - Padding with draft angle failed + Falló la extrusión con ángulo de salida @@ -4961,7 +4965,7 @@ No se permiten las entidades de croquis intersectas en un croquis. Error: La cara debe ser planar - + Error: Result is not a solid @@ -5000,95 +5004,105 @@ No se permiten las entidades de croquis intersectas en un croquis. Error: No se pudo crear la cara a partir del croquis - + Hole error: Creating a face from sketch failed Error de agujero: Fallo al crear una cara a partir del croquis - + Hole error: Unsupported length specification Error de agujero: especificación de longitud no soportada - + Hole error: Invalid hole depth Error de agujero: Profundidad de agujero inválida - + Hole error: Invalid taper angle Error de agujero: Ángulo cónico inválido - + Hole error: Hole cut diameter too small Error de agujero: Diámetro de corte del agujero demasiado pequeño - + Hole error: Hole cut depth must be less than hole depth Error de agujero: La profundidad de corte del agujero debe ser menor que la profundidad del agujero - + Hole error: Hole cut depth must be greater or equal to zero Error de agujero: La profundidad de corte del agujero debe ser mayor o igual a cero - + Hole error: Invalid countersink Error de agujero: avellanado inválido - + Hole error: Invalid drill point angle Error de agujero: ángulo de punta de taladro inválido - + Hole error: Invalid drill point Error de agujero: punta de taladro no válida - + Hole error: Could not revolve sketch Error de agujero: No se pudo revolucionar el croquis - + Hole error: Resulting shape is empty Error de agujero: La forma resultante está vacía - + Error: Adding the thread failed Error: Error al añadir la rosca + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operación booleana fallida - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. No se pudo crear la cara a partir del croquis. No se permiten interceptar entidades de croquis o múltiples caras en un croquis para hacer un bolsillo hasta una cara. - + Thread type out of range Tipo de rosca fuera de rango - + Thread size out of range Tamaño de rosca fuera de rango - + Error: Thread could not be built Error: No se pudo construir la rosca @@ -5105,15 +5119,15 @@ No se permiten interceptar entidades de croquis o múltiples caras en un croquis Loft: Creating a face from sketch failed - Loft: Creating a face from sketch failed + Proyección aditiva: Fallo al crear una cara a partir del croquis Loft: Failed to create shell - Loft: Failed to create shell + Proyección aditiva: Error al crear el cascarón - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. No se pudo crear la cara a partir del croquis. @@ -5355,7 +5369,7 @@ No se permiten interceptar entidades de croquis o múltiples caras en un croquis Eje de referencia no es válido - + Fusion with base feature failed Falló la fusión con la función base diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts index 07c7ce3a45..9702f67d6f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_es-ES.ts @@ -883,18 +883,18 @@ para que se evite la auto intersección. Crear Clon - + Make copy Hacer copia - + Create a Sketch on Face Crear un Croquis en la Cara - + Create a new Sketch Crear un nuevo Croquis @@ -1575,17 +1575,17 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista de cuerpos vacía - + The body list cannot be empty La lista de cuerpos no puede estar vacía - + Boolean: Accept: Input error Booleano: Aceptar: error de entrada @@ -1614,7 +1614,7 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskDlgShapeBinder - + Input error Error de entrada @@ -1699,13 +1699,13 @@ haga clic de nuevo para finalizar la selección PartDesignGui::TaskExtrudeParameters - + No face selected Sin cara seleccionada - + Face Cara @@ -1715,48 +1715,48 @@ haga clic de nuevo para finalizar la selección Quitar - + Preview Pre-visualizar - + Select faces Seleccione caras - + No shape selected No hay forma seleccionada - + Sketch normal Croquis normal - + Face normal Normal de la cara - + Select reference... Seleccione referencia... - - + + Custom direction Dirección personalizada - + Click on a shape in the model Haga clic en una forma en el modelo - + Click on a face in the model Haga clic en una cara en el modelo @@ -2307,7 +2307,7 @@ haga clic de nuevo para finalizar la selección Up to shape - Up to shape + Hasta la forma @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Orientación de la sección - + Remove Quitar @@ -2634,13 +2634,13 @@ measured along the specified direction Quitar - - + + Input error Error de entrada - + No active body Ningún cuerpo activo @@ -2678,12 +2678,12 @@ measured along the specified direction La lista puede ser reordenada arrastrando - + Section transformation Transformación de la sección - + Remove Quitar @@ -2733,7 +2733,7 @@ measured along the specified direction Up to shape - Up to shape + Hasta la forma @@ -3052,59 +3052,59 @@ haga clic de nuevo para finalizar la selección Quitar - + Normal sketch axis Normal al boceto - + Vertical sketch axis Eje vertical del croquis - + Horizontal sketch axis Eje horizontal del croquis - - + + Construction line %1 Línea de construcción %1 - + Base X axis Eje X base - + Base Y axis Eje Y base - + Base Z axis Eje Z base - - + + Select reference... Seleccione referencia... - + Base XY plane Plano XY base - + Base YZ plane Plano YZ base - + Base XZ plane Plano XZ base @@ -3116,7 +3116,7 @@ haga clic de nuevo para finalizar la selección Transform tool shapes - Transform tool shapes + Transformar las formes de las herramientas @@ -3391,42 +3391,42 @@ haga clic de nuevo para finalizar la selección Sub Shape Binder - + Several sub-elements selected Varios sub-elementos seleccionados - + You have to select a single face as support for a sketch! ¡Tiene que seleccionar una sola cara como soporte para un croquis! - + No support face selected No se ha seleccionado una cara de apoyo - + You have to select a face as support for a sketch! ¡Tiene que seleccionar una cara como apoyo para un croquis! - + No planar support No hay soporte plano - + You need a planar face as support for a sketch! ¡Necesita una cara plana como apoyo para un croquis! - + No valid planes in this document No hay planos válidos en este documento - + Please create a plane first or select a face to sketch on Por favor, crea un plano primero o selecciona una cara para croquizar @@ -3434,7 +3434,7 @@ haga clic de nuevo para finalizar la selección - + @@ -3446,7 +3446,7 @@ haga clic de nuevo para finalizar la selección - + @@ -3704,13 +3704,13 @@ This may lead to unexpected results. No es posible crear una función de resta sin una base característica disponible - + Vertical sketch axis Eje vertical del croquis - + Horizontal sketch axis Eje horizontal del croquis @@ -4353,7 +4353,7 @@ la parte superior del tornillo debajo de la superficie Hole Cut Type - Hole Cut Type + Tipo de corte del agujero @@ -4749,19 +4749,18 @@ más de 90: radio de agujero más grande en la parte inferior Operación booleana no soportada - + - Resulting shape is not a solid La forma resultante no es un sólido - - - + + + @@ -4769,7 +4768,7 @@ más de 90: radio de agujero más grande en la parte inferior - + Result has multiple solids: that is not currently supported. El resultado tiene múltiples sólidos: que no está soportado actualmente. @@ -4836,7 +4835,7 @@ más de 90: radio de agujero más grande en la parte inferior Ángulo de ranura demasiado pequeño - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4848,51 +4847,56 @@ más de 90: radio de agujero más grande en la parte inferior - el croquis seleccionado no pertenece al Cuerpo activo. - + Length too small Longitud muy pequeña - + Second length too small Segunda longitud muy pequeña - + Failed to obtain profile shape Error al obtener la forma del perfil - + Creation failed because direction is orthogonal to sketch's normal vector La creación ha fallado porque la dirección es ortogonal al vector normal del croquis - + Extrude: Can only offset one face Extruir: Sólo se puede desplazar una cara - + Creating a face from sketch failed Fallo al crear una cara a partir del croquis - + Up to face: Could not get SubShape! - Up to face: Could not get SubShape! + Hasta la cara: ¡No se pudo obtener subforma! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees - Magnitude of taper angle matches or exceeds 90 degrees + La magnitud del ángulo del cono coincide o supera los 90 grados - + Padding with draft angle failed - Padding with draft angle failed + Falló la extrusión con ángulo de salida @@ -4958,7 +4962,7 @@ No se permite la intersección de entidades en un croquis. Error: La cara debe ser planar - + Error: Result is not a solid @@ -4997,95 +5001,105 @@ No se permite la intersección de entidades en un croquis. Error: No se pudo crear la cara a partir del croquis - + Hole error: Creating a face from sketch failed Error de agujero: Fallo al crear una cara a partir del croquis - + Hole error: Unsupported length specification Error de agujero: especificación de longitud no soportada - + Hole error: Invalid hole depth Error de agujero: Profundidad de agujero inválida - + Hole error: Invalid taper angle Error de agujero: Ángulo cónico inválido - + Hole error: Hole cut diameter too small Error de agujero: Diámetro de corte del agujero demasiado pequeño - + Hole error: Hole cut depth must be less than hole depth Error de agujero: La profundidad del agujero debe ser menor que la profundidad del agujero - + Hole error: Hole cut depth must be greater or equal to zero Error de agujero: La profundidad de corte del agujero debe ser mayor o igual a cero - + Hole error: Invalid countersink Error de agujero: avellanador inválido - + Hole error: Invalid drill point angle Error de agujero: ángulo de punto de taladro inválido - + Hole error: Invalid drill point Error de agujero: punto de taladro no válido - + Hole error: Could not revolve sketch Error de agujero: No se pudo cargar croquis - + Hole error: Resulting shape is empty Error de agujero: La forma resultante está vacía - + Error: Adding the thread failed Error: Fallo al añadir la rosca + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operación booleana fallida - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. No se pudo crear la cara a partir del croquis. No se permiten interceptar entidades de croquis o múltiples caras en un croquis para hacer un bolsillo hasta una cara. - + Thread type out of range Tipo de rosca fuera de rango - + Thread size out of range Tamaño de rosca fuera de rango - + Error: Thread could not be built Error: No se pudo construir la rosca @@ -5102,15 +5116,15 @@ No se permiten interceptar entidades de croquis o múltiples caras en un croquis Loft: Creating a face from sketch failed - Loft: Creating a face from sketch failed + Proyección aditiva: Fallo al crear una cara a partir del croquis Loft: Failed to create shell - Loft: Failed to create shell + Proyección aditiva: Error al crear el cascarón - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. No se pudo crear la cara a partir del croquis. @@ -5352,7 +5366,7 @@ No se permiten interceptar entidades de croquis o múltiples caras en un croquis El eje de referencia es inválido - + Fusion with base feature failed Falló la fusión con la función base diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_eu.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_eu.ts index 948531116d..21da0e992f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_eu.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_eu.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. Sortu klona - + Make copy Egin kopia - + Create a Sketch on Face Sortu krokis bat aurpegi batean - + Create a new Sketch Sortu krokis berria @@ -1574,17 +1574,17 @@ sakatu berriro hautapena amaitzeko PartDesignGui::TaskDlgBooleanParameters - + Empty body list Gorputzen zerrenda hutsik - + The body list cannot be empty Gorputzen zerrenda ezin da hutsik egon - + Boolean: Accept: Input error Boolearra: Onartu: Sarrera-errorea @@ -1613,7 +1613,7 @@ sakatu berriro hautapena amaitzeko PartDesignGui::TaskDlgShapeBinder - + Input error Sarrera-errorea @@ -1698,13 +1698,13 @@ sakatu berriro hautapena amaitzeko PartDesignGui::TaskExtrudeParameters - + No face selected Ez da aurpegirik hautatu - + Face Aurpegia @@ -1714,48 +1714,48 @@ sakatu berriro hautapena amaitzeko Kendu - + Preview Aurrebista - + Select faces Hautatu aurpegiak - + No shape selected Ez da formarik hautatu - + Sketch normal Krokisaren normala - + Face normal Aurpegiaren normala - + Select reference... Hautatu erreferentzia... - - + + Custom direction Norabide pertsonalizatua - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Egin klik ereduaren aurpegietako batean @@ -2565,12 +2565,12 @@ zehaztutako norabidean Z - + Section orientation Sekzio-orientazioa - + Remove Kendu @@ -2634,13 +2634,13 @@ zehaztutako norabidean Kendu - - + + Input error Sarrera-errorea - + No active body Ez dago gorputz aktiborik @@ -2678,12 +2678,12 @@ zehaztutako norabidean Zerrenda ordenatzeko, arrastatu elementuak - + Section transformation Sekzioaren transformazioa - + Remove Kendu @@ -3052,59 +3052,59 @@ sakatu berriro hautapena amaitzeko Kendu - + Normal sketch axis Krokisaren ardatz normala - + Vertical sketch axis Krokisaren ardatz bertikala - + Horizontal sketch axis Krokisaren ardatz horizontala - - + + Construction line %1 %1 eraikuntza-lerroa - + Base X axis Oinarriko X ardatza - + Base Y axis Oinarriko Y ardatza - + Base Z axis Oinarriko Z ardatza - - + + Select reference... Hautatu erreferentzia... - + Base XY plane Oinarriko XY planoa - + Base YZ plane Oinarriko YZ planoa - + Base XZ plane Oinarriko XZ planoa @@ -3391,42 +3391,42 @@ sakatu berriro hautapena amaitzeko Azpiformaren zorroa - + Several sub-elements selected Azpielementu bat baino gehiago hautatu da - + You have to select a single face as support for a sketch! Aurpegi bakarra hautatu behar duzu krokis baten euskarri izateko! - + No support face selected Ez da euskarri-aurpegirik hautatu - + You have to select a face as support for a sketch! Aurpegi bat hautatu behar duzu krokis baten euskarri izateko! - + No planar support Ez dago euskarri planarrik - + You need a planar face as support for a sketch! Aurpegi planarra behar duzu krokisaren euskarri izateko! - + No valid planes in this document Ez dago baliozko planorik dokumentu honetan - + Please create a plane first or select a face to sketch on Krokisa sortzeko, lehenengo sortu plano bat edo hautatu aurpegi bat @@ -3434,7 +3434,7 @@ sakatu berriro hautapena amaitzeko - + @@ -3446,7 +3446,7 @@ sakatu berriro hautapena amaitzeko - + @@ -3706,13 +3706,13 @@ Espero ez diren emaitzak gerta daitezke. Ezin da elementu kentzaile bat sortu oinarri-elementu bat erabilgarri ez badago - + Vertical sketch axis Krokisaren ardatz bertikala - + Horizontal sketch axis Krokisaren ardatz horizontala @@ -4752,19 +4752,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Emaitza gisa sortutako forma ez da solidoa - - - + + + @@ -4772,7 +4771,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Emaitzak solido anitz ditu: hori ez da onartzen momentuz. @@ -4839,7 +4838,7 @@ over 90: larger hole radius at the bottom Artekaren angelua txikiegia da - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4851,49 +4850,54 @@ over 90: larger hole radius at the bottom - hautatutako krokisa ez da gorputz aktiboarena. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Huts egin du aurpegia krokis batetik sortzeak - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4961,7 +4965,7 @@ Ez da onartzen krokis bateko entitateak ebakitzea. Errorea: Aurpegiak planarra izan behar du - + Error: Result is not a solid @@ -5000,95 +5004,105 @@ Ez da onartzen krokis bateko entitateak ebakitzea. Errorea: Ezin da aurpegia krokisetik sortu - + Hole error: Creating a face from sketch failed Errorea zuloan: Aurpegia krokisetik sortzeak huts egin du - + Hole error: Unsupported length specification Errorea zuloan: Onartzen ez den luzera-espezifikazioa - + Hole error: Invalid hole depth Errorea zuloan: Zulo-sakonera baliogabea - + Hole error: Invalid taper angle Errorea zuloan: Kono-angelu baliogabea - + Hole error: Hole cut diameter too small Errorea zuloan: Zuloa mozteko diametroa txikiegia da - + Hole error: Hole cut depth must be less than hole depth Errorea zuloan: Zuloa mozteko sakonerak zulo-sakonerak baino txikiagoa izan behar du - + Hole error: Hole cut depth must be greater or equal to zero Errorea zuloan: Zuloa mozteko sakonerak zero edo hori baino handiagoa izan behar du - + Hole error: Invalid countersink Errorea zuloan: Abeilanatze baliogabea - + Hole error: Invalid drill point angle Errorea zuloan: Zulatze-puntuaren angelu baliogabea - + Hole error: Invalid drill point Errorea zuloan: Zulatze-puntu baliogabea - + Hole error: Could not revolve sketch Errorea zuloan: Ezin da krokisa erreboluzionatu - + Hole error: Resulting shape is empty Errorea zuloan: Emaitza gisa sortutako forma hutsik dago - + Error: Adding the thread failed Errorea: Haria gehitzeak huts egin du + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Eragiketa boolearrak huts egin du - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Ezin da aurpegia sortu krokisetik abiatuta. Ebakitzen diren krokis-entitateek edo krokis bateko aurpegi anitzek ezin dute poltsa bat egin aurpegi batetik. - + Thread type out of range Hari mota barrutitik kanpo dago - + Thread size out of range Hariaren tamaina barrutitik kanpo dago - + Error: Thread could not be built Errorea: Ezin da haria eraiki @@ -5113,7 +5127,7 @@ Ebakitzen diren krokis-entitateek edo krokis bateko aurpegi anitzek ezin dute po Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Ezin da aurpegia sortu krokisetik abiatuta. @@ -5355,7 +5369,7 @@ Ez da onartzen krokis bateko entitateak edo aurpegi anitz ebakitzea.Reference axis is invalid - + Fusion with base feature failed Oinarri-elementuarekin fusionatzeak huts egin du diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts index b8c8c4fc9e..f542ce55b6 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fi.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Luo klooni - + Make copy Tee kopio - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Create a new Sketch @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Tyhjennä kappalelista - + The body list cannot be empty Kappalelista ei voi olla tyhjä - + Boolean: Accept: Input error Boolean: Hyväksy: Virhe syöttöarvoissa @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Syötteen virhe @@ -1699,13 +1699,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Yhtään tahkoa ei ole avlittu - + Face Tahko @@ -1715,48 +1715,48 @@ click again to end selection Poista - + Preview Esikatselu - + Select faces Valitse pintatahkot - + No shape selected Ei valittua muotoa - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Valitse viite... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2566,12 +2566,12 @@ measured along the specified direction Z - + Section orientation Osion orientaatio - + Remove Poista @@ -2635,13 +2635,13 @@ measured along the specified direction Poista - - + + Input error Syötteen virhe - + No active body No active body @@ -2679,12 +2679,12 @@ measured along the specified direction List can be reordered by dragging - + Section transformation Osioiden välinen muunnos - + Remove Poista @@ -3053,59 +3053,59 @@ click again to end selection Poista - + Normal sketch axis Normaali luonnos akseli - + Vertical sketch axis Pystysuuntaisen luonnoksen akseli - + Horizontal sketch axis Vaakasuuntaisen luonnoksen akseli - - + + Construction line %1 Rakennuslinja %1 - + Base X axis Perustan X-akseli - + Base Y axis Perustan Y-akseli - + Base Z axis Perustan Z-akseli - - + + Select reference... Valitse viite... - + Base XY plane Perustan XY-taso - + Base YZ plane Perustan YZ-taso - + Base XZ plane Perustan XZ-taso @@ -3392,42 +3392,42 @@ click again to end selection Sub-Shape Binder - + Several sub-elements selected Valittu useita alielementtejä - + You have to select a single face as support for a sketch! Sinun on valittava yksittäinen pinta sketsille! - + No support face selected Pintaa ei ole valittu - + You have to select a face as support for a sketch! Sinun on valittava pinta sketsille! - + No planar support Ei tukea tasoille - + You need a planar face as support for a sketch! Tarvitset tasopinnan tuen sketsille! - + No valid planes in this document Asiakirjassa ei ole soveltuvaa tasomuotoa - + Please create a plane first or select a face to sketch on Luo ensin taso tai valitse pinta jolle luonnos tehdään @@ -3435,7 +3435,7 @@ click again to end selection - + @@ -3447,7 +3447,7 @@ click again to end selection - + @@ -3709,13 +3709,13 @@ Tämä voi johtaa odottamattomiin tuloksiin. Ei ole mahdollista tehdä leikkaavaa piirrettä ilman olemassaolevaa peruspiirrettä - + Vertical sketch axis Pystysuuntaisen luonnoksen akseli - + Horizontal sketch axis Vaakasuuntaisen luonnoksen akseli @@ -4754,19 +4754,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4774,7 +4773,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4841,7 +4840,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4963,7 +4967,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5115,7 +5129,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5357,7 +5371,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts index 460ba3f80d..3a7a529b7d 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_fr.ts @@ -884,18 +884,18 @@ False = engrenage planétaire Créer un clone - + Make copy Créer une copie - + Create a Sketch on Face Créer une esquisse sur une face - + Create a new Sketch Créer une nouvelle esquisse @@ -1573,17 +1573,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Liste de corps vide - + The body list cannot be empty La liste de corps ne peut pas être vide - + Boolean: Accept: Input error Booléen : Accepter : erreur de saisie @@ -1612,7 +1612,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Erreur de saisie @@ -1695,13 +1695,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Aucune face sélectionnée - + Face Face @@ -1711,48 +1711,48 @@ click again to end selection Supprimer - + Preview Aperçu - + Select faces Sélectionner les faces - + No shape selected Aucune forme sélectionnée - + Sketch normal Normale à l'esquisse - + Face normal Face normale - + Select reference... Sélectionner une référence... - - + + Custom direction Direction personnalisée  - + Click on a shape in the model Cliquer sur une forme dans le modèle - + Click on a face in the model Cliquer sur une face du modèle @@ -1998,7 +1998,7 @@ click again to end selection Reversed - Inversé + Inverser @@ -2302,7 +2302,7 @@ click again to end selection Up to shape - Jusqu'à la forme + Jusqu'à une forme @@ -2447,7 +2447,7 @@ measured along the specified direction Reversed - Inversé + Inverser @@ -2468,7 +2468,7 @@ measured along the specified direction 2nd taper angle - 2ᵉ angle de dépouille + 2ème angle de dépouille @@ -2559,12 +2559,12 @@ measured along the specified direction Z - + Section orientation Orientation de la section - + Remove Supprimer @@ -2628,13 +2628,13 @@ measured along the specified direction Supprimer - - + + Input error Erreur de saisie - + No active body Aucun corps actif @@ -2672,12 +2672,12 @@ measured along the specified direction La liste peut être réordonnée en faisant glisser - + Section transformation Transformation de la section - + Remove Supprimer @@ -2727,7 +2727,7 @@ measured along the specified direction Up to shape - Jusqu'à la forme + Jusqu'à une forme @@ -2851,7 +2851,7 @@ measured along the specified direction Reversed - Inversé + Inverser @@ -2988,12 +2988,12 @@ click again to end selection Skin - Peau + Objet creux Pipe - Tuyau + Tube @@ -3044,59 +3044,59 @@ click again to end selection Supprimer - + Normal sketch axis Axe normal à l'esquisse - + Vertical sketch axis Axe vertical de l'esquisse - + Horizontal sketch axis Axe horizontal de l'esquisse - - + + Construction line %1 Ligne de construction %1 - + Base X axis Axe X - + Base Y axis Axe Y - + Base Z axis Axe Z - - + + Select reference... Sélectionner une référence... - + Base XY plane Plan XY - + Base YZ plane Plan YZ - + Base XZ plane Plan XZ @@ -3383,42 +3383,42 @@ click again to end selection Sous forme liée - + Several sub-elements selected Plusieurs sous-éléments sélectionnés - + You have to select a single face as support for a sketch! Vous devez sélectionner une seule face comme support pour une esquisse ! - + No support face selected Aucune face de support sélectionnée - + You have to select a face as support for a sketch! Vous devez sélectionner un plan ou une face plane comme support de l'esquisse ! - + No planar support Aucun plan de support - + You need a planar face as support for a sketch! Vous avez besoin d'un plan ou d'une face plane comme support de l'esquisse ! - + No valid planes in this document Pas de plan valide dans le document - + Please create a plane first or select a face to sketch on Créer d'abord un plan ou choisir une face sur laquelle appliquer l'esquisse @@ -3426,7 +3426,7 @@ click again to end selection - + @@ -3438,7 +3438,7 @@ click again to end selection - + @@ -3694,13 +3694,13 @@ This may lead to unexpected results. Il n’est pas possible de créer une fonction soustractive sans une fonction de base présente - + Vertical sketch axis Axe vertical de l'esquisse - + Horizontal sketch axis Axe horizontal de l'esquisse @@ -4392,7 +4392,7 @@ over 90: larger hole radius at the bottom Reversed - Inversé + Inverser @@ -4735,19 +4735,18 @@ over 90: larger hole radius at the bottom Opération booléenne non prise en charge - + - Resulting shape is not a solid La forme résultante n'est pas un solide - - - + + + @@ -4755,7 +4754,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Le résultat a plusieurs solides : ce n'est pas pris en charge pour le moment. @@ -4822,7 +4821,7 @@ over 90: larger hole radius at the bottom Angle de rainure trop petit - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4833,49 +4832,54 @@ over 90: larger hole radius at the bottom - l'esquisse sélectionnée n'appartient pas au corps actif. - + Length too small Longueur trop petite - + Second length too small La deuxième longueur est trop petite - + Failed to obtain profile shape Impossible d'obtenir la forme du profil - + Creation failed because direction is orthogonal to sketch's normal vector La création a échoué car la direction est orthogonale au vecteur normal de l'esquisse. - + Extrude: Can only offset one face Extrusion : ne peut décaler qu'une seule face - + Creating a face from sketch failed La création d'une face à partir de l'esquisse a échoué - + Up to face: Could not get SubShape! Jusqu'à la face : impossible d'obtenir la sous-forme ! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees La magnitude de l'angle de dépouille est égale ou supérieure à 90 degrés. - + Padding with draft angle failed La protrusion avec l'angle de dépouille a échoué. @@ -4943,7 +4947,7 @@ Les entités d'intersection d'esquisse dans une esquisse ne sont pas autorisées Erreur : la face doit être plane - + Error: Result is not a solid @@ -4982,95 +4986,105 @@ Les entités d'intersection d'esquisse dans une esquisse ne sont pas autorisées Erreur : impossible de créer une face à partir de l'esquisse - + Hole error: Creating a face from sketch failed Erreur sur le trou : la création d'une face à partir de l'esquisse a échoué. - + Hole error: Unsupported length specification Erreur sur le trou : la spécification de la longueur n'est pas prise en charge. - + Hole error: Invalid hole depth Erreur sur le trou : la profondeur du trou n'est pas valide. - + Hole error: Invalid taper angle Erreur sur le trou : l'angle du cône n'est pas valide. - + Hole error: Hole cut diameter too small Erreur sur le trou : le diamètre de découpe du trou est trop petit. - + Hole error: Hole cut depth must be less than hole depth Erreur sur le trou : la profondeur de découpe du trou doit être inférieure à la profondeur du trou. - + Hole error: Hole cut depth must be greater or equal to zero Erreur sur le trou : la profondeur de découpe du trou doit être supérieure ou égale à zéro. - + Hole error: Invalid countersink Erreur sur le trou : le fraisage n'est pas valide. - + Hole error: Invalid drill point angle Erreur sur le trou : l'angle de la pointe du perçage n'est pas valide. - + Hole error: Invalid drill point Erreur sur le trou : la pointe du perçage n'est pas valide. - + Hole error: Could not revolve sketch Erreur sur le trou : impossible de faire tourner l'esquisse. - + Hole error: Resulting shape is empty Erreur sur le trou : la forme résultante est vide. - + Error: Adding the thread failed Erreur : l'ajout du filetage a échoué. + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed L'opération booléenne a échoué - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Impossible de créer une face à partir d'une esquisse. L'intersection d'entités d'esquisse ou de plusieurs faces dans une esquisse n'est pas autorisée pour créer une cavité jusqu'à une face. - + Thread type out of range Type de filetage en dehors de la gamme - + Thread size out of range Taille du filetage en dehors de la plage - + Error: Thread could not be built Erreur : le filetage n'a pas pu être construit. @@ -5095,7 +5109,7 @@ L'intersection d'entités d'esquisse ou de plusieurs faces dans une esquisse n'e Lissage : impossible de créer la coque - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Impossible de créer une face à partir d'une esquisse. @@ -5337,7 +5351,7 @@ Les entités d'esquisse qui se croisent ou les faces multiples dans une esquisse L'axe de référence n'est pas valide - + Fusion with base feature failed La fusion avec la fonction de base a échoué diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts index 434eda0a6f..65c74ddb36 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hr.ts @@ -883,18 +883,18 @@ tako da je izbjegnuto samopresjecanje. Stvori klon - + Make copy Napravi kopiju - + Create a Sketch on Face Napravi skicu na ravnini - + Create a new Sketch Stvoriti novu skicu @@ -1572,17 +1572,17 @@ kliknite ponovno za završetak odabira PartDesignGui::TaskDlgBooleanParameters - + Empty body list Prazna lista tijela - + The body list cannot be empty Tijelo, lista ne može biti prazna - + Boolean: Accept: Input error Booleov operator: Prihvatiti: ulazne pogreške @@ -1611,7 +1611,7 @@ kliknite ponovno za završetak odabira PartDesignGui::TaskDlgShapeBinder - + Input error Pogreška na ulazu @@ -1695,13 +1695,13 @@ kliknite ponovno za završetak odabira PartDesignGui::TaskExtrudeParameters - + No face selected Nije odabrana niti jedna površina - + Face Površina @@ -1711,48 +1711,48 @@ kliknite ponovno za završetak odabira Ukloniti - + Preview Pregled - + Select faces Odaberi naličja - + No shape selected Nema odabranih oblika - + Sketch normal Normalna skica - + Face normal Normala lica - + Select reference... Select reference... - - + + Custom direction Prilagođeni smjer - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Kliknite na lice u modelu @@ -2564,12 +2564,12 @@ mjereno duž navedenog smjera Z - + Section orientation Odjeljak orijentacija - + Remove Ukloniti @@ -2633,13 +2633,13 @@ mjereno duž navedenog smjera Ukloniti - - + + Input error Pogreška na ulazu - + No active body Nema aktivnog tijela @@ -2677,12 +2677,12 @@ mjereno duž navedenog smjera Popis se može promijeniti povlačenjem - + Section transformation Transformacija odjeljka - + Remove Ukloniti @@ -3052,59 +3052,59 @@ kliknite ponovno za završetak odabira Ukloniti - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Vertikalna os skice - + Horizontal sketch axis Horizontalna os skice - - + + Construction line %1 Izgradnja linije %1 - + Base X axis Baza X osi - + Base Y axis Baza Y osi - + Base Z axis Baza Z osi - - + + Select reference... Select reference... - + Base XY plane Osnovna XY ploha - + Base YZ plane Osnovna YZ ploha - + Base XZ plane Osnovna XZ ploha @@ -3391,42 +3391,42 @@ kliknite ponovno za završetak odabira Poveznik za pod-objekt - + Several sub-elements selected Nekoliko pod-elemenata odabrano - + You have to select a single face as support for a sketch! Morate odabrati jednu površinu kao podršku za skicu! - + No support face selected Nije odabrana površina za podršku - + You have to select a face as support for a sketch! Morate odabrati površinu kao podršku za skicu! - + No planar support Nema planarni podršku - + You need a planar face as support for a sketch! Trebate planarnu površinu kao podršku za skicu! - + No valid planes in this document Nema valjanih ravnina u ovom dokumentu - + Please create a plane first or select a face to sketch on Molimo vas prvo stvorite ravninu ili odaberite lice za crtanje na @@ -3434,7 +3434,7 @@ kliknite ponovno za završetak odabira - + @@ -3446,7 +3446,7 @@ kliknite ponovno za završetak odabira - + @@ -3708,13 +3708,13 @@ To može dovesti do neočekivanih rezultata. Nije moguće stvoriti dodavajući element bez pripadajućeg osnovnog elementa - + Vertical sketch axis Vertikalna os skice - + Horizontal sketch axis Horizontalna os skice @@ -4762,19 +4762,18 @@ preko 90: veći polumjer rupe na dnu Unsupported boolean operation - + - Resulting shape is not a solid Stvoreni oblik nije volumen tijelo - - - + + + @@ -4782,7 +4781,7 @@ preko 90: veći polumjer rupe na dnu - + Result has multiple solids: that is not currently supported. Rezultat ima više volumenskih tijela: ovo trenutno nije podržano. @@ -4849,7 +4848,7 @@ preko 90: veći polumjer rupe na dnu Kut utora premali - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4861,49 +4860,54 @@ preko 90: veći polumjer rupe na dnu - odabrana skica ne pripada aktivnom tijelu. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Stvaranje lice od skice nije uspjelo - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4971,7 +4975,7 @@ Nije dozvoljeno presjecanje elemenata na skici. Greška: Površina mora biti ravna - + Error: Result is not a solid @@ -5010,96 +5014,106 @@ Nije dozvoljeno presjecanje elemenata na skici. Greška: nije moguće napraviti površinu iz skice - + Hole error: Creating a face from sketch failed Greška provrta: napraviti površinu iz skice nije uspjelo - + Hole error: Unsupported length specification Greška provrta: Nepodržana specifikacija dužine - + Hole error: Invalid hole depth Greška provrta: Neispravna dubina rupe - + Hole error: Invalid taper angle Greška provrta: Pogrešan kut konusa - + Hole error: Hole cut diameter too small Greška provrta: Promjer rezanog otvora je premali - + Hole error: Hole cut depth must be less than hole depth Greška provrta: Dubina rezanog otvora mora biti manja od dubine rupe - + Hole error: Hole cut depth must be greater or equal to zero Greška provrta: Dubina rezanog otvora mora biti veća ili jednaka 0 - + Hole error: Invalid countersink Greška provrta: Pogrešano upuštanje kose rupe - + Hole error: Invalid drill point angle Greška provrta: Pogrešan kut mjesta bušenja - + Hole error: Invalid drill point Greška provrta: Pogrešano mjesto bušenja - + Hole error: Could not revolve sketch Greška provrta: Rotacija skice nije uspjela - + Hole error: Resulting shape is empty Greška provrta: Rezultat je prazna figura - + Error: Adding the thread failed Greška: Dodaj navoj nije uspjelo + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Booleanska operacija nije uspjela - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nije moguće napraviti površinu pomoću skice. Ukrštanje elemenata skice ili više površina u skici nije dozvoljeno za izradu utora do plohe. - + Thread type out of range Vrsta navoja izvan dometa - + Thread size out of range Veličina navoja izvan dometa - + Error: Thread could not be built Greška: navoj nije moguće napraviti @@ -5124,7 +5138,7 @@ Ukrštanje elemenata skice ili više površina u skici nije dozvoljeno za izradu Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nije moguće napraviti površinu pomoću skice. @@ -5366,7 +5380,7 @@ Nije dozvoljeno presjecanje elemenata ili višestruke površine na skici.Reference axis is invalid - + Fusion with base feature failed Spajanje sa baznom značajkom nije uspjelo diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts index 3d3206b3c7..14b0a6eb98 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_hu.ts @@ -883,18 +883,18 @@ az önmetszés elkerülése érdekében. Klónozás - + Make copy Másolat készítése - + Create a Sketch on Face Vázlat létrehozása felületen - + Create a new Sketch Új vázlat készítése @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Test listájának ürítése - + The body list cannot be empty Test listája nem lehet üres - + Boolean: Accept: Input error Logikai: Fogadja el: beviteli hiba @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Bemeneti hiba @@ -1697,13 +1697,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Nincs kijelölve felület - + Face Felület @@ -1713,48 +1713,48 @@ click again to end selection Törlés - + Preview Előnézet - + Select faces Válassza ki a felületeket - + No shape selected Nincs kijelölve alakzat - + Sketch normal Normál vektor vázlata - + Face normal Aktuális felület - + Select reference... Válasszon referenciát... - - + + Custom direction Egyéni irány - + Click on a shape in the model Kattintson egy alakzatra a modellben - + Click on a face in the model Kattintson a modell felületére @@ -2562,12 +2562,12 @@ measured along the specified direction Z - + Section orientation Szakasz tájolás - + Remove Törlés @@ -2631,13 +2631,13 @@ measured along the specified direction Törlés - - + + Input error Bemeneti hiba - + No active body Nincs aktív test @@ -2675,12 +2675,12 @@ measured along the specified direction A lista húzással átrendezhető - + Section transformation Szakasz átalakítás - + Remove Törlés @@ -3048,59 +3048,59 @@ click again to end selection Törlés - + Normal sketch axis Normál vázlat tengely - + Vertical sketch axis Vázlat függőleges tengelye - + Horizontal sketch axis Vázlat vízszintes tengelye - - + + Construction line %1 Építési egyenes %1 - + Base X axis Alap X tengely - + Base Y axis Alap Y tengely - + Base Z axis Alap Z tengely - - + + Select reference... Válasszon referenciát... - + Base XY plane Alap XY síkban - + Base YZ plane Alap YZ síkban - + Base XZ plane Alap XZ síkban @@ -3387,42 +3387,42 @@ click again to end selection Részalakzat kötése - + Several sub-elements selected Több al-elemet jelölt ki - + You have to select a single face as support for a sketch! Ki kell jelölnie egy támogató egyedülálló felületet a vázlat létrehozásához! - + No support face selected A kijelölt felület nem támogatott - + You have to select a face as support for a sketch! Ki kell választani egy vázlatot támogató felületet! - + No planar support Nem támogatott sík - + You need a planar face as support for a sketch! A vázlathoz, szükség van egy támogatott sík felületre! - + No valid planes in this document Ebben a dokumentumban nincs érvényes sík - + Please create a plane first or select a face to sketch on Kérem, először hozzon létre egy síkot vagy válasszon egy felületet amin vázlatot készít @@ -3430,7 +3430,7 @@ click again to end selection - + @@ -3442,7 +3442,7 @@ click again to end selection - + @@ -3702,13 +3702,13 @@ Ez nem várt eredményekhez vezethet. Nincs lehetőség kivonandó funkció létrehozására az alap funkció nélkül - + Vertical sketch axis Vázlat függőleges tengelye - + Horizontal sketch axis Vázlat vízszintes tengelye @@ -4748,19 +4748,18 @@ over 90: larger hole radius at the bottom Nem támogatott logikai művelet - + - Resulting shape is not a solid Az eredmény alakzat nem szilárd test - - - + + + @@ -4768,7 +4767,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Az eredménynek több szilárd teste van: ez jelenleg nem támogatott. @@ -4835,7 +4834,7 @@ over 90: larger hole radius at the bottom A horony szöge túl kicsi - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4846,49 +4845,54 @@ over 90: larger hole radius at the bottom - a kiválasztott vázlat nem az aktív testhez tartozik. - + Length too small Túl kicsi a hossza - + Second length too small Második hossza túl kicsi - + Failed to obtain profile shape Nem sikerült a profil alakját megszerezni - + Creation failed because direction is orthogonal to sketch's normal vector Létrehozás meghiúsult, mert az irány merőleges a vázlat aktuális vektorához - + Extrude: Can only offset one face Kiterjesztés: Csak egy felületet lehet eltolni - + Creating a face from sketch failed Nem sikerült felületet létrehozni vázlatból - + Up to face: Could not get SubShape! Szemtől szembe: Nem sikerült al-formát kapni! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees A kúpszög nagysága megegyezik vagy meghaladja a 90 fokot - + Padding with draft angle failed A dőlésszöggel történő kihúzás nem sikerült @@ -4956,7 +4960,7 @@ A vázlatelemek metszése egy vázlatban nem engedélyezett. Hiba: A felületnek síkbelinek kell lennie - + Error: Result is not a solid @@ -4995,95 +4999,105 @@ A vázlatelemek metszése egy vázlatban nem engedélyezett. Hiba: Nem sikerült felületet létrehozni a vázlatból - + Hole error: Creating a face from sketch failed Furat hiba: Nem sikerült felületet létrehozni vázlatból - + Hole error: Unsupported length specification Furat hiba: Nem támogatott hosszspecifikáció - + Hole error: Invalid hole depth Furathiba: Érvénytelen furatmélység - + Hole error: Invalid taper angle Furathiba: Érvénytelen kúpszög - + Hole error: Hole cut diameter too small Furathiba: A furat vágási átmérője túl kicsi - + Hole error: Hole cut depth must be less than hole depth Furathiba: A furat vágási mélységének kisebbnek kell lennie, mint a furat mélységének - + Hole error: Hole cut depth must be greater or equal to zero Furathiba: A furat vágási mélységének nagyobbnak vagy egyenlőnek kell lennie nullával - + Hole error: Invalid countersink Furat hiba: Érvénytelen süllyesztés - + Hole error: Invalid drill point angle Furathiba: Érvénytelen fúrásipont-szög - + Hole error: Invalid drill point Furathiba: Érvénytelen fúrási pont - + Hole error: Could not revolve sketch Furat hiba: Nem sikerült körmetszeni a vázlatot - + Hole error: Resulting shape is empty Furat hiba: Az eredményül kapott alakzat üres - + Error: Adding the thread failed Hiba: A menet hozzáadása sikertelen + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed A logikai művelet sikertelen - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nem sikerült felületet létrehozni vázlatból. A vázlatelemek vagy több felület metszése egy vázlatban nem engedélyezett a zseb felületté alakításához. - + Thread type out of range A menet típusa tartományon kívül esik - + Thread size out of range A menet méret tartományon kívül esik - + Error: Thread could not be built Hiba: A menet nem hozható létre @@ -5108,7 +5122,7 @@ A vázlatelemek vagy több felület metszése egy vázlatban nem engedélyezett Formázás: hiba a héj létrehozásakor - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nem sikerült felületet létrehozni vázlatból. @@ -5350,7 +5364,7 @@ A vázlatelemek vagy többszörös felületek metszése egy vázlatban nem enged A referencia tengely érvénytelen - + Fusion with base feature failed A kapcsolat az alapfunkcióval sikertelen diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts index 4f3f25744d..7acb0f720a 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_it.ts @@ -883,18 +883,18 @@ in modo da evitare l'intersezione automatica. Crea clone - + Make copy Fà una copia - + Create a Sketch on Face Crea un nuovo schizzo su una faccia - + Create a new Sketch Crea un nuovo schizzo @@ -1575,17 +1575,17 @@ fare nuovamente clic per terminare la selezione PartDesignGui::TaskDlgBooleanParameters - + Empty body list La lista dei corpi è vuota - + The body list cannot be empty La lista dei corpi non può essere vuota - + Boolean: Accept: Input error Booleana: Accettare: errore di Input @@ -1614,7 +1614,7 @@ fare nuovamente clic per terminare la selezione PartDesignGui::TaskDlgShapeBinder - + Input error Errore di input @@ -1699,13 +1699,13 @@ fare nuovamente clic per terminare la selezione PartDesignGui::TaskExtrudeParameters - + No face selected Nessuna faccia selezionata - + Face Faccia @@ -1715,48 +1715,48 @@ fare nuovamente clic per terminare la selezione Rimuovi - + Preview Anteprima - + Select faces Seleziona facce - + No shape selected Nessuna forma selezionata - + Sketch normal Normale allo schizzo - + Face normal Faccia normale - + Select reference... Seleziona riferimento... - - + + Custom direction Direzione personalizzata - + Click on a shape in the model Fare clic su una forma nel modello - + Click on a face in the model Fare clic su una faccia nel modello @@ -2566,12 +2566,12 @@ misurata lungo la direzione specificata Z - + Section orientation Orientamento della sezione - + Remove Rimuovi @@ -2635,13 +2635,13 @@ misurata lungo la direzione specificata Rimuovi - - + + Input error Errore di input - + No active body Nessun corpo attivo @@ -2679,12 +2679,12 @@ misurata lungo la direzione specificata La lista può essere riordinata trascinando - + Section transformation Trasformazione della sezione - + Remove Rimuovi @@ -3053,59 +3053,59 @@ fare nuovamente clic per terminare la selezione Rimuovi - + Normal sketch axis Asse normale allo schizzo - + Vertical sketch axis Asse verticale dello schizzo - + Horizontal sketch axis Asse orizzontale dello schizzo - - + + Construction line %1 Linea di costruzione %1 - + Base X axis Asse X di base - + Base Y axis Asse Y di base - + Base Z axis Asse Z di base - - + + Select reference... Seleziona riferimento... - + Base XY plane Piano di base XY - + Base YZ plane Piano di base YZ - + Base XZ plane Piano di base XZ @@ -3392,42 +3392,42 @@ fare nuovamente clic per terminare la selezione Sotto-Riferimento di Forma - + Several sub-elements selected Diversi sottoelementi selezionati - + You have to select a single face as support for a sketch! Si deve selezionare una singola faccia come supporto per uno schizzo! - + No support face selected Nessuna faccia di supporto selezionata - + You have to select a face as support for a sketch! Selezionare una faccia come supporto per uno schizzo! - + No planar support Nessun supporto planare - + You need a planar face as support for a sketch! Serve una faccia planare come supporto per uno schizzo! - + No valid planes in this document In questo documento non c'è nessun piano valido - + Please create a plane first or select a face to sketch on Si prega di creare prima un piano oppure di selezionare una faccia su cui posizionare lo schizzo @@ -3435,7 +3435,7 @@ fare nuovamente clic per terminare la selezione - + @@ -3447,7 +3447,7 @@ fare nuovamente clic per terminare la selezione - + @@ -3703,13 +3703,13 @@ This may lead to unexpected results. Non è possibile creare una funzione sottrattiva senza una funzione di base disponibile - + Vertical sketch axis Asse verticale dello schizzo - + Horizontal sketch axis Asse orizzontale dello schizzo @@ -4745,19 +4745,18 @@ over 90: larger hole radius at the bottom Operazione booleana non supportata - + - Resulting shape is not a solid La forma risultante non è un solido - - - + + + @@ -4765,7 +4764,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Il risultato ha più solidi: attualmente non è supportato. @@ -4832,7 +4831,7 @@ over 90: larger hole radius at the bottom Angolo di scanalatura troppo piccolo - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4844,49 +4843,54 @@ over 90: larger hole radius at the bottom - lo schizzo selezionato non appartiene al corpo attivo. - + Length too small Lunghezza troppo piccola - + Second length too small Seconda lunghezza troppo piccola - + Failed to obtain profile shape Impossibile ottenere la forma del profilo - + Creation failed because direction is orthogonal to sketch's normal vector Creazione fallita perché la direzione è ortogonale al vettore normale dello schizzo - + Extrude: Can only offset one face Estrusione: può fare l'offset solo di una faccia - + Creating a face from sketch failed Creazione di una faccia dallo schizzo fallita - + Up to face: Could not get SubShape! Fino a faccia: impossibile ottenere SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees L'ampiezza dell'angolo di conicità è 90 gradi o superiore - + Padding with draft angle failed Riempimento con angolo di sformo fallito @@ -4954,7 +4958,7 @@ L'intersezione delle entità dello schizzo in uno schizzo non è consentita.Errore: la faccia deve essere planare - + Error: Result is not a solid @@ -4993,95 +4997,105 @@ L'intersezione delle entità dello schizzo in uno schizzo non è consentita.Errore: impossibile creare la faccia dallo schizzo - + Hole error: Creating a face from sketch failed Errore foro: creazione di una faccia dallo schizzo fallita - + Hole error: Unsupported length specification Errore foro: Specifica di lunghezza non supportata - + Hole error: Invalid hole depth Errore foro: Profondità foro non valida - + Hole error: Invalid taper angle Errore foro: Angolo conico non valido - + Hole error: Hole cut diameter too small Errore foro: diametro taglio foro troppo piccolo - + Hole error: Hole cut depth must be less than hole depth Errore foro: La profondità di taglio del foro deve essere inferiore alla profondità del foro - + Hole error: Hole cut depth must be greater or equal to zero Errore foro: la profondità di taglio del foro deve essere maggiore o uguale a zero - + Hole error: Invalid countersink Errore foro: svasatura non valida - + Hole error: Invalid drill point angle Errore foro: angolo punto foratura non valido - + Hole error: Invalid drill point Errore foro: punto foratura non valido - + Hole error: Could not revolve sketch Errore foro: impossibile fare la rivoluzione dello schizzo - + Hole error: Resulting shape is empty Errore foro: la forma risultante è vuota - + Error: Adding the thread failed Errore: l'aggiunta del filetto non riuscita + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operazione booleana fallita - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Impossibile creare la faccia dallo schizzo. Intersecando entità di schizzo o più facce in uno schizzo non sono consentiti per fare una tasca su una faccia. - + Thread type out of range Tipo di filettatura fuori dall'intervallo - + Thread size out of range Dimensione del filetto fuori dall'intervallo - + Error: Thread could not be built Errore: impossibile costruire il filetto @@ -5106,7 +5120,7 @@ Intersecando entità di schizzo o più facce in uno schizzo non sono consentiti Loft: Creazione della shell non riuscita - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Impossibile creare la faccia dallo schizzo. @@ -5348,7 +5362,7 @@ L'intersezione delle entità dello schizzo in uno schizzo non è consentita.Asse di riferimento non valido - + Fusion with base feature failed La fusione con la lavorazione di base è fallita diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts index dc4289fef2..16c10e9b00 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ja.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. クローンを作成 - + Make copy コピーの作成 - + Create a Sketch on Face 面上にスケッチを作成 - + Create a new Sketch 新規スケッチを作成 @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list ボディーのリストを空にする - + The body list cannot be empty このボディーのリストは空にできません - + Boolean: Accept: Input error ブーリアン: 許可: 入力エラー @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error 入力エラー @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected 面が選択されていません - + Face @@ -1714,48 +1714,48 @@ click again to end selection 削除 - + Preview プレビュー - + Select faces 面を選択 - + No shape selected 図形が選択されていません - + Sketch normal スケッチ法線 - + Face normal 面の法線 - + Select reference... 参照を選択... - - + + Custom direction カスタム方向 - + Click on a shape in the model モデルのシェイプをクリック - + Click on a face in the model モデルの面をクリック @@ -2564,12 +2564,12 @@ measured along the specified direction Z - + Section orientation 選択方向 - + Remove 削除 @@ -2633,13 +2633,13 @@ measured along the specified direction 削除 - - + + Input error 入力エラー - + No active body アクティブなボディーがありません。 @@ -2677,12 +2677,12 @@ measured along the specified direction リストをドラッグして並べ替えることができます - + Section transformation 断面変換 - + Remove 削除 @@ -3051,59 +3051,59 @@ click again to end selection 削除 - + Normal sketch axis 通常のスケッチ軸 - + Vertical sketch axis 垂直スケッチ軸 - + Horizontal sketch axis 水平スケッチ軸 - - + + Construction line %1 補助線 %1 - + Base X axis ベースX軸 - + Base Y axis ベースY軸 - + Base Z axis ベースZ軸 - - + + Select reference... 参照を選択... - + Base XY plane ベースXY平面 - + Base YZ plane ベースYZ平面 - + Base XZ plane ベースXZ平面 @@ -3390,42 +3390,42 @@ click again to end selection サブシェイプバインダー - + Several sub-elements selected いくつかのサブ要素が選択されています - + You have to select a single face as support for a sketch! スケッチサポートとして単一の面を選択する必要があります! - + No support face selected サポート面が選択されていません - + You have to select a face as support for a sketch! スケッチサポートとして面を選択する必要があります! - + No planar support 平面のサポートがありません - + You need a planar face as support for a sketch! スケッチサポートとして平面が必要です! - + No valid planes in this document このドキュメントには有効な平面がありません。 - + Please create a plane first or select a face to sketch on まず平面を作成するか、またはスケッチを描く面を選択してください。 @@ -3433,7 +3433,7 @@ click again to end selection - + @@ -3445,7 +3445,7 @@ click again to end selection - + @@ -3703,13 +3703,13 @@ This may lead to unexpected results. 利用可能なベースフィーチャーがない場合、減算フィーチャーは作成できません。 - + Vertical sketch axis 垂直スケッチ軸 - + Horizontal sketch axis 水平スケッチ軸 @@ -4745,19 +4745,18 @@ over 90: larger hole radius at the bottom サポートされていないブーリアン演算です。 - + - Resulting shape is not a solid 結果シェイプはソリッドではありません。 - - - + + + @@ -4765,7 +4764,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. 結果に複数のソリッドが含まれています。これは現在サポートされていません。 @@ -4832,7 +4831,7 @@ over 90: larger hole radius at the bottom グルーブの角度が小さすぎます。 - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4843,49 +4842,54 @@ over 90: larger hole radius at the bottom ・ 選択されたスケッチがアクティブなボディーに属していない。 - + Length too small 長さが小さすぎます。 - + Second length too small 2番目の長さが小さすぎます。 - + Failed to obtain profile shape プロファイルのシェイプを取得できませんでした。 - + Creation failed because direction is orthogonal to sketch's normal vector 方向とスケッチの法線ベクトルが直交しているため作成に失敗しました。 - + Extrude: Can only offset one face 押し出し: 1つの面のみオフセット可能 - + Creating a face from sketch failed スケッチから面を作成できませんでした。 - + Up to face: Could not get SubShape! 面まで: サブシェイプが得られませんでした! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees テーパー角度の大きさが一致しているか、または90度を超えています。 - + Padding with draft angle failed 抜き勾配角度でのパディングが失敗しました。 @@ -4953,7 +4957,7 @@ Intersecting sketch entities in a sketch are not allowed. エラー: 面は平面でなければなりません。 - + Error: Result is not a solid @@ -4992,95 +4996,105 @@ Intersecting sketch entities in a sketch are not allowed. エラー: スケッチから面を作成できませんでした。 - + Hole error: Creating a face from sketch failed ホールエラー: スケッチから面を作成できませんでした。 - + Hole error: Unsupported length specification ホールエラー: サポートされていない長さ指定です。 - + Hole error: Invalid hole depth ホールエラー: 穴の深さが正しくありません。 - + Hole error: Invalid taper angle ホールエラー: テーパー角度が正しくありません。 - + Hole error: Hole cut diameter too small ホールエラー: ホールカット直径が小さすぎます。 - + Hole error: Hole cut depth must be less than hole depth ホールエラー: ホールカット深さは穴の深さより小さくなければなりません。 - + Hole error: Hole cut depth must be greater or equal to zero ホールエラー: ホールカットの深さはゼロ以上でなければなりません。 - + Hole error: Invalid countersink ホールエラー: 皿穴が正しくありません。 - + Hole error: Invalid drill point angle ホールエラー: 錐先角度が正しくありません。 - + Hole error: Invalid drill point ホールエラー: 錐先が正しくありません。 - + Hole error: Could not revolve sketch ホールエラー: スケッチを回転できませんでした。 - + Hole error: Resulting shape is empty ホールエラー: 結果シェイプが空です。 - + Error: Adding the thread failed エラー: ねじ山の追加に失敗しました。 + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed ブーリアン演算が失敗しました。 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. スケッチから面を作成できませんでした。 スケッチ内の交差するスケッチ図形や複数面では、面までのポケットは作れません。 - + Thread type out of range ねじ山の種類が範囲外 - + Thread size out of range ねじ山のサイズが範囲外 - + Error: Thread could not be built エラー: ねじ山を作成できませんでした。 @@ -5105,7 +5119,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m ロフト: シェルの作成に失敗しました。 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. スケッチから面を作成できませんでした。 @@ -5347,7 +5361,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.参照軸が無効です。 - + Fusion with base feature failed ベースフィーチャーとの結合に失敗しました。 diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ka.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ka.ts index 07bebc827e..2ca8bd2450 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ka.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ka.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. ასლის შექმნა - + Make copy ასლის გადაღება - + Create a Sketch on Face ზედაპირზე ესკიზის შექმნა - + Create a new Sketch ახალი ესკიზის შექმნა @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list სხეულების სია ცარიელია - + The body list cannot be empty სხეულების სია არ შეიძლება ცარიელი იყოს - + Boolean: Accept: Input error ლოგიკური მნიშვნელობა: შეყვანის შეცდომა @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error შეყვანის შეცდომა @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected ზედაპირი არჩეული არაა - + Face სიბრტყე @@ -1714,48 +1714,48 @@ click again to end selection წაშლა - + Preview გადახედვა - + Select faces სიბრტყეების მონიშვნა - + No shape selected მოხაზულობა მონიშნული არაა - + Sketch normal ნორმალური ესკიზი - + Face normal ზედაპირის ნორმალი - + Select reference... Select reference... - - + + Custom direction მიმართულების ხელით მითითება - + Click on a shape in the model დააწკაპუნეთ მოხაზულობაზე მოდელში - + Click on a face in the model დააწკაპუნეთ ზედაპირზე მოდელში @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation კვეთის ორიენტაცია - + Remove წაშლა @@ -2634,13 +2634,13 @@ measured along the specified direction წაშლა - - + + Input error შეყვანის შეცდომა - + No active body აქტიური სხეულის გარეშე @@ -2678,12 +2678,12 @@ measured along the specified direction სიის გადალაგება გადათრევით შეგიძლიათ - + Section transformation კვეთის გარდაქმნა - + Remove წაშლა @@ -3052,59 +3052,59 @@ click again to end selection მოცილება - + Normal sketch axis ესკიზის ღერძის ნორმალი - + Vertical sketch axis შვეული ესკიზის ღერძი - + Horizontal sketch axis თარაზული ესკიზის ღერძი - - + + Construction line %1 კონსტრუქციის ხაზი %1 - + Base X axis საბაზისო X ღერძი - + Base Y axis საბაზისო Y ღერძი - + Base Z axis საბაზისო Z ღერძი - - + + Select reference... აირჩიეთ მიმართვა... - + Base XY plane საბაზისო XY სიბრტყე - + Base YZ plane საბაზისო YZ სიბრტყე - + Base XZ plane საბაზისო XZ სიბრტყე @@ -3391,42 +3391,42 @@ click again to end selection ქვე-ShapeBinder - + Several sub-elements selected მონიშნულია რამდენიმე ქვე-ელემენტი - + You have to select a single face as support for a sketch! ესკიზის საყრდენად მხოლოდ ერთი სიბრტყის არჩევა შეგიძლიათ! - + No support face selected საყრდენი ზედაპირი არჩეული არაა - + You have to select a face as support for a sketch! ესკიზის საყრდენი მხოლოდ ზედაპირი შეიძლება იყოს! - + No planar support არაბრტყელი საყრდენი - + You need a planar face as support for a sketch! ესკიზის შესაქმნელად საჭიროა ბრტყელი ზედაპირი! - + No valid planes in this document დოკუმენტში არ არსებობს სწორი სიბრტყეები - + Please create a plane first or select a face to sketch on ჯერ საჭიროა სიბრტყის შექმნა ან სახაზავი ზედაპირის არჩევა @@ -3434,7 +3434,7 @@ click again to end selection - + @@ -3446,7 +3446,7 @@ click again to end selection - + @@ -3708,13 +3708,13 @@ This may lead to unexpected results. საბაზისო ელემემენტის გარეშე გამოკლებადი თვისების შექმნა შეუძლებელია - + Vertical sketch axis შვეული ესკიზის ღერძი - + Horizontal sketch axis თარაზული ესკიზის ღერძი @@ -4754,19 +4754,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid მიღებული მონახაზი მყარი სხეული არაა - - - + + + @@ -4774,7 +4773,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. შედეგს ერთზე მეტი მყარი სხეული გააჩნია: ეს ამჟამად მხარდაჭერილი არაა. @@ -4841,7 +4840,7 @@ over 90: larger hole radius at the bottom კილოს კუთხე მეტისმეტად მცირეა - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ over 90: larger hole radius at the bottom - არჩეული ესკიზი არ ეკუთვნის აქტიურ სხეულს. - + Length too small სიგრძე მეტისმეტად მცირეა - + Second length too small მეორე სიგრძე ძალიან მცირეა - + Failed to obtain profile shape პროფილის მოხაზულობის მიღება ჩავარდა - + Creation failed because direction is orthogonal to sketch's normal vector შექმნა შეუძლებელია, რადგან მიმართულება ესკიზის ნორმალის ვექტორის ორთოგონალურია - + Extrude: Can only offset one face გამოწნეხვა: შესაძლებელია, მხოლოდ, ერთი ზედაპირის წანაცვლება - + Creating a face from sketch failed ესკიზიდან ზედაპირის შექმნა შეუძლებელია - + Up to face: Could not get SubShape! ზედაპირამდე: ქვემოხაზულობის მიღება შეუძლებელია! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees შპილის კუთხის მაგნიტუდა მეტია ან ტოლია 90 გრადუსზე - + Padding with draft angle failed ექსტრუზია მონახაზის კუთხით ჩავარდა @@ -4963,7 +4967,7 @@ Intersecting sketch entities in a sketch are not allowed. შეცდომა: ზედაპირი ბრტყელი უნდა იყოს - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Intersecting sketch entities in a sketch are not allowed. შეცდომა: ესკიზიიდან ზედაპირის შექმნა შეუძლებელია - + Hole error: Creating a face from sketch failed ნახვრეტის შეცდომა: ესკიზიდან ზედაპირის შექმნა შეუძლებელია - + Hole error: Unsupported length specification ნახვრეტის შეცდომა: მხარდაუჭერელი სიგრძის სპეციფიკაცია - + Hole error: Invalid hole depth ნახვრეტის შეცდომა: ნახვრეტის სიღრმე არასწორია - + Hole error: Invalid taper angle ნახვრეტის შეცდომა: არასწორი კონუსის კუთხე - + Hole error: Hole cut diameter too small ნახვრეტის შეცდომა: ნახვრეტის ამოჭრის დიამეტრი ძალიან პატარაა - + Hole error: Hole cut depth must be less than hole depth ნახვრეტის შეცდომა: ნახვრეტის ამოჭრის სიღრმე ნახვრეტის სიღრმეზე მცირე არ უნდა იყოს - + Hole error: Hole cut depth must be greater or equal to zero ნახვრეტის შეცდომა: ნახვრეტის ამოჭრის სიღრმე ნულის ტოლი ან მეტი უნდა იყოს - + Hole error: Invalid countersink ნახვრეტის შეცდომა: არასწორი კონუსური სიღრუვე - + Hole error: Invalid drill point angle ნახვრეტის შეცდომა: არასწორი ბურღის წერტილის კუთხე - + Hole error: Invalid drill point ნახვრეტის შეცდომა: არასწორი ბურღის წერტილი - + Hole error: Could not revolve sketch ნახვრეტის შეცდომა: ესკიზის მოტრიალების შეცდომა - + Hole error: Resulting shape is empty ნახვრეტის შეცდომა: მიღებული მოხაზულობა ცარიელია - + Error: Adding the thread failed შეცდომა: კუთხვილის დამატების შეცდომა + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed ლოგიკური ოპერაციის შეცდომა - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. ესკიზიდან ზედაპირის შექმნის შეცდომა. ესკიზში თანაკვეთადი ესკიზის ობიექტები ან ერთზე მეტი ზედაპირები ჯიბის ზედაპირამდე გაწელვისთვის დაშვებული არაა. - + Thread type out of range კუთხვილის ტიპი დიაპაზონს გარეთაა - + Thread size out of range კუთხვილის ზომა დიაპაზონს გარეთაა - + Error: Thread could not be built შეცდომა: კუთხვილის აგება შეუძლებელია @@ -5115,7 +5129,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m ლოფტი: გარსის შექმნა ჩავარდა - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. ესკიზიდან ზედაპირის შექმნის შეცდომა. @@ -5357,7 +5371,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.მიმართვის ღერძი არასწორია - + Fusion with base feature failed საბაზისო თვისებასთან შერწყმის შეცდომა diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ko.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ko.ts index d49bc46d28..3698161b36 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ko.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ko.ts @@ -881,25 +881,25 @@ so that self intersection is avoided. 복제하기 - + Make copy 사본 만들기 - + Create a Sketch on Face 면에 스케치 만들기 - + Create a new Sketch 새 스케치 만들기 Convert to MultiTransform feature - MultiTransform 기능으로 변환 + 다중 변환 도형특징으로 변환 @@ -968,12 +968,12 @@ so that self intersection is avoided. Invalid shape - 사용할 수 없는 형상 + 유효하지 않은 형상 No wire in sketch - 스케치에 와이어(Wire)가 없습니다. + 스케치에 철사가 없습니다. @@ -1224,7 +1224,7 @@ Please select a body from below, or create a new body. Radius in local x-direction - 로컬 x 방향의 반경 + 지역 x 방향의 반지름 @@ -1570,17 +1570,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list 비어 있는 몸통 목록 - + The body list cannot be empty 몸통 목록은 비어있을 수 없습니다 - + Boolean: Accept: Input error 불리언: 수락: 입력 오류 @@ -1609,7 +1609,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error 입력 오류 @@ -1694,13 +1694,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected 선택된 면 없음 - + Face 면 선택 @@ -1710,48 +1710,48 @@ click again to end selection 제거 - + Preview 미리 보기 - + Select faces 면 선택 - + No shape selected 선택된 형상이 없습니다. - + Sketch normal 스케치면에 수직 - + Face normal 면에 수직 - + Select reference... 레퍼런스 선택 - - + + Custom direction 사용자 정의 방향 - + Click on a shape in the model 모형에서 형상을 클릭하세요 - + Click on a face in the model 모형의 면을 클릭하세요 @@ -1801,12 +1801,12 @@ click again to end selection Invalid shape - 사용할 수 없는 형상 + 유효하지 않은 형상 No wire in sketch - 스케치에 와이어(Wire)가 없습니다. + 스케치에 철사가 없습니다. @@ -2558,12 +2558,12 @@ measured along the specified direction Z - + Section orientation 단면 방향 - + Remove 제거 @@ -2584,7 +2584,7 @@ measured along the specified direction Corner Transition - 코너 전환 + 모퉁이 전환 @@ -2594,12 +2594,12 @@ measured along the specified direction Right Corner - 각진 모서리 + 각진 모퉁이 Round Corner - 둥근 모서리 + 둥근 모퉁이 @@ -2627,13 +2627,13 @@ measured along the specified direction 제거 - - + + Input error 입력 오류 - + No active body 활성화된 몸통 없음 @@ -2671,12 +2671,12 @@ measured along the specified direction 드래그하여 목록을 재정렬할 수 있습니다. - + Section transformation 단면 변형 - + Remove 제거 @@ -3033,7 +3033,7 @@ click again to end selection Transformed feature messages - 변경된 피처에 대한 메세지 + 변환된 도형특징에 대한 메세지 @@ -3044,59 +3044,59 @@ click again to end selection 제거 - + Normal sketch axis Normal sketch axis - + Vertical sketch axis 수직 스케치 축 - + Horizontal sketch axis 수평 스케치 축 - - + + Construction line %1 보조선 - + Base X axis 절대좌표계 X 축 - + Base Y axis 절대좌표계 Y 축 - + Base Z axis 절대좌표계 Z 축 - - + + Select reference... 레퍼런스 선택 - + Base XY plane 절대좌표계 XY 평면 - + Base YZ plane 절대좌표계 YZ 평면 - + Base XZ plane 절대좌표계 XZ 평면 @@ -3149,7 +3149,7 @@ click again to end selection Datum Line parameters - 작업선 매개변수 + 기준선 매개변수 @@ -3383,42 +3383,42 @@ click again to end selection 하위형상 점착제 - + Several sub-elements selected 하부 요소들이 선택되었습니다. - + You have to select a single face as support for a sketch! 스케치의 받침으로 하나의 면을 선택해야 합니다. - + No support face selected 선택된 받침면이 없습니다. - + You have to select a face as support for a sketch! 스케치의 받침으로 면을 선택해야 합니다. - + No planar support 평평한 받침이 없음 - + You need a planar face as support for a sketch! 스케치의 받침으로 평면이 필요합니다. - + No valid planes in this document 이 문서에는 유효한 평면이 없습니다. - + Please create a plane first or select a face to sketch on 평면을 먼저 생성하거나 스케치를 생성할 면을 먼저 선택하세요. @@ -3426,7 +3426,7 @@ click again to end selection - + @@ -3438,7 +3438,7 @@ click again to end selection - + @@ -3700,13 +3700,13 @@ This may lead to unexpected results. 기본 도형특징 없이는 다른 도형특징을 더할 수 없습니다. - + Vertical sketch axis 수직 스케치 축 - + Horizontal sketch axis 수평 스케치 축 @@ -3726,9 +3726,9 @@ This may lead to unexpected results. In order to use PartDesign you need an active Body object in the document. Please make one active (double click) or create one. If you have a legacy document with PartDesign objects without Body, use the migrate function in PartDesign to put them into a Body. - PartDesign을 사용하려면 문서에 활성 Body 개체가 필요합니다. 하나를 활성화(더블 클릭) 하거나 하나 만드십시오. + 부품설계 작업대를 사용 하려면 문서에 활성화된 몸통이 필요합니다. 몸통을 활성화(더블 클릭) 하거나 없다면 하나 만드세요 -Body가 없는 PartDesign 개체가 있는 레거시 문서가 있는 경우 PartDesign의 마이그레이션 기능을 사용하여 Body에 넣습니다. +물려받은 문서에 몸통이 없이 부품설계 객체만 있는 경우 부품설계 작업대의 최신 버전으로 이전 기능을 사용하여 몸통에 객체들을 담아 으세요. @@ -3891,7 +3891,7 @@ This feature is broken and can't be edited. The document "%1" you are editing was designed with an old version of PartDesign workbench. - 편집 중인 문서 "%1"는 이전 버전의 부품설계(PartDesign) 워크벤치에서 생성되었습니다. + 편집 중인 문서 "%1"는 이전 버전의 부품설계 작업대에서 생성되었습니다. @@ -4370,7 +4370,7 @@ the screw's top below the surface The size of the drill point will be taken into account for the depth of blind holes - 드릴링 지점의 사이즈는 막힌구멍(blind hole)의 깊이에 영향을 받습니다 + 드릴 끝의 크기는 막힌구멍의 깊이에 영향을 받습니다 @@ -4744,19 +4744,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid 결과 형상이 고체가 아닙니다 - - - + + + @@ -4764,7 +4763,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. 결과에는 여러 고체들이 있습니다. 현재는 지원되지 않습니다. @@ -4831,7 +4830,7 @@ over 90: larger hole radius at the bottom 회전 잘라내기(Groove) 각도가 너무 작습니다 - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4842,49 +4841,54 @@ over 90: larger hole radius at the bottom - 선택한 스케치는 활성화된 몸통에 속하지 않습니다. - + Length too small 너무 짧은 길이 - + Second length too small 너무 짧은 두 번째 길이 - + Failed to obtain profile shape 윤곽 형상을 얻는데 실패했습니다 - + Creation failed because direction is orthogonal to sketch's normal vector 방향이 스케치의 법선 향량에 직교하므로 만들지 못했습니다. - + Extrude: Can only offset one face 돌출: 오직 하나의 면만 편차 가능 - + Creating a face from sketch failed 스케치로부터 면생성 실패 - + Up to face: Could not get SubShape! 면까지: 하위 형상을 얻을 수 없습니다! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed 구배를 준 깔판 생성이 실패했습니다 @@ -4952,7 +4956,7 @@ Intersecting sketch entities in a sketch are not allowed. 오류: 면은 평면이어야 합니다 - + Error: Result is not a solid @@ -4991,95 +4995,105 @@ Intersecting sketch entities in a sketch are not allowed. 오류: 스케치로부터 면을 생성할 수 없습니다 - + Hole error: Creating a face from sketch failed 구멍 오류: 스케치로부터 면 생성 실패 - + Hole error: Unsupported length specification 구멍 오류: 지원되지 않는 길이 사양 - + Hole error: Invalid hole depth 구멍 오류: 무효한 구멍 깊이 - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small 구멍 오류: 구멍파기 지름이 너무 작습니다. - + Hole error: Hole cut depth must be less than hole depth 구멍 오류: 구멍파기 깊이는 구멍의 전체 깊이보다 작아야 합니다. - + Hole error: Hole cut depth must be greater or equal to zero 구멍 오류: 구멍파기 깊이는 0 이상이어야 합니다. - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle 구멍 오류: 무효한 드릴 끝 각도 - + Hole error: Invalid drill point 구멍 오류: 무효한 드릴 끝 - + Hole error: Could not revolve sketch 구멍 오류: 스케치를 공전시킬 수 없습니다 - + Hole error: Resulting shape is empty 구멍 오류: 결과 형상이 비어 있습니다 - + Error: Adding the thread failed 오류: 나사산 추가 실패 + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed 부울 연산 실패 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. 스케치로부터 면을 생성할 수 없습니다. 스케치에 교차하는 선이나 또는 다수의 면이 있으면 면까지 오목자리를 만들 수 없습니다. - + Thread type out of range 나사산의 유형이 범위를 벗어납니다 - + Thread size out of range 나사산의 크기가 범위를 벗어납니다 - + Error: Thread could not be built 오류: 나사산을 만들 수 없습니다 @@ -5104,7 +5118,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m 로프트: 껍질 생성에 실패했습니다 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. 스케치로부터 면을 생성할 수 없습니다. @@ -5293,7 +5307,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Polygon of prism is invalid, must have 3 or more sides - 각기둥의 다각형이 잘못되었습니다. 측면이 3개 이상이어야 합니다 + 각기둥의 다각형이 잘못되었습니다. 변이 3개 이상이어야 합니다 @@ -5346,7 +5360,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.참조 축이 잘못되었습니다 - + Fusion with base feature failed 기본 도형특징들 결합 실패 diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_lt.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_lt.ts index 31dea8effa..48a137ba0f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_lt.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_lt.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. Create Clone - + Make copy Make copy - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Create a new Sketch @@ -1574,17 +1574,17 @@ spustelėkite vėl, jei norite baigti atranką PartDesignGui::TaskDlgBooleanParameters - + Empty body list Empty body list - + The body list cannot be empty The body list cannot be empty - + Boolean: Accept: Input error Boolean: Accept: Input error @@ -1613,7 +1613,7 @@ spustelėkite vėl, jei norite baigti atranką PartDesignGui::TaskDlgShapeBinder - + Input error Input error @@ -1698,13 +1698,13 @@ spustelėkite vėl, jei norite baigti atranką PartDesignGui::TaskExtrudeParameters - + No face selected Nepasirinkta siena - + Face Siena @@ -1714,48 +1714,48 @@ spustelėkite vėl, jei norite baigti atranką Pašalinti - + Preview Peržiūrėti - + Select faces Pasirinkti sienas - + No shape selected Nepasirinkta kraštinių - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Select reference... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Pjūvio kampinė padėtis - + Remove Pašalinti @@ -2634,13 +2634,13 @@ measured along the specified direction Pašalinti - - + + Input error Input error - + No active body Nėra veikiamo kūno @@ -2678,12 +2678,12 @@ measured along the specified direction List can be reordered by dragging - + Section transformation Section transformation - + Remove Pašalinti @@ -3052,59 +3052,59 @@ spustelėkite vėl, jei norite baigti atranką Pašalinti - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Vertical sketch axis - + Horizontal sketch axis Horizontal sketch axis - - + + Construction line %1 Construction line %1 - + Base X axis Pagrindo X ašis - + Base Y axis Pagrindo Y ašis - + Base Z axis Pagrindo Z ašis - - + + Select reference... Select reference... - + Base XY plane Pagrindinė XY plokštuma - + Base YZ plane Pagrindinė YZ plokštuma - + Base XZ plane Pagrindinė XZ plokštuma @@ -3391,42 +3391,42 @@ spustelėkite vėl, jei norite baigti atranką Sub-Shape Binder - + Several sub-elements selected Several sub-elements selected - + You have to select a single face as support for a sketch! You have to select a single face as support for a sketch! - + No support face selected No support face selected - + You have to select a face as support for a sketch! You have to select a face as support for a sketch! - + No planar support No planar support - + You need a planar face as support for a sketch! You need a planar face as support for a sketch! - + No valid planes in this document No valid planes in this document - + Please create a plane first or select a face to sketch on Please create a plane first or select a face to sketch on @@ -3434,7 +3434,7 @@ spustelėkite vėl, jei norite baigti atranką - + @@ -3446,7 +3446,7 @@ spustelėkite vėl, jei norite baigti atranką - + @@ -3708,13 +3708,13 @@ This may lead to unexpected results. Neįmanoma sukurti atimančio kūno nesant pagrindinio - + Vertical sketch axis Vertical sketch axis - + Horizontal sketch axis Horizontal sketch axis @@ -4754,19 +4754,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4774,7 +4773,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4841,7 +4840,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4963,7 +4967,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5115,7 +5129,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5357,7 +5371,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts index aadbf4dd68..1bcabacc1e 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_nl.ts @@ -879,18 +879,18 @@ so that self intersection is avoided. Maak een kloon - + Make copy Maak een kopie - + Create a Sketch on Face Maak een schets op vlak - + Create a new Sketch Maak een nieuwe schets @@ -1569,17 +1569,17 @@ klik nogmaals om de selectie te beëindigen PartDesignGui::TaskDlgBooleanParameters - + Empty body list Leeg lichaam lijst - + The body list cannot be empty Deze lichaam lijst mag niet leeg zijn - + Boolean: Accept: Input error Boolean: Accept: Input error @@ -1608,7 +1608,7 @@ klik nogmaals om de selectie te beëindigen PartDesignGui::TaskDlgShapeBinder - + Input error Invoerfout @@ -1693,13 +1693,13 @@ klik nogmaals om de selectie te beëindigen PartDesignGui::TaskExtrudeParameters - + No face selected Geen vlak geselecteerd - + Face Vlak @@ -1709,48 +1709,48 @@ klik nogmaals om de selectie te beëindigen Verwijderen - + Preview Voorbeeldweergave - + Select faces Selecteer vlakken - + No shape selected Geen vorm geselecteerd - + Sketch normal Schets normaal - + Face normal Loodrecht - + Select reference... Selecteer referentie... - - + + Custom direction Aangepaste richting - + Click on a shape in the model Klik op een vorm in het model - + Click on a face in the model Klik op een vlak in het model @@ -2560,12 +2560,12 @@ gemeten in de opgegeven richting Z - + Section orientation Orientatie selectie - + Remove Verwijderen @@ -2629,13 +2629,13 @@ gemeten in de opgegeven richting Verwijderen - - + + Input error Invoerfout - + No active body Geen actief lichaam @@ -2673,12 +2673,12 @@ gemeten in de opgegeven richting Lijst kan worden gesorteerd door te slepen - + Section transformation Selectie Transformatie - + Remove Verwijderen @@ -3047,59 +3047,59 @@ klik nogmaals om de selectie te beëindigen Verwijderen - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Verticale schetsas - + Horizontal sketch axis Horizontale schetsas - - + + Construction line %1 Constructielijn %1 - + Base X axis Basis X-as - + Base Y axis Basis Y-as - + Base Z axis Basis Z-as - - + + Select reference... Selecteer referentie... - + Base XY plane Basis oppervlak XY - + Base YZ plane Basis oppervlak YZ - + Base XZ plane Basis oppervlak XZ @@ -3386,42 +3386,42 @@ klik nogmaals om de selectie te beëindigen Sub-Shape Binder - + Several sub-elements selected Verschillende sub-elementen geselecteerd - + You have to select a single face as support for a sketch! Je moet een enkel vlak selecteren als basis voor een schets! - + No support face selected Geen basisvlak geselecteerd - + You have to select a face as support for a sketch! Je moet een enkel vlak selecteren als basis voor een schets! - + No planar support Geen platvlak - + You need a planar face as support for a sketch! Je hebt een platvlak nodig als basis voor een schets! - + No valid planes in this document Geen geldige werk-vlakken in dit document - + Please create a plane first or select a face to sketch on Maak eerst een werk-vlak of selecteer een zijde om op te schetsen @@ -3429,7 +3429,7 @@ klik nogmaals om de selectie te beëindigen - + @@ -3441,7 +3441,7 @@ klik nogmaals om de selectie te beëindigen - + @@ -3703,13 +3703,13 @@ Dit kan tot onverwachte resultaten leiden. Het is niet mogelijk om een verwijderende functie te maken zonder dat een basis functie beschikbaar is - + Vertical sketch axis Verticale schetsas - + Horizontal sketch axis Horizontale schetsas @@ -4747,19 +4747,18 @@ boven de 90: groter gat straal aan de onderkant Niet-ondersteunde boolean bewerking - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4767,7 +4766,7 @@ boven de 90: groter gat straal aan de onderkant - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4834,7 +4833,7 @@ boven de 90: groter gat straal aan de onderkant Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4846,49 +4845,54 @@ boven de 90: groter gat straal aan de onderkant - de geselecteerde schets behoort niet tot de actieve lichaam. - + Length too small Lengte te klein - + Second length too small Tweede lengte te klein - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4956,7 +4960,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -4995,95 +4999,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5108,7 +5122,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5350,7 +5364,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts index dadfbb3e67..748a342ff0 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pl.ts @@ -885,18 +885,18 @@ wartość Fałsz = uzębienie wewnętrzne Utwórz klona - + Make copy Utwórz kopię - + Create a Sketch on Face Utwórz szkic na ścianie - + Create a new Sketch Utwórz nowy szkic @@ -1575,17 +1575,17 @@ kliknij ponownie, aby zakończyć wybór PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista zawartości jest pusta - + The body list cannot be empty Lista zawartości nie może być pusta - + Boolean: Accept: Input error Funkcja logiczna: Akceptuj: Błąd danych wejściowych @@ -1614,7 +1614,7 @@ kliknij ponownie, aby zakończyć wybór PartDesignGui::TaskDlgShapeBinder - + Input error Błąd danych wejściowych @@ -1700,13 +1700,13 @@ kliknij ponownie, aby zakończyć wybór PartDesignGui::TaskExtrudeParameters - + No face selected Nie zaznaczono ściany - + Face Powierzchnia @@ -1716,48 +1716,48 @@ kliknij ponownie, aby zakończyć wybór Usuń - + Preview Podgląd - + Select faces Wybierz ściany - + No shape selected Brak wybranych kształtów - + Sketch normal Wektor normalny szkicu - + Face normal Wektor normalny ściany - + Select reference... Wybierz odniesienie ... - - + + Custom direction Kierunek niestandardowy - + Click on a shape in the model Kliknij kształt modelu - + Click on a face in the model Kliknij ścianę modelu @@ -2341,7 +2341,7 @@ kliknij ponownie, aby zakończyć wybór Select all faces - Zaznacz wszystkie ściany + Wybierz wszystkie ściany @@ -2567,12 +2567,12 @@ mierzona wzdłuż podanego kierunku Z - + Section orientation Kierunek sekcji profilu - + Remove Usuń @@ -2636,13 +2636,13 @@ mierzona wzdłuż podanego kierunku Usuń - - + + Input error Błąd danych wejściowych - + No active body Brak aktywnej zawartości @@ -2680,12 +2680,12 @@ mierzona wzdłuż podanego kierunku Lista może zostać uporządkowana poprzez przeciąganie - + Section transformation Przekształcenie sekcji - + Remove Usuń @@ -3054,59 +3054,59 @@ kliknij ponownie, aby zakończyć wybór Usuń - + Normal sketch axis Oś normalna do szkicu - + Vertical sketch axis Pionowa oś szkicu - + Horizontal sketch axis Pozioma oś szkicu - - + + Construction line %1 Linia konstrukcyjna %1 - + Base X axis Bazowa oś X - + Base Y axis Bazowa oś Y - + Base Z axis Bazowa oś Z - - + + Select reference... Wybierz odniesienie ... - + Base XY plane Bazowa płaszczyzna XY - + Base YZ plane Bazowa płaszczyzna YZ - + Base XZ plane Bazowa płaszczyzna XZ @@ -3118,7 +3118,7 @@ kliknij ponownie, aby zakończyć wybór Transform tool shapes - Narzędzie przekształcania kształtów + Przekształć kształty narzędzi @@ -3393,42 +3393,42 @@ kliknij ponownie, aby zakończyć wybór Łącznik kształtów podrzędnych - + Several sub-elements selected Wybrano kilka podelementów - + You have to select a single face as support for a sketch! Musisz wybrać pojedynczą ścianę jako bazę dla szkicu! - + No support face selected Nie wybrano ściany bazowej - + You have to select a face as support for a sketch! Musisz wybrać ścianę jako bazę dla szkicu! - + No planar support Brak płaskiej powierzchni - + You need a planar face as support for a sketch! Musisz wybrać powierzchnię jako bazę dla szkicu! - + No valid planes in this document Brak prawidłowej płaszczyzny w tym dokumencie - + Please create a plane first or select a face to sketch on Proszę stworzyć najpierw płaszczyznę lub wybrać ścianę dla umieszczenia szkicu @@ -3436,7 +3436,7 @@ kliknij ponownie, aby zakończyć wybór - + @@ -3448,7 +3448,7 @@ kliknij ponownie, aby zakończyć wybór - + @@ -3710,13 +3710,13 @@ Może to prowadzić do nieoczekiwanych rezultatów. Nie jest możliwe utworzenie elementu do odjęcia bez dostępnego elementu bazowego - + Vertical sketch axis Pionowa oś szkicu - + Horizontal sketch axis Pozioma oś szkicu @@ -4756,19 +4756,18 @@ powyżej 90°: większy promień otworu u dołu Nieobsługiwana operacja logiczna. - + - Resulting shape is not a solid Otrzymany kształt nie jest bryłą - - - + + + @@ -4776,7 +4775,7 @@ powyżej 90°: większy promień otworu u dołu - + Result has multiple solids: that is not currently supported. Wynik ma wiele brył: to nie jest obecnie wspierane. @@ -4843,7 +4842,7 @@ powyżej 90°: większy promień otworu u dołu Kąt rowka zbyt mały - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4855,49 +4854,54 @@ powyżej 90°: większy promień otworu u dołu - wybrany szkic nie należy do aktywnej zawartości. - + Length too small Długość jest zbyt mała - + Second length too small Druga długość jest zbyt mała - + Failed to obtain profile shape Nie udało się uzyskać kształtu profilu - + Creation failed because direction is orthogonal to sketch's normal vector Tworzenie nie powiodło się, ponieważ kierunek jest prostopadły do wektora normalnego szkicu. - + Extrude: Can only offset one face Wyciągnięcie: Można wykonać odsunięcie tylko jednej ściany - + Creating a face from sketch failed Tworzenie ściany ze szkicu nie powiodło się - + Up to face: Could not get SubShape! Do powierzchni: Nie można uzyskać KształtuPodrzędnego! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Wielkość kąta stożka odpowiada lub przekracza 90° - + Padding with draft angle failed Wyciągnięcie z kątem pochylenia nie powiodło się. @@ -4965,7 +4969,7 @@ Przecinające się obiekty w szkicu są niedozwolone. Błąd: ściana musi być płaska - + Error: Result is not a solid @@ -5004,95 +5008,105 @@ Przecinające się obiekty w szkicu są niedozwolone. Błąd: Nie można utworzyć ściany ze szkicu - + Hole error: Creating a face from sketch failed Błąd otworu: Tworzenie ściany ze szkicu nie powiodło się - + Hole error: Unsupported length specification Błąd otworu: Nieobsługiwana specyfikacja długości - + Hole error: Invalid hole depth Błąd otworu: Nieprawidłowa głębokość otworu - + Hole error: Invalid taper angle Błąd otworu: nieprawidłowy kąt zwężenia - + Hole error: Hole cut diameter too small Błąd otworu: zbyt mała średnica wycięcia otworu - + Hole error: Hole cut depth must be less than hole depth Błąd otworu: głębokość wycięcia otworu musi być mniejsza niż głębokość otworu - + Hole error: Hole cut depth must be greater or equal to zero Błąd otworu: głębokość wycięcia otworu musi być większa lub równa zeru - + Hole error: Invalid countersink Błąd otworu: Nieprawidłowe pogłębienie - + Hole error: Invalid drill point angle Błąd otworu: nieprawidłowy kąt punktu wiercenia - + Hole error: Invalid drill point Błąd otworu: Nieprawidłowy punkt wiercenia - + Hole error: Could not revolve sketch Błąd otworu: Nie można obrócić szkicu - + Hole error: Resulting shape is empty Błąd otworu: Kształt wynikowy jest niezdefiniowany - + Error: Adding the thread failed Błąd: Dodanie gwintu nie powiodło się + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operacja logiczna nie powiodła się - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nie można utworzyć ściany ze szkicu. Przecinające się elementy szkicu lub wiele ścian w szkicu nie są dozwolone przy tworzeniu kieszeni aż do powierzchni. - + Thread type out of range Typ gwintu poza zakresem - + Thread size out of range Rozmiar gwintu poza zakresem - + Error: Thread could not be built Błąd: Nie można zbudować gwintu @@ -5117,7 +5131,7 @@ Przecinające się elementy szkicu lub wiele ścian w szkicu nie są dozwolone p Wyciągnięcie przez profile: Nie udało się utworzyć powłoki - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nie można utworzyć ściany ze szkicu. @@ -5359,7 +5373,7 @@ Przecinające się elementy szkicu lub wiele ścian w szkicu nie są dozwolone.< Oś odniesienia jest nieprawidłowa - + Fusion with base feature failed Scalenie z cechą podstawową nie powiodło się @@ -5391,7 +5405,7 @@ Przecinające się elementy szkicu lub wiele ścian w szkicu nie są dozwolone.< Invalid face reference - Nieprawidłowe odniesienie ściany. + Nieprawidłowe odniesienie ściany diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts index 3eb9b6be1a..9b9dd6339b 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-BR.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Criar Clone - + Make copy Fazer cópia - + Create a Sketch on Face Criar um esboço na face - + Create a new Sketch Criar um novo esboço @@ -1573,17 +1573,17 @@ clique novamente para terminar a seleção PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista de corpos vazia - + The body list cannot be empty A lista de corpos não pode estar vazia - + Boolean: Accept: Input error Booleano: Aceitar: erro de entrada @@ -1612,7 +1612,7 @@ clique novamente para terminar a seleção PartDesignGui::TaskDlgShapeBinder - + Input error Erro de entrada @@ -1697,13 +1697,13 @@ clique novamente para terminar a seleção PartDesignGui::TaskExtrudeParameters - + No face selected Nenhuma face selecionada - + Face Face @@ -1713,48 +1713,48 @@ clique novamente para terminar a seleção Remover - + Preview Pré-visualização - + Select faces Selecionar faces - + No shape selected Nenhuma forma selecionada - + Sketch normal Nornal do sketch - + Face normal Face normal - + Select reference... Selecionar referência... - - + + Custom direction Direção personalizada - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2564,12 +2564,12 @@ medido ao longo da direção especificada Z - + Section orientation Orientação de secção - + Remove Remover @@ -2633,13 +2633,13 @@ medido ao longo da direção especificada Remover - - + + Input error Erro de entrada - + No active body Nenhum corpo ativo @@ -2677,12 +2677,12 @@ medido ao longo da direção especificada Lista pode ser reordenada arrastando - + Section transformation Transformação da secção - + Remove Remover @@ -3051,59 +3051,59 @@ clique novamente para terminar a seleção Remover - + Normal sketch axis Normal do eixo no desenho - + Vertical sketch axis Eixo vertical do esboço - + Horizontal sketch axis Eixo horizontal do esboço - - + + Construction line %1 Linha de construção %1 - + Base X axis Eixo X de base - + Base Y axis Eixo Y de base - + Base Z axis Eixo Z de base - - + + Select reference... Selecionar referência... - + Base XY plane Plano XY base - + Base YZ plane Plano YZ base - + Base XZ plane Plano XZ base @@ -3390,42 +3390,42 @@ clique novamente para terminar a seleção Sub-Shape Binder - + Several sub-elements selected Vários sub-elementos selecionados - + You have to select a single face as support for a sketch! Você deve selecionar uma única face como suporte para um esboço! - + No support face selected Nenhuma face de suporte selecionada - + You have to select a face as support for a sketch! Você deve selecionar uma face como suporte para um esboço! - + No planar support Nenhum suporte planar - + You need a planar face as support for a sketch! Você precisa de uma face plana como suporte para um esboço! - + No valid planes in this document Não há planos válidos neste documento - + Please create a plane first or select a face to sketch on Por favor, crie um plano primeiro ou selecione uma face onde desenhar @@ -3433,7 +3433,7 @@ clique novamente para terminar a seleção - + @@ -3445,7 +3445,7 @@ clique novamente para terminar a seleção - + @@ -3703,13 +3703,13 @@ This may lead to unexpected results. Não é possível criar um objeto subtrativo sem um objeto base disponível - + Vertical sketch axis Eixo vertical do esboço - + Horizontal sketch axis Eixo horizontal do esboço @@ -4748,19 +4748,18 @@ acima de 90: raio maior do furo na parte inferior Operação booleana não suportada - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4768,7 +4767,7 @@ acima de 90: raio maior do furo na parte inferior - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4835,7 +4834,7 @@ acima de 90: raio maior do furo na parte inferior Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4846,49 +4845,54 @@ acima de 90: raio maior do furo na parte inferior - O esboço selecionado não pertence ao corpo ativo. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4956,7 +4960,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -4995,95 +4999,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Erro de buraco: Profundidade do buraco inválida - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operação booleana falhou - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5108,7 +5122,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5350,7 +5364,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed 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 aaa58ac09c..86e201532a 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_pt-PT.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Create Clone - + Make copy Make copy - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Create a new Sketch @@ -1575,17 +1575,17 @@ clique novamente para terminar a seleção PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista de corpos vazia - + The body list cannot be empty A lista de corpos não pode estar vazia - + Boolean: Accept: Input error Booleano: Aceitar: erro de entrada @@ -1614,7 +1614,7 @@ clique novamente para terminar a seleção PartDesignGui::TaskDlgShapeBinder - + Input error Erro de Inserção @@ -1699,13 +1699,13 @@ clique novamente para terminar a seleção PartDesignGui::TaskExtrudeParameters - + No face selected Nenhuma face selecionada - + Face Face @@ -1715,48 +1715,48 @@ clique novamente para terminar a seleção Remover - + Preview Pré-visualizar - + Select faces Faces selecionadas - + No shape selected Nenhuma forma selecionada - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Selecionar referência... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2566,12 +2566,12 @@ measured along the specified direction Z - + Section orientation Orientação de secção - + Remove Remover @@ -2635,13 +2635,13 @@ measured along the specified direction Remover - - + + Input error Erro de Inserção - + No active body No active body @@ -2679,12 +2679,12 @@ measured along the specified direction List can be reordered by dragging - + Section transformation Transformação da secção - + Remove Remover @@ -3053,59 +3053,59 @@ clique novamente para terminar a seleção Remover - + Normal sketch axis Eixo normal do esboço - + Vertical sketch axis Eixo vertical de esboço - + Horizontal sketch axis Eixo horizontal de esboço - - + + Construction line %1 %1 de linha de construção - + Base X axis Eixo X de base - + Base Y axis Eixo Y de base - + Base Z axis Eixo Z de base - - + + Select reference... Selecionar referência... - + Base XY plane Plano XY base - + Base YZ plane Plano YZ base - + Base XZ plane Plano XZ base @@ -3392,42 +3392,42 @@ clique novamente para terminar a seleção Sub-Shape Binder - + Several sub-elements selected Vários subelementos selecionados - + You have to select a single face as support for a sketch! Tem que selecionar uma face única como suporte para um sketch! - + No support face selected Nenhuma face de suporte selecionada - + You have to select a face as support for a sketch! Tem que selecionar uma face como suporte para um sketch! - + No planar support Não há suporte planar - + You need a planar face as support for a sketch! Precisa de uma face plana como suporte para um sketch! - + No valid planes in this document Não há planos válidos neste documento - + Please create a plane first or select a face to sketch on Por favor, crie um plano primeiro ou selecione uma face onde desenhar @@ -3435,7 +3435,7 @@ clique novamente para terminar a seleção - + @@ -3447,7 +3447,7 @@ clique novamente para terminar a seleção - + @@ -3705,13 +3705,13 @@ This may lead to unexpected results. Não é possível criar um objeto subtrativo sem um objeto base disponível - + Vertical sketch axis Eixo vertical de esboço - + Horizontal sketch axis Eixo horizontal de esboço @@ -4748,19 +4748,18 @@ over 90: larger hole radius at the bottom Operação booleana não suportada - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4768,7 +4767,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4835,7 +4834,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4847,49 +4846,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4957,7 +4961,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -4996,95 +5000,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5109,7 +5123,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5351,7 +5365,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts index de61adce14..85be6857cf 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ro.ts @@ -885,18 +885,18 @@ Creati noi coordonate in sistemul local Creare clonă - + Make copy Fă o copie - + Create a Sketch on Face Crează o schiță pe față - + Create a new Sketch Creează o schiță nouă @@ -1577,17 +1577,17 @@ faceți clic din nou pentru a încheia selecția PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista cu corpurile vide - + The body list cannot be empty Lista corpurilor nu poate fi goală - + Boolean: Accept: Input error Boolean: Accepta: eroare de intrare @@ -1616,7 +1616,7 @@ faceți clic din nou pentru a încheia selecția PartDesignGui::TaskDlgShapeBinder - + Input error Eroare de intrare @@ -1701,13 +1701,13 @@ faceți clic din nou pentru a încheia selecția PartDesignGui::TaskExtrudeParameters - + No face selected Nici o faţă selectată - + Face Faţă @@ -1717,48 +1717,48 @@ faceți clic din nou pentru a încheia selecția Elimină - + Preview Previzualizare - + Select faces Selectaţi o față - + No shape selected Nici o forma selectata - + Sketch normal Schiță normală - + Face normal Faţă normală - + Select reference... Select reference... - - + + Custom direction Direcție personalizată - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Faceți clic pe o față din model @@ -2568,12 +2568,12 @@ măsurată de-a lungul direcției specificate Z - + Section orientation Orientarea Secțiunii - + Remove Elimină @@ -2637,13 +2637,13 @@ măsurată de-a lungul direcției specificate Elimină - - + + Input error Eroare de intrare - + No active body Nici un corp activ @@ -2681,12 +2681,12 @@ măsurată de-a lungul direcției specificate Lista poate fi reordonată prin tragere - + Section transformation Transformarea Secţiunii - + Remove Elimină @@ -3054,59 +3054,59 @@ faceți clic din nou pentru a încheia selecția Elimină - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Axa verticală a schiţei - + Horizontal sketch axis Axa orizontală a schiţei - - + + Construction line %1 %1 linie de construcție - + Base X axis Axa X - + Base Y axis Axa Y - + Base Z axis Axa Z - - + + Select reference... Select reference... - + Base XY plane Plan XY - + Base YZ plane Plan YZ - + Base XZ plane Plan XZ @@ -3393,42 +3393,42 @@ faceți clic din nou pentru a încheia selecția Sub-Shape Binder - + Several sub-elements selected Mai multe sub-elemente selectate - + You have to select a single face as support for a sketch! Aţi selectat o singură faţă ca şi suport pentru schiţă! - + No support face selected Nici o faţă suport selectată - + You have to select a face as support for a sketch! Trebuie să selectaţi o faţă suport pentru schiţă! - + No planar support Nici un plan suport - + You need a planar face as support for a sketch! Schiţa necesită o faţă plană ca şi suport! - + No valid planes in this document Nu sunt plane valabile în acest document - + Please create a plane first or select a face to sketch on Vă rugăm să creaţi mai întâi un plan, sau selectează o faţă pe care se aplică schiţa @@ -3436,7 +3436,7 @@ faceți clic din nou pentru a încheia selecția - + @@ -3448,7 +3448,7 @@ faceți clic din nou pentru a încheia selecția - + @@ -3706,13 +3706,13 @@ This may lead to unexpected results. Nu este posibil să se creeze o funcție substractivă fără prezența unei funcții de bază - + Vertical sketch axis Axa verticală a schiţei - + Horizontal sketch axis Axa orizontală a schiţei @@ -4749,19 +4749,18 @@ peste 90: rază mai mare la partea de jos Unsupported boolean operation - + - Resulting shape is not a solid Forma rezultată nu este solidă - - - + + + @@ -4769,7 +4768,7 @@ peste 90: rază mai mare la partea de jos - + Result has multiple solids: that is not currently supported. Rezultatul are mai multe solide: acest lucru nu este suportat în prezent. @@ -4836,7 +4835,7 @@ peste 90: rază mai mare la partea de jos Unghiul de canelă prea mic - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4848,49 +4847,54 @@ peste 90: rază mai mare la partea de jos - schița selectată nu aparține Organismului activ. - + Length too small Lungime prea mică - + Second length too small Lungimea a doua este prea mică - + Failed to obtain profile shape Nu s-a reușit obținerea formei profilului - + Creation failed because direction is orthogonal to sketch's normal vector Crearea a eșuat deoarece direcția este ortogonală pentru vectorul normal al schiței - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Crearea unei fațete din schiță a eșuat - + Up to face: Could not get SubShape! Pana la fata: Nu s-a putut obtine Subforma! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitudinea unghiului înclinat se potrivește sau depășește 90 de grade - + Padding with draft angle failed Padding with draft angle failed (Automatic Copy) @@ -4958,7 +4962,7 @@ Entitățile de schiță intersectate dintr-o schiță nu sunt permise.Eroare: Fața trebuie să fie plană - + Error: Result is not a solid @@ -4997,95 +5001,105 @@ Entitățile de schiță intersectate dintr-o schiță nu sunt permise.Eroare: Nu s-a putut crea fața din schiță - + Hole error: Creating a face from sketch failed Pad: Crearea unei fațete din schiță a eșuat - + Hole error: Unsupported length specification Eroare de găsit: specificație de lungime nesuportată - + Hole error: Invalid hole depth Eroare de rezervă: Adâncimea găurii este invalidă - + Hole error: Invalid taper angle Eroare de găsit: unghi taper invalid - + Hole error: Hole cut diameter too small Eroare de golire: diametrul tăieturii este prea mic - + Hole error: Hole cut depth must be less than hole depth Eroare de găură: Adâncimea tăieturii trebuie să fie mai mică decât adâncimea găurii - + Hole error: Hole cut depth must be greater or equal to zero Eroare de găură: Adâncimea tăieturii trebuie să fie mai mare sau egală cu zero - + Hole error: Invalid countersink Eroare de găsit: Contor nevalid - + Hole error: Invalid drill point angle Eroare de găsit: Unghiul punctului de foraj nevalid - + Hole error: Invalid drill point Eroare de găsit: punct de forare nevalid - + Hole error: Could not revolve sketch Eroare de găsit: Schița nu a putut fi revolvă - + Hole error: Resulting shape is empty Eroare de modul: Forma rezultantă este goală - + Error: Adding the thread failed Eroare: Adăugarea temei de discuţie a eşuat + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Operația Booleană a eșuat - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nu s-a putut crea fața din schiță. Elementele de intersectare ale schiței sau multiplele fețe dintr-o schiță nu sunt permise pentru a face un buzunar până la o față. - + Thread type out of range Tipul de subiect din afara intervalului - + Thread size out of range Dimensiune discutie in afara intervalului - + Error: Thread could not be built Eroare: discuchar@@0ia nu a putut fi construitchar@@1 @@ -5110,7 +5124,7 @@ Elementele de intersectare ale schiței sau multiplele fețe dintr-o schiță nu Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nu s-a putut crea fața din schiță. @@ -5352,7 +5366,7 @@ Nu sunt permise entități intersectate de schiță sau multiple fețe dintr-o s Reference axis is invalid - + Fusion with base feature failed Fuziunea cu caracteristica de bază a eșuat diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts index 6d0f30642c..b45b63a71f 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_ru.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Клонировать - + Make copy Сделать копию - + Create a Sketch on Face Создать новый эскиз на грани - + Create a new Sketch Создать новый эскиз @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Пустой список тел - + The body list cannot be empty Список тел не может быть пустым - + Boolean: Accept: Input error Логическое значение: Принять: Ошибка ввода @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Ошибка ввода @@ -1699,13 +1699,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Грань не выбрана - + Face Грань @@ -1715,48 +1715,48 @@ click again to end selection Убрать - + Preview Предварительный просмотр - + Select faces Выбрать грани - + No shape selected Профиль не выбран - + Sketch normal Нормаль эскиза - + Face normal Нормаль грани - + Select reference... Выбрать ориентир... - - + + Custom direction Произвольное направление - + Click on a shape in the model Нажмите на форму в модели - + Click on a face in the model Выберите грань внутри модели @@ -2564,12 +2564,12 @@ measured along the specified direction Z - + Section orientation Ориентация сечения - + Remove Убрать @@ -2633,13 +2633,13 @@ measured along the specified direction Убрать - - + + Input error Ошибка ввода - + No active body Нет активного Тела @@ -2677,12 +2677,12 @@ measured along the specified direction Список может быть переупорядочен перетаскиванием - + Section transformation Преобразование сечения - + Remove Убрать @@ -3051,59 +3051,59 @@ click again to end selection Удалить - + Normal sketch axis Нормаль оси Эскиза - + Vertical sketch axis Вертикальная ось эскиза - + Horizontal sketch axis Горизонтальная ось эскиза - - + + Construction line %1 Вспомогательная линия %1 - + Base X axis Базовая ось X - + Base Y axis Базовая ось Y - + Base Z axis Базовая ось Z - - + + Select reference... Выбрать ориентир... - + Base XY plane Базовая плоскость XY - + Base YZ plane Базовая плоскость YZ - + Base XZ plane Базовая плоскость XZ @@ -3390,42 +3390,42 @@ click again to end selection Связующее под-объектов - + Several sub-elements selected Неправильное выделение - + You have to select a single face as support for a sketch! Вы должны выбрать одну плоскую грань в качестве основы для эскиза! - + No support face selected Не выбрана грань - + You have to select a face as support for a sketch! Вы должны выбрать поверхность, как основу для эскиза! - + No planar support Неплоская грань - + You need a planar face as support for a sketch! Для создания эскиза, грань должна быть плоской. Выбранная грань неплоская. - + No valid planes in this document В документе нет корректных плоскостей - + Please create a plane first or select a face to sketch on Пожалуйста, сначала создайте плоскость или выберите грань @@ -3433,7 +3433,7 @@ click again to end selection - + @@ -3445,7 +3445,7 @@ click again to end selection - + @@ -3707,13 +3707,13 @@ This may lead to unexpected results. Невозможно создать субтрактивный элемент без базового элемента - + Vertical sketch axis Вертикальная ось эскиза - + Horizontal sketch axis Горизонтальная ось эскиза @@ -4747,22 +4747,21 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - Unsupported boolean operation + Неподдерживаемая булева операция - + - Resulting shape is not a solid Результат не является твердотельным - - - + + + @@ -4770,7 +4769,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Результат состоит из нескольких тел: это в настоящее время это не поддерживается. @@ -4837,7 +4836,7 @@ over 90: larger hole radius at the bottom Угол канавки слишком мал - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4849,49 +4848,54 @@ over 90: larger hole radius at the bottom - выбранный эскиз не принадлежит активному телу. - + Length too small Длина слишком мала - + Second length too small Вторая длина слишком маленькая - + Failed to obtain profile shape Не удалось получить форму профиля - + Creation failed because direction is orthogonal to sketch's normal vector Создание не удалось, поскольку направление ортогонально вектору нормали эскиза - + Extrude: Can only offset one face Выдавливание: может смещать только одну грань - + Creating a face from sketch failed Не удалось создать грань из эскиза - + Up to face: Could not get SubShape! Лицом: не удалось получить суб-фигуру! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Величина угла конуса соответствует или превышает 90 градусов - + Padding with draft angle failed Не удалось выполнить заполнение с углом уклона @@ -4959,7 +4963,7 @@ Intersecting sketch entities in a sketch are not allowed. Ошибка: грань должна быть плоской - + Error: Result is not a solid @@ -4998,95 +5002,105 @@ Intersecting sketch entities in a sketch are not allowed. Ошибка: Не удалось создать грань из эскиза - + Hole error: Creating a face from sketch failed Ошибка отверстия: не удалось создать грань из эскиза - + Hole error: Unsupported length specification Ошибка отверстия: неподдерживаемая длина - + Hole error: Invalid hole depth Ошибка отверстия: неверная глубина отверстия - + Hole error: Invalid taper angle Ошибка при создании отверстия: недопустимый угол зенкования - + Hole error: Hole cut diameter too small Ошибка при создании отверстия: димаметр цековки слишком мал - + Hole error: Hole cut depth must be less than hole depth Ошибка при создании отверстия: глубина цековки должна быть меньше глубины отверстия - + Hole error: Hole cut depth must be greater or equal to zero Ошибка при создании отверстия: глубина цековки должна быть больше либо равна нулю - + Hole error: Invalid countersink Ошибка при создании отверстия: невозможная зенковка - + Hole error: Invalid drill point angle Ошибка при создании отверстия: невозможный угол сверла - + Hole error: Invalid drill point Ошибка при создании отверстия: недопустимая режущая часть сверла - + Hole error: Could not revolve sketch Ошибка при создании отверстия: не найден эскиз профиля - + Hole error: Resulting shape is empty Ошибка при создании отверстия: результирующая форма пуста - + Error: Adding the thread failed Ошибка: не удалось добавить резьбу + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Не удалось выполнить булеву операцию - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Не удалось создать грань из эскиза. Создание выреза из эскиза с пересекающимися элементами или множественными контуры в эскизе невозможно. - + Thread type out of range Тип резьбы выходит за пределы допустимого диапазона - + Thread size out of range Размер резьбы выходит за пределы допустимого диапазона - + Error: Thread could not be built Ошибка: резьба не может быть построена @@ -5111,7 +5125,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Лофт: не удалось создать оболочку - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Не удалось создать грань из эскиза. @@ -5353,7 +5367,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Базовая ось недействительна - + Fusion with base feature failed Сбой слияния с базовой функцией @@ -5385,7 +5399,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Invalid face reference - Invalid face reference + Неверная ссылка на сторону diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts index feac042717..e7a6600861 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sl.ts @@ -883,18 +883,18 @@ da se izogne samosečnosti. Ustvari dvojnika - + Make copy Naredi kopijo - + Create a Sketch on Face Ustvari na ploskev očrt - + Create a new Sketch Ustvari nov očrt @@ -1575,17 +1575,17 @@ s ponovnim klikom pa zaključite izbiranje PartDesignGui::TaskDlgBooleanParameters - + Empty body list Izprazni seznam teles - + The body list cannot be empty Seznam teles ne more biti prazen - + Boolean: Accept: Input error Logične vrednosti: Potrdi: Vnosna napaka @@ -1614,7 +1614,7 @@ s ponovnim klikom pa zaključite izbiranje PartDesignGui::TaskDlgShapeBinder - + Input error Napaka vnosa @@ -1699,13 +1699,13 @@ s ponovnim klikom pa zaključite izbiranje PartDesignGui::TaskExtrudeParameters - + No face selected Nobena ploskev ni izbrana - + Face Ploskev @@ -1715,48 +1715,48 @@ s ponovnim klikom pa zaključite izbiranje Odstrani - + Preview Predogled - + Select faces Izberite ploskve - + No shape selected Nobena oblika ni izbrana - + Sketch normal Normala na očrt - + Face normal Ploskvina normala - + Select reference... Izberite osnovo … - - + + Custom direction Smer po meri - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Klikni na ploskev v modelu @@ -2566,12 +2566,12 @@ merjena vzdolž določene smeri Z - + Section orientation Usmerjenost preseka - + Remove Odstrani @@ -2635,13 +2635,13 @@ merjena vzdolž določene smeri Odstrani - - + + Input error Napaka vnosa - + No active body Nobenega dejavnega telesa @@ -2679,12 +2679,12 @@ merjena vzdolž določene smeri Zaporedje v seznamu lahko spreminjate z vlečenjem - + Section transformation Preoblikovanje preseka - + Remove Odstrani @@ -3053,59 +3053,59 @@ s ponovnim klikom pa zaključite izbiranje Odstrani - + Normal sketch axis Os normale skice - + Vertical sketch axis Navpična os skice - + Horizontal sketch axis Vodoravna os skice - - + + Construction line %1 Pomožna črta %1 - + Base X axis Osnovna X os - + Base Y axis Osnovna Y os - + Base Z axis Osnovna Z os - - + + Select reference... Izberite osnovo … - + Base XY plane Osnovna XY ravnina - + Base YZ plane Osnovna YZ ravnina - + Base XZ plane Osnovna XZ ravnina @@ -3392,42 +3392,42 @@ s ponovnim klikom pa zaključite izbiranje Povezovalnik podoblik - + Several sub-elements selected Izbranih več podelementov - + You have to select a single face as support for a sketch! Izbrati morate eno ploskev kot podporo za skico! - + No support face selected Nobena podporna ploskev ni izbrana - + You have to select a face as support for a sketch! Izbrati morate ploskev kot podporo za skico! - + No planar support Ni ravninske podpore - + You need a planar face as support for a sketch! Izbrati morate ravninsko ploskev kot podporo za skico! - + No valid planes in this document Ni veljavnih ravnin v tem dokumentu - + Please create a plane first or select a face to sketch on Ustvarite najprej ravnino ali izberite ploskev, na katero želite očrtavati @@ -3435,7 +3435,7 @@ s ponovnim klikom pa zaključite izbiranje - + @@ -3447,7 +3447,7 @@ s ponovnim klikom pa zaključite izbiranje - + @@ -3709,13 +3709,13 @@ To lahko pripelje do nepričakovanih rezultatov. Značilke odvzemanja ni mogoče ustvariti, če osnovna značilnost ni na voljo - + Vertical sketch axis Navpična os skice - + Horizontal sketch axis Vodoravna os skice @@ -4755,19 +4755,18 @@ nad 90: v spodnjem delu večji premer luknje Unsupported boolean operation - + - Resulting shape is not a solid Dobljena oblika ni telo - - - + + + @@ -4775,7 +4774,7 @@ nad 90: v spodnjem delu večji premer luknje - + Result has multiple solids: that is not currently supported. Dobljenih je več teles, kar pa trenutno ni podprto. @@ -4842,7 +4841,7 @@ nad 90: v spodnjem delu večji premer luknje Premajhene kot žlebiča - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ nad 90: v spodnjem delu večji premer luknje - izbrani očrt ne pripada dejavnemu telesu. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Ustvarjanje ploskve iz očrta spodletelo - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4963,7 +4967,7 @@ Sekajoče se prvine očrta niso dovoljene. Napaka: ploskev mora biti ravninska - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Sekajoče se prvine očrta niso dovoljene. Napaka: ni bilo mogoče ustvariti ploskve iz očrta - + Hole error: Creating a face from sketch failed Napaka luknje: ustvarjanje ploskve iz očrta spodletelo - + Hole error: Unsupported length specification Napaka luknje: nepodprta določitev dolžine - + Hole error: Invalid hole depth Napaka luknje: neveljavna globina luknje - + Hole error: Invalid taper angle Napaka luknje: neveljaven kót koničenja - + Hole error: Hole cut diameter too small Napaka luknje: Premajhen premer vrtanja luknje - + Hole error: Hole cut depth must be less than hole depth Napaka luknje: globina vrtanja luknje mora biti manjša od globine luknje - + Hole error: Hole cut depth must be greater or equal to zero Napaka luknje: globina vrtanja luknje mora biti večja ali enaka nič - + Hole error: Invalid countersink Napaka luknje: neveljavno kotno grezenje - + Hole error: Invalid drill point angle Napaka luknje: neveljaven kót konice svedra - + Hole error: Invalid drill point Napaka luknje: neveljavna konica svedra - + Hole error: Could not revolve sketch Napaka luknje: očrta ni mogoče zvrteti - + Hole error: Resulting shape is empty Napaka luknje: dobljena oblika je prazna - + Error: Adding the thread failed Napaka: dodajanje navoja spodletelo + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Logična operacija spodletela - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Iz očrta ni bilo mogoče ustvariti ploskve. Sekanje enot očrta ali več ploskev v očrtu ni dopustno pri izdelavi ugreza v ploskev. - + Thread type out of range Vrsta navoja izven obsega - + Thread size out of range Velikost navoja izven obsega - + Error: Thread could not be built Napak: navoja ni bilo mogoče izvesti @@ -5115,7 +5129,7 @@ Sekanje enot očrta ali več ploskev v očrtu ni dopustno pri izdelavi ugreza v Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Iz očrta ni bilo mogoče ustvariti ploskve. @@ -5357,7 +5371,7 @@ Sekajočih se prvin očrta ali več ploskev v očrtu ne sme biti. Reference axis is invalid - + Fusion with base feature failed Združitev z izhodiščno značilnostjo spodletela diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr-CS.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr-CS.ts index 393ced8c97..2f5747e576 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr-CS.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr-CS.ts @@ -883,18 +883,18 @@ vrednost za korak na osnovu graničnog okvira oko profila. Napravi klon - + Make copy Napravi kopiju - + Create a Sketch on Face Napravi skicu na stranici - + Create a new Sketch Napravi novu skicu @@ -1575,17 +1575,17 @@ klikni ponovo da bi završio izbor PartDesignGui::TaskDlgBooleanParameters - + Empty body list Lista sa telima je prazna - + The body list cannot be empty Lista sa telima ne može da bude prazna - + Boolean: Accept: Input error Bulova: Prihvati: Greška u unosu @@ -1614,7 +1614,7 @@ klikni ponovo da bi završio izbor PartDesignGui::TaskDlgShapeBinder - + Input error Greška pri unosu @@ -1699,13 +1699,13 @@ klikni ponovo da bi završio izbor PartDesignGui::TaskExtrudeParameters - + No face selected Stranica nije izabrana - + Face Stranica @@ -1715,48 +1715,48 @@ klikni ponovo da bi završio izbor Ukloni - + Preview Pregled - + Select faces Izaberi stranice - + No shape selected Nema odabranih oblika - + Sketch normal Normala na skicu - + Face normal Normala na stranicu - + Select reference... Izaberi sopstvenu... - - + + Custom direction Sopstveni smer - + Click on a shape in the model Klikni na neki oblik na modelu - + Click on a face in the model Klikni na stranicu modela @@ -2566,12 +2566,12 @@ merena duž zadatog pravca Z - + Section orientation Orijentacija preseka - + Remove Ukloni @@ -2635,13 +2635,13 @@ merena duž zadatog pravca Ukloni - - + + Input error Greška pri unosu - + No active body Nema aktivnog tela @@ -2679,12 +2679,12 @@ merena duž zadatog pravca Lista se može reorganizovati prevlačenjem - + Section transformation Transformisanje preseka - + Remove Ukloni @@ -3053,59 +3053,59 @@ klikni ponovo da bi završio izbor Ukloni - + Normal sketch axis Osa normalna na skicu - + Vertical sketch axis Vertikalna osa skice - + Horizontal sketch axis Horizontalna osa skice - - + + Construction line %1 Pomoćna prava %1 - + Base X axis Osnovna X osa - + Base Y axis Osnovna Y osa - + Base Z axis Osnovna Z osa - - + + Select reference... Izaberi sopstvenu... - + Base XY plane Osnovna XY ravan - + Base YZ plane Osnovna YZ ravan - + Base XZ plane Osnovna XZ ravan @@ -3392,42 +3392,42 @@ klikni ponovo da bi završio izbor Povezivač podоblika - + Several sub-elements selected Nekoliko pod-elemenata izabrano - + You have to select a single face as support for a sketch! Moraš izabrati jednu stranicu kao osnovu za skicu! - + No support face selected Nije izabrana stranica kao osnova - + You have to select a face as support for a sketch! Moraš odabrati stranicu kao osnovu za skicu! - + No planar support Nema ravni kao osnove - + You need a planar face as support for a sketch! Potrebna je ravna stranica kao osnova za skicu! - + No valid planes in this document Nema važećih ravni u ovom dokumentu - + Please create a plane first or select a face to sketch on Da bi mogao crtati skicu prvo napravi ravan ili izaberi stranicu @@ -3435,7 +3435,7 @@ klikni ponovo da bi završio izbor - + @@ -3447,7 +3447,7 @@ klikni ponovo da bi završio izbor - + @@ -3709,13 +3709,13 @@ Ovo može dovesti do neočekivanih rezultata. Ne možeš primeniti tipske oblike koji prave udubljenja ako nemaš na raspolaganju osnovni tipski oblik - + Vertical sketch axis Vertikalna osa skice - + Horizontal sketch axis Horizontalna osa skice @@ -4755,19 +4755,18 @@ iznad 90: veći poluprečnik rupe na dnu Nepodržana bulova operacija - + - Resulting shape is not a solid Dobijeni oblik nije puno telo - - - + + + @@ -4775,7 +4774,7 @@ iznad 90: veći poluprečnik rupe na dnu - + Result has multiple solids: that is not currently supported. Rezultat ima više punih tela: ovo trenutno nije podržano. @@ -4842,7 +4841,7 @@ iznad 90: veći poluprečnik rupe na dnu Ugao kružnog udubljenja je suviše mali - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4854,49 +4853,54 @@ iznad 90: veći poluprečnik rupe na dnu - izabrana skica ne pripada aktivnom Telu. - + Length too small Dužina je suviše mala - + Second length too small Druga dužina je suviše mala - + Failed to obtain profile shape Nije moguće obezbediti profilni oblik - + Creation failed because direction is orthogonal to sketch's normal vector Pravljenje nije uspelo jer je pravac ortogonalan vektoru normale skice - + Extrude: Can only offset one face Izvlačenje: Moguće je odmaći samo jednu stranicu - + Creating a face from sketch failed Pravljenje stranica pomoću skice nije uspelo - + Up to face: Could not get SubShape! Do stranice: Nije moguće dohvatiti pod-oblik! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Veličina ugla suženja odgovara ili prelazi 90 stepeni - + Padding with draft angle failed Izvlačenje sa nagibom nije uspelo @@ -4964,7 +4968,7 @@ Nije dozvoljeno ukrštanje elemenata na skici. Greška: Stranica mora biti ravna - + Error: Result is not a solid @@ -5003,95 +5007,105 @@ Nije dozvoljeno ukrštanje elemenata na skici. Greška: Nije moguće napraviti stranicu pomoću skice - + Hole error: Creating a face from sketch failed Rupa greška: Pravljenje stranica pomoću skice nije uspelo - + Hole error: Unsupported length specification Rupa greška: Nepodržana specifikacija dužine - + Hole error: Invalid hole depth Rupa greška: Neispravna dubina rupe - + Hole error: Invalid taper angle Rupa greška: Neispravan ugao konusa - + Hole error: Hole cut diameter too small Rupa greška: Suviše mali prečnik dodatne obrade rupe - + Hole error: Hole cut depth must be less than hole depth Rupa greška: Dubina dodatne obrade rupe mora biti manja od dubine rupe - + Hole error: Hole cut depth must be greater or equal to zero Rupa greška: Dubina dodatne obrade rupe mora biti veća ili jednaka nuli - + Hole error: Invalid countersink Rupa greška: Neispravno konusno upuštanje - + Hole error: Invalid drill point angle Rupa greška: Neispravan ugao mesta bušenja - + Hole error: Invalid drill point Rupa greška: Neispravno mesto bušenja - + Hole error: Could not revolve sketch Rupa greška: Nije moguće obrtanje skice - + Hole error: Resulting shape is empty Rupa greška: Dobijeni oblik je prazan - + Error: Adding the thread failed Greška: Dodavanje navoja nije uspelo + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Bulova operacija nije uspela - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Nije moguće napraviti stranice pomoću skice. Ukrštanje elemenata skice ili više stranica u skici nije dozvoljeno za pravljenje udubljenja do stranice. - + Thread type out of range Tip navoja je van opsega - + Thread size out of range Veličina navoja je van opsega - + Error: Thread could not be built Greška: Nije moguće napraviti navoj @@ -5116,7 +5130,7 @@ Ukrštanje elemenata skice ili više stranica u skici nije dozvoljeno za pravlje Izvlačenje po presecima: Nije uspelo pravljenje ljuske - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Nije moguće napraviti stranice pomoću skice. @@ -5358,7 +5372,7 @@ Nije dozvoljeno ukrštanje elemenata ili više stranica u skici. Referentna osa je neispravna - + Fusion with base feature failed Unija sa osnovnim tipskim oblikom nije uspela diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr.ts index b107612738..63d3130c54 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sr.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Направи клон - + Make copy Направи копију - + Create a Sketch on Face Направи скицу на страници - + Create a new Sketch Направи нову скицу @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Листа са телима је празна - + The body list cannot be empty Листа са телима не може да буде празна - + Boolean: Accept: Input error Булова: Прихвати: Грешка у уносу @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Грешка приликом уноса @@ -1699,13 +1699,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Страница није изабрана - + Face Страница @@ -1715,48 +1715,48 @@ click again to end selection Уклони - + Preview Преглед - + Select faces Изабери странице - + No shape selected Нема одабраних облика - + Sketch normal Нормала на скицу - + Face normal Нормала на страницу - + Select reference... Изабери сопствену... - - + + Custom direction Сопствени смер - + Click on a shape in the model Кликни на неки обик на моделу - + Click on a face in the model Кликни на страницу модела @@ -2566,12 +2566,12 @@ measured along the specified direction Z - + Section orientation Оријентација пресека - + Remove Уклони @@ -2635,13 +2635,13 @@ measured along the specified direction Уклони - - + + Input error Грешка приликом уноса - + No active body Нема активног тела @@ -2679,12 +2679,12 @@ measured along the specified direction Листа се може реорганизовати превлачењем - + Section transformation Трансформисање пресека - + Remove Уклони @@ -3053,59 +3053,59 @@ click again to end selection Уклони - + Normal sketch axis Нормалне оcе cкице - + Vertical sketch axis Вертикална оcа cкице - + Horizontal sketch axis Хоризонтална оса скице - - + + Construction line %1 Помоћна права %1 - + Base X axis Основна X оса - + Base Y axis Основна Y оса - + Base Z axis Основна Z оса - - + + Select reference... Изабери сопствену... - + Base XY plane Основна XY раван - + Base YZ plane Основна YZ раван - + Base XZ plane Основна XZ раван @@ -3392,42 +3392,42 @@ click again to end selection Повезивач подоблика - + Several sub-elements selected Неколико под-елемената изабрано - + You have to select a single face as support for a sketch! Мораш изабрати једну страницу као основу за скицу! - + No support face selected Није одабрана страница као основа - + You have to select a face as support for a sketch! Мораш изабрати страницу као основу за скицу! - + No planar support Нема равни као основе - + You need a planar face as support for a sketch! Потребна је равна страница као основа за скицу! - + No valid planes in this document Нема важећих равни у овом документу - + Please create a plane first or select a face to sketch on Да би могао цртати скицу прво направи раван или изабери страницу @@ -3435,7 +3435,7 @@ click again to end selection - + @@ -3447,7 +3447,7 @@ click again to end selection - + @@ -3709,13 +3709,13 @@ This may lead to unexpected results. Не можеш применити типске облике који праве удубљења ако немаш на располагању основни типски облик - + Vertical sketch axis Вертикална оcа cкице - + Horizontal sketch axis Хоризонтална оса скице @@ -4755,19 +4755,18 @@ over 90: larger hole radius at the bottom Неподржана булова операција - + - Resulting shape is not a solid Добијени облик није пуно тело - - - + + + @@ -4775,7 +4774,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Резултат има више пуних тела: ово тренутно није подржано. @@ -4842,7 +4841,7 @@ over 90: larger hole radius at the bottom Угао кружног удубљења је сувише мали - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4854,49 +4853,54 @@ over 90: larger hole radius at the bottom - изабрана скица не припада активном Телу. - + Length too small Дужина је сувише мала - + Second length too small Друга дужина је сувише мала - + Failed to obtain profile shape Није могуће обезбедити профилни облик - + Creation failed because direction is orthogonal to sketch's normal vector Прављење није успело јер је правац ортогоналан вектору нормале скице - + Extrude: Can only offset one face Извлачење: Могуће је одмаћи само једну страницу - + Creating a face from sketch failed Прављење страница помоћу скице није успело - + Up to face: Could not get SubShape! До странице: Није могуће дохватити под-облик! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Величина угла сужења одговара или прелази 90 степени - + Padding with draft angle failed Извлачење са нагибом није успело @@ -4964,7 +4968,7 @@ Intersecting sketch entities in a sketch are not allowed. Грешка: Страница мора бити равна - + Error: Result is not a solid @@ -5003,95 +5007,105 @@ Intersecting sketch entities in a sketch are not allowed. Грешка: Није могуће направити страницу помоћу скице - + Hole error: Creating a face from sketch failed Рупа грешка: Прављење страница помоћу скице није успело - + Hole error: Unsupported length specification Рупа грешка: Неподржана спецификација дужине - + Hole error: Invalid hole depth Рупа грешка: Неисправна дубина рупе - + Hole error: Invalid taper angle Рупа грешка: Неисправан угао конуса - + Hole error: Hole cut diameter too small Рупа грешка: Сувише мали пречник додатне обраде рупе - + Hole error: Hole cut depth must be less than hole depth Рупа грешка: Дубина додатне обраде рупе мора бити мања од дубине рупе - + Hole error: Hole cut depth must be greater or equal to zero Рупа грешка: Дубина додатне обраде рупе мора бити већа или једнака нули - + Hole error: Invalid countersink Рупа грешка: Неисправно конусно упуштање - + Hole error: Invalid drill point angle Рупа грешка: Неисправан угао места бушења - + Hole error: Invalid drill point Рупа грешка: Неисправно место бушења - + Hole error: Could not revolve sketch Рупа грешка: Није могуће обртање скице - + Hole error: Resulting shape is empty Рупа грешка: Добијени облик је празан - + Error: Adding the thread failed Грешка: Додавање навоја није успело + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Булова операција није успела - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Није могуће направити странице помоћу скице. Укрштање елемената скице или више страница у скици није дозвољено за прављење удубљења до странице. - + Thread type out of range Тип навоја је ван опсега - + Thread size out of range Величина навоја је ван опсега - + Error: Thread could not be built Грешка: Није могуће направити навој @@ -5116,7 +5130,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Извлачење по пресецима: Није успело прављење љуске - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Није могуће направити странице помоћу скице. @@ -5358,7 +5372,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Референтна оса је неисправна - + Fusion with base feature failed Унија са основним типским обликом није успела diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts index 028885057a..a77afe6412 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_sv-SE.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. Skapa klon - + Make copy Skapa kopia - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Skapa en ny skiss @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Töm kropplista - + The body list cannot be empty Kropplistan får ej vara tom - + Boolean: Accept: Input error Boolean: Acceptera: Felinmatning @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Inmatningsfel @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Inget yta vald - + Face Yta @@ -1714,48 +1714,48 @@ click again to end selection Ta bort - + Preview Förhandsvisning - + Select faces Markera ytor - + No shape selected Ingen form har valts - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Välj referens... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Snittriktning - + Remove Ta bort @@ -2634,13 +2634,13 @@ measured along the specified direction Ta bort - - + + Input error Inmatningsfel - + No active body Ingen aktiv kropp @@ -2678,12 +2678,12 @@ measured along the specified direction List can be reordered by dragging - + Section transformation Snittomvandling - + Remove Ta bort @@ -3052,59 +3052,59 @@ click again to end selection Ta bort - + Normal sketch axis Normal skissaxel - + Vertical sketch axis Vertikal skissaxel - + Horizontal sketch axis Horisontell skissaxel - - + + Construction line %1 Konstruktionslinje %1 - + Base X axis Basens X-axel - + Base Y axis Basens Y-axel - + Base Z axis Basens Z-axel - - + + Select reference... Välj referens... - + Base XY plane XY-basplan - + Base YZ plane YZ-basplan - + Base XZ plane XZ-basplan @@ -3191,7 +3191,7 @@ click again to end selection LinearPattern parameters - LinearPattern parameters + Parametrar för linjärt mönster @@ -3391,42 +3391,42 @@ click again to end selection Sub-Shape Binder - + Several sub-elements selected Flera underelement valda - + You have to select a single face as support for a sketch! Du måste välja en enkel yta som stöd för en skiss! - + No support face selected Ingen stödyta vald - + You have to select a face as support for a sketch! Du måste välja en yta som stöd för en skiss! - + No planar support Inget planärt stöd - + You need a planar face as support for a sketch! Du behöver en plan yta som stöd för en skiss! - + No valid planes in this document Inga giltiga plan i detta dokument - + Please create a plane first or select a face to sketch on Vänligen skapa ett plan först eller välj en yta att skissa på @@ -3434,7 +3434,7 @@ click again to end selection - + @@ -3446,7 +3446,7 @@ click again to end selection - + @@ -3704,13 +3704,13 @@ This may lead to unexpected results. Det går inte att skapa en subtraktiv funktion utan en tillgänglig basfunktion - + Vertical sketch axis Vertikal skissaxel - + Horizontal sketch axis Horisontell skissaxel @@ -3948,7 +3948,7 @@ Although you will be able to migrate any moment later with 'Part Design -> Mi Edit linear pattern - Edit linear pattern + Redigera linjärt mönster @@ -4749,19 +4749,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4769,7 +4768,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4836,7 +4835,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4848,49 +4847,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4958,7 +4962,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -4997,95 +5001,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5110,7 +5124,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5352,7 +5366,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts index 24d95e6f18..a24ef5dee3 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_tr.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Klone oluştur - + Make copy Kopya oluştur - + Create a Sketch on Face Yüzeye bir skeç oluştur - + Create a new Sketch Yeni skeç oluştur @@ -1575,17 +1575,17 @@ seçimi bitirmek için tekrar basın PartDesignGui::TaskDlgBooleanParameters - + Empty body list Boş gövde listesi - + The body list cannot be empty Gövde listesi boş olamaz - + Boolean: Accept: Input error Boolean: Kabul Ediyorum: Giriş hatası @@ -1614,7 +1614,7 @@ seçimi bitirmek için tekrar basın PartDesignGui::TaskDlgShapeBinder - + Input error Girdi hatası @@ -1699,13 +1699,13 @@ seçimi bitirmek için tekrar basın PartDesignGui::TaskExtrudeParameters - + No face selected Seçili yüz yok - + Face Yüz @@ -1715,48 +1715,48 @@ seçimi bitirmek için tekrar basın Kaldır - + Preview Önizleme - + Select faces Yüzleri seç - + No shape selected Şekil seçilmedi - + Sketch normal Eskize dik - + Face normal Yüzey normali - + Select reference... Select reference... - - + + Custom direction Özel yön - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Modeldeki bir yüzeye tıklayın @@ -2566,12 +2566,12 @@ belirlenen yön boyunca ölçülecek Z - + Section orientation Bölüm yönlendirmesi - + Remove Kaldır @@ -2635,13 +2635,13 @@ belirlenen yön boyunca ölçülecek Kaldır - - + + Input error Girdi hatası - + No active body Etkin gövde yok @@ -2679,12 +2679,12 @@ belirlenen yön boyunca ölçülecek Liste, sürüklenerek tekrar sıralanabilir - + Section transformation Bölüm dönüşümü - + Remove Kaldır @@ -3053,59 +3053,59 @@ seçimi bitirmek için tekrar basın Kaldır - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Dikey taslak ekseni - + Horizontal sketch axis Yatay taslak ekseni - - + + Construction line %1 Yapı hattı %1 - + Base X axis Baz X ekseni - + Base Y axis Baz Y ekseni - + Base Z axis Baz Z ekseni - - + + Select reference... Select reference... - + Base XY plane Baz XY düzlemi - + Base YZ plane Baz YZ düzlemi - + Base XZ plane Baz XZ düzlemi @@ -3392,42 +3392,42 @@ seçimi bitirmek için tekrar basın Alt Şekil Bağlayıcı - + Several sub-elements selected Birkaç alt eleman seçildi - + You have to select a single face as support for a sketch! Bir eskizi desteklemek için tek bir yüzey seçmelisiniz! - + No support face selected Desteklenmeyen bir yüz seçili - + You have to select a face as support for a sketch! Taslak çizimi destekeleyen bir yüz seçmelisin! - + No planar support Düzlemsel desteği yok - + You need a planar face as support for a sketch! Bir eskiz desteği için düzlemsel bir yüze ihtiyacınız var! - + No valid planes in this document Bu belgede geçerli uçaklar yok - + Please create a plane first or select a face to sketch on Lütfen önce bir düzlem oluşturun ya da bir eskiz yüzeyi seçin @@ -3435,7 +3435,7 @@ seçimi bitirmek için tekrar basın - + @@ -3447,7 +3447,7 @@ seçimi bitirmek için tekrar basın - + @@ -3709,13 +3709,13 @@ Bu, beklenmedik sonuçlara neden olabilir. Mevcut bir temel özellik olmadan bir çıkarılabilir özellik oluşturmak mümkün değildir - + Vertical sketch axis Dikey taslak ekseni - + Horizontal sketch axis Yatay taslak ekseni @@ -4753,19 +4753,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4773,7 +4772,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4840,7 +4839,7 @@ over 90: larger hole radius at the bottom Oluk açısı çok dar - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4852,49 +4851,54 @@ over 90: larger hole radius at the bottom - seçili eskiz etkin Gövdeye ait değil. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Taslakdan yüzey yaratma hatası - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4962,7 +4966,7 @@ Intersecting sketch entities in a sketch are not allowed. Hata: yüzey düzlemsel olmalı - + Error: Result is not a solid @@ -5001,95 +5005,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5114,7 +5128,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5356,7 +5370,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts index d408082aec..875a96a1a3 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_uk.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Створити Клон - + Make copy Зробити копію - + Create a Sketch on Face Створити ескіз на грані - + Create a new Sketch Створити новий ескіз @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list Пустий список тіл - + The body list cannot be empty Список тіл не може бути пустим - + Boolean: Accept: Input error Логічне значення: Прийняти: Помилка введення @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Помилка вводу @@ -1699,13 +1699,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected Грань не виділена - + Face Грань @@ -1715,48 +1715,48 @@ click again to end selection Видалити - + Preview Попередній перегляд - + Select faces Обрати грані - + No shape selected Немає обраної форми - + Sketch normal Нормаль Ескізу - + Face normal Нормаль Грані - + Select reference... Виберіть посилання... - - + + Custom direction Довільний напрямок - + Click on a shape in the model Натисніть на фігуру в моделі - + Click on a face in the model Натисніть на грань в моделі @@ -2565,12 +2565,12 @@ measured along the specified direction Z - + Section orientation Орієнтація перерізу - + Remove Видалити @@ -2634,13 +2634,13 @@ measured along the specified direction Видалити - - + + Input error Помилка вводу - + No active body Немає активного тіла @@ -2678,12 +2678,12 @@ measured along the specified direction Список можна змінити шляхом перетягування - + Section transformation Перетворення перерізу - + Remove Видалити @@ -3052,59 +3052,59 @@ click again to end selection Видалити - + Normal sketch axis Нормаль до осі ескізу - + Vertical sketch axis Вертикальна вісь ескізу - + Horizontal sketch axis Горизонтальна вісь ескізу - - + + Construction line %1 Допоміжна лінія %1 - + Base X axis Базова вісь X - + Base Y axis Базова вісь Y - + Base Z axis Базова вісь Z - - + + Select reference... Виберіть посилання... - + Base XY plane Базова площина XY - + Base YZ plane Базова площина YZ - + Base XZ plane Базова площина XZ @@ -3391,42 +3391,42 @@ click again to end selection Сполучна Форма для Підобʼєкта - + Several sub-elements selected Обрано декілька під-елементів - + You have to select a single face as support for a sketch! Потрібно обрати одну грань, як базу ескізу! - + No support face selected Не обрано базової грані - + You have to select a face as support for a sketch! Потрібна пласка поверхня для створення ескізу! - + No planar support Площина підтримки відсутня - + You need a planar face as support for a sketch! Потрібна плоска грань для створення ескізу! - + No valid planes in this document В цьому документі відсутні коректні площини - + Please create a plane first or select a face to sketch on Будь ласка, спочатку створіть або виберіть грань для розміщення ескізу @@ -3434,7 +3434,7 @@ click again to end selection - + @@ -3446,7 +3446,7 @@ click again to end selection - + @@ -3708,13 +3708,13 @@ This may lead to unexpected results. Неможливо створити субтрактивний елемент без базового елементу - + Vertical sketch axis Вертикальна вісь ескізу - + Horizontal sketch axis Горизонтальна вісь ескізу @@ -4754,19 +4754,18 @@ over 90: larger hole radius at the bottom Непідтримувана логічна операція - + - Resulting shape is not a solid Отримана форма не є твердотільною - - - + + + @@ -4774,7 +4773,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Результат має кілька твердих тіл: наразі не підтримується. @@ -4841,7 +4840,7 @@ over 90: larger hole radius at the bottom Кут нахилу канавки занадто малий - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4853,49 +4852,54 @@ over 90: larger hole radius at the bottom - виділений ескіз не належить до активного тіла. - + Length too small Довжина занадто мала - + Second length too small Друга довжина занадто мала - + Failed to obtain profile shape Не вдалося отримати форму профілю - + Creation failed because direction is orthogonal to sketch's normal vector Створення не вдалося, оскільки напрямок ортогональний до вектора нормалі ескізу - + Extrude: Can only offset one face Екструзія: можна змістити лише одну грань - + Creating a face from sketch failed Створення поверхні з ескізу не вдалося - + Up to face: Could not get SubShape! До грані: Не вдалося отримати суб-форму! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Величина кута конуса відповідає або перевищує 90 градусів - + Padding with draft angle failed Не вдалося виконати видавлювання з кутом нахилу @@ -4963,7 +4967,7 @@ Intersecting sketch entities in a sketch are not allowed. Помилка: Грань повинна бути плоскою - + Error: Result is not a solid @@ -5002,95 +5006,105 @@ Intersecting sketch entities in a sketch are not allowed. Помилка: Неможливо створити поверхню з ескізу - + Hole error: Creating a face from sketch failed Помилка отвору: Не вдалося створити грань з ескізу - + Hole error: Unsupported length specification Помилка отвору: Непідтримувана специфікація довжини - + Hole error: Invalid hole depth Помилка отвору: Неправильна глибина отвору - + Hole error: Invalid taper angle Помилка отвору: Неприпустимий кут зенкування - + Hole error: Hole cut diameter too small Помилка отвору: Занадто малий діаметр отвору - + Hole error: Hole cut depth must be less than hole depth Помилка отвору: Глибина цековки повинна бути меншою за глибину отвору - + Hole error: Hole cut depth must be greater or equal to zero Помилка отвору: Глибина цековки повинна бути більшою або дорівнювати нулю - + Hole error: Invalid countersink Помилка отвору: Неправильне зенкування - + Hole error: Invalid drill point angle Помилка отвору: Неправильний кут свердла - + Hole error: Invalid drill point Помилка отвору: Неправильна точка свердління - + Hole error: Could not revolve sketch Помилка отвору: Не вдалося обернути ескіз - + Hole error: Resulting shape is empty Помилка отвору: Результуюча форма порожня - + Error: Adding the thread failed Помилка: Не вдалося додати різьбу + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Не вдалося виконати логічну операцію - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Неможливо створити грані з ескізу. Пересічні об'єкти ескізу або декілька граней в ескізі не дозволяють створити кишеню на грані. - + Thread type out of range Тип різьби знаходиться поза діапазоном - + Thread size out of range Розмір різьби поза діапазоном - + Error: Thread could not be built Помилка: Не вдалося створити різьбу @@ -5115,7 +5129,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Лофт: Не вдалося створити оболонку - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Не вдалося створити грань з ескізу. @@ -5357,7 +5371,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Базова вісь недійсна - + Fusion with base feature failed Злиття з базовою функцією не вдалося diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_val-ES.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_val-ES.ts index e25ed7695b..d549d576a0 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_val-ES.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_val-ES.ts @@ -883,18 +883,18 @@ so that self intersection is avoided. Create Clone - + Make copy Make copy - + Create a Sketch on Face Create a Sketch on Face - + Create a new Sketch Create a new Sketch @@ -1575,17 +1575,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list La llista de cossos està buida - + The body list cannot be empty La llista de cossos no pot estar buida - + Boolean: Accept: Input error Booleà: Accepta: error d'entrada @@ -1614,7 +1614,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error Input error @@ -1699,13 +1699,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected No s'ha seleccionat cap cara. - + Face Cara @@ -1715,48 +1715,48 @@ click again to end selection Elimina - + Preview Previsualització - + Select faces Seleccioneu cares - + No shape selected No s'ha seleccionat cap forma. - + Sketch normal Sketch normal - + Face normal Face normal - + Select reference... Select reference... - - + + Custom direction Custom direction - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model Click on a face in the model @@ -2566,12 +2566,12 @@ measured along the specified direction Z - + Section orientation Orientació de la secció - + Remove Elimina @@ -2635,13 +2635,13 @@ measured along the specified direction Elimina - - + + Input error Input error - + No active body No active body @@ -2679,12 +2679,12 @@ measured along the specified direction List can be reordered by dragging - + Section transformation Transformació de la secció - + Remove Elimina @@ -3053,59 +3053,59 @@ click again to end selection Elimina - + Normal sketch axis Normal sketch axis - + Vertical sketch axis Vertical sketch axis - + Horizontal sketch axis Horizontal sketch axis - - + + Construction line %1 Línia de construcció %1 - + Base X axis Eix base X - + Base Y axis Eix base Y - + Base Z axis Eix base Z - - + + Select reference... Select reference... - + Base XY plane Pla base XY - + Base YZ plane Pla base YZ - + Base XZ plane Pla base XZ @@ -3392,42 +3392,42 @@ click again to end selection Sub-Shape Binder - + Several sub-elements selected S'han seleccionat diversos sub-elements - + You have to select a single face as support for a sketch! Heu de seleccionar una única cara com a suport de l'esbós. - + No support face selected No s'ha seleccionat una cara de suport - + You have to select a face as support for a sketch! Heu seleccionat una cara de suport per a un esbós. - + No planar support No hi ha suport planari - + You need a planar face as support for a sketch! Necessiteu una cara d'un pla com a suport per a un esbós. - + No valid planes in this document No hi ha cap pla vàlid en aquest document. - + Please create a plane first or select a face to sketch on Creeu primer un pla o seleccioneu una cara a esbossar @@ -3435,7 +3435,7 @@ click again to end selection - + @@ -3447,7 +3447,7 @@ click again to end selection - + @@ -3707,13 +3707,13 @@ Això pot portar a resultats inesperats. No és possible crear una funció subtractiva sense una funció de base disponible. - + Vertical sketch axis Vertical sketch axis - + Horizontal sketch axis Horizontal sketch axis @@ -4752,19 +4752,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4772,7 +4771,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4839,7 +4838,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4851,49 +4850,54 @@ over 90: larger hole radius at the bottom - the selected sketch does not belong to the active Body. - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4961,7 +4965,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -5000,95 +5004,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed Boolean operation failed - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5113,7 +5127,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5355,7 +5369,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts index 76891bff01..c1825e51f5 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-CN.ts @@ -882,18 +882,18 @@ so that self intersection is avoided. 创建副本 - + Make copy 制作副本 - + Create a Sketch on Face 在面上创建草图 - + Create a new Sketch 创建新草图 @@ -1574,17 +1574,17 @@ click again to end selection PartDesignGui::TaskDlgBooleanParameters - + Empty body list 空的实体列表 - + The body list cannot be empty 实体列表不能空 - + Boolean: Accept: Input error 布尔值: 接受: 输入错误 @@ -1613,7 +1613,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error 输入错误 @@ -1698,13 +1698,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected 未选择任何面 - + Face @@ -1714,48 +1714,48 @@ click again to end selection 删除 - + Preview 预览 - + Select faces 选取面 - + No shape selected 无选定的形状 - + Sketch normal 草图法向 - + Face normal 面法线 - + Select reference... Select reference... - - + + Custom direction 自定义方向: - + Click on a shape in the model Click on a shape in the model - + Click on a face in the model 点击模型中的一个面 @@ -2564,12 +2564,12 @@ measured along the specified direction Z - + Section orientation 截面方向 - + Remove 删除 @@ -2633,13 +2633,13 @@ measured along the specified direction 删除 - - + + Input error 输入错误 - + No active body 没有活动的实体 @@ -2677,12 +2677,12 @@ measured along the specified direction 列表可以通过拖动重新排序 - + Section transformation 截面变换 - + Remove 删除 @@ -3051,59 +3051,59 @@ click again to end selection 删除 - + Normal sketch axis Normal sketch axis - + Vertical sketch axis 垂直草绘轴 - + Horizontal sketch axis 水平草绘轴 - - + + Construction line %1 辅助线 %1 - + Base X axis X 轴 - + Base Y axis Y 轴 - + Base Z axis Z 轴 - - + + Select reference... 选择引用... - + Base XY plane XY 基准平面 - + Base YZ plane YZ 基准平面 - + Base XZ plane XZ 基准平面 @@ -3390,42 +3390,42 @@ click again to end selection 子形状投影器 - + Several sub-elements selected 若干子元素被选择 - + You have to select a single face as support for a sketch! 您必须选择一个支持面以绘制草图! - + No support face selected 未选中支持面 - + You have to select a face as support for a sketch! 您必须选择一个支持面以绘制草图! - + No planar support 无支持平面 - + You need a planar face as support for a sketch! 您需要一个支持平面以绘制草图! - + No valid planes in this document 文档中无有效平面 - + Please create a plane first or select a face to sketch on 请先创建一个平面或选择一个平面用于画草图 @@ -3433,7 +3433,7 @@ click again to end selection - + @@ -3445,7 +3445,7 @@ click again to end selection - + @@ -3707,13 +3707,13 @@ This may lead to unexpected results. 如果没有可用的基础特征, 就不可能创建减料特征 - + Vertical sketch axis 垂直草绘轴 - + Horizontal sketch axis 水平草绘轴 @@ -4751,19 +4751,18 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - + - Resulting shape is not a solid Resulting shape is not a solid - - - + + + @@ -4771,7 +4770,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. Result has multiple solids: that is not currently supported. @@ -4838,7 +4837,7 @@ over 90: larger hole radius at the bottom Angle of groove too small - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4850,49 +4849,54 @@ over 90: larger hole radius at the bottom - 选中的草图不属于活动实体。 - + Length too small Length too small - + Second length too small Second length too small - + Failed to obtain profile shape Failed to obtain profile shape - + Creation failed because direction is orthogonal to sketch's normal vector Creation failed because direction is orthogonal to sketch's normal vector - + Extrude: Can only offset one face Extrude: Can only offset one face - + Creating a face from sketch failed Creating a face from sketch failed - + Up to face: Could not get SubShape! Up to face: Could not get SubShape! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees Magnitude of taper angle matches or exceeds 90 degrees - + Padding with draft angle failed Padding with draft angle failed @@ -4960,7 +4964,7 @@ Intersecting sketch entities in a sketch are not allowed. Error: Face must be planar - + Error: Result is not a solid @@ -4999,95 +5003,105 @@ Intersecting sketch entities in a sketch are not allowed. Error: Could not create face from sketch - + Hole error: Creating a face from sketch failed Hole error: Creating a face from sketch failed - + Hole error: Unsupported length specification Hole error: Unsupported length specification - + Hole error: Invalid hole depth Hole error: Invalid hole depth - + Hole error: Invalid taper angle Hole error: Invalid taper angle - + Hole error: Hole cut diameter too small Hole error: Hole cut diameter too small - + Hole error: Hole cut depth must be less than hole depth Hole error: Hole cut depth must be less than hole depth - + Hole error: Hole cut depth must be greater or equal to zero Hole error: Hole cut depth must be greater or equal to zero - + Hole error: Invalid countersink Hole error: Invalid countersink - + Hole error: Invalid drill point angle Hole error: Invalid drill point angle - + Hole error: Invalid drill point Hole error: Invalid drill point - + Hole error: Could not revolve sketch Hole error: Could not revolve sketch - + Hole error: Resulting shape is empty Hole error: Resulting shape is empty - + Error: Adding the thread failed Error: Adding the thread failed + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed 布尔操作失败 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. - + Thread type out of range Thread type out of range - + Thread size out of range Thread size out of range - + Error: Thread could not be built Error: Thread could not be built @@ -5112,7 +5126,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Failed to create shell - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. Could not create face from sketch. @@ -5354,7 +5368,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed.Reference axis is invalid - + Fusion with base feature failed Fusion with base feature failed diff --git a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts index 868a178c76..d099a02865 100644 --- a/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts +++ b/src/Mod/PartDesign/Gui/Resources/translations/PartDesign_zh-TW.ts @@ -93,37 +93,37 @@ so that self intersection is avoided. Module of the gear - Module of the gear + 齒輪模數 True=2 curves with each 3 control points, False=1 curve with 4 control points. - True=2 curves with each 3 control points, False=1 curve with 4 control points. + 設定 True=2 時,每條曲線有3個控制點;設定 False =1 時,每條曲線有4個控制點。 True=external Gear, False=internal Gear - True=external Gear, False=internal Gear + True=外齒輪,False=內齒輪 The height of the tooth from the pitch circle up to its tip, normalized by the module. - The height of the tooth from the pitch circle up to its tip, normalized by the module. + 齒輪的齒從節圓到齒尖的高度,按模數進行標準化。 The height of the tooth from the pitch circle down to its root, normalized by the module. - The height of the tooth from the pitch circle down to its root, normalized by the module. + 齒輪的齒從節圓到齒根的高度,按模數進行標準化。 The radius of the fillet at the root of the tooth, normalized by the module. - The radius of the fillet at the root of the tooth, normalized by the module. + 齒根處圓角的半徑,按模數進行標準化。 The distance by which the reference profile is shifted outwards, normalized by the module. - The distance by which the reference profile is shifted outwards, normalized by the module. + 參考輪廓向外移動的距離,按模數進行標準化。 @@ -442,12 +442,12 @@ so that self intersection is avoided. Move object to other body - 移動物件至其他物體 + 移動物件至其他主體 Moves the selected object to another body - 移動物件至另一物體 + 移動被選物件至另一主體 @@ -460,12 +460,12 @@ so that self intersection is avoided. Move object after other object - 移動物件至後 + 移動物件至其它物件後 Moves the selected object and insert it after another object - 插入物件至物體之後 + 移動選定的物件,並將其插入到另一個物件之後 @@ -695,7 +695,7 @@ so that self intersection is avoided. Sweep a selected sketch along a helix and remove it from the body - 沿著一個螺旋掃掠一個被選的草圖並將其自實體中移除 + 沿著一個螺旋掃掠一個被選的草圖並將其自主體中移除 @@ -883,18 +883,18 @@ so that self intersection is avoided. 建立一個副本 - + Make copy 製作拷貝 - + Create a Sketch on Face 在平面上建立草圖 - + Create a new Sketch 建立新草圖 @@ -917,7 +917,7 @@ so that self intersection is avoided. Migrate legacy Part Design features to Bodies - Migrate legacy Part Design features to Bodies + 將舊版零件設計功能遷移到主體中 @@ -1008,17 +1008,17 @@ so that self intersection is avoided. Edge tools - Edge tools + 邊緣工具 Boolean tools - Boolean tools + 布林工具 Helper tools - Helper tools + 輔助工具 @@ -1078,17 +1078,17 @@ so that self intersection is avoided. Addendum Coefficient - Addendum Coefficient + 齒冠係數 Dedendum Coefficient - Dedendum Coefficient + 齒根係數 Root Fillet Coefficient - Root Fillet Coefficient + 齒根圓角係數 @@ -1101,7 +1101,7 @@ so that self intersection is avoided. Active Body Required - 需要激活的實體 + 需要作業中的主體 @@ -1114,7 +1114,7 @@ Please select a body from below, or create a new body. Create new body - 建立新實體 + 建立新主體 @@ -1429,12 +1429,12 @@ If zero, it is equal to Radius2 Add body - 加入布林運算實體 + 加入主體 Remove body - 刪除布林運算實體 + 刪除主體 @@ -1566,24 +1566,24 @@ click again to end selection Empty chamfer created ! - Empty chamfer created ! + 已建立空倒角 ! PartDesignGui::TaskDlgBooleanParameters - + Empty body list - 清空本體清單 + 清空主體清單 - + The body list cannot be empty 物體列表不能空白 - + Boolean: Accept: Input error 布林值: 接受: 輸出錯誤 @@ -1612,7 +1612,7 @@ click again to end selection PartDesignGui::TaskDlgShapeBinder - + Input error 輸入錯誤 @@ -1695,13 +1695,13 @@ click again to end selection PartDesignGui::TaskExtrudeParameters - + No face selected 無選定之面 - + Face @@ -1711,48 +1711,48 @@ click again to end selection 移除 - + Preview 預覽 - + Select faces 選取面 - + No shape selected 無選取物件 - + Sketch normal 草圖法線 - + Face normal 面法線 - + Select reference... 選取參考... - - + + Custom direction 自訂方向 - + Click on a shape in the model - Click on a shape in the model + 點擊模型中的形狀 - + Click on a face in the model 點擊模型中的一個面 @@ -1817,7 +1817,7 @@ click again to end selection Belongs to another body - 屬於另一個實體 + 屬於另一個主體 @@ -1827,7 +1827,7 @@ click again to end selection Doesn't belong to any body - 不屬於任何實體 + 不屬於任何主體 @@ -1842,7 +1842,7 @@ click again to end selection Select attachment - Select attachment + 選擇附件 @@ -1878,7 +1878,7 @@ click again to end selection Empty fillet created! - Empty fillet created! + 已建立空倒圓角! @@ -2302,7 +2302,7 @@ click again to end selection Up to shape - Up to shape + 上升到形狀 @@ -2330,19 +2330,19 @@ click again to end selection Select shape - Select shape + 選擇形狀 Select all faces - Select all faces + 選擇所有面 Click button to enter selection mode, click again to end selection - Click button to enter selection mode, - click again to end selection + 點擊按鍵以進入選擇模式, +再點擊以結束選擇 @@ -2558,12 +2558,12 @@ measured along the specified direction Z - + Section orientation 輪廓圖方向 - + Remove 移除 @@ -2627,15 +2627,15 @@ measured along the specified direction 移除 - - + + Input error 輸入錯誤 - + No active body - 沒有活躍的實體 + 沒有作業中的主體 @@ -2671,12 +2671,12 @@ measured along the specified direction 清單可以通過拖曳來重新排序 - + Section transformation 輪廓圖轉換 - + Remove 移除 @@ -2726,7 +2726,7 @@ measured along the specified direction Up to shape - Up to shape + 上升到形狀 @@ -2855,7 +2855,7 @@ measured along the specified direction 2nd angle - 2nd angle + 第 2 角度 @@ -3044,71 +3044,71 @@ click again to end selection 移除 - + Normal sketch axis 垂直草圖軸 - + Vertical sketch axis 垂直草圖軸 - + Horizontal sketch axis 水平草圖軸 - - + + Construction line %1 結構線 %1: - + Base X axis 基本 X 軸 - + Base Y axis 物體原點的Y軸 - + Base Z axis Z 軸 - - + + Select reference... 選取參考... - + Base XY plane XY 平面 - + Base YZ plane YZ 平面 - + Base XZ plane XZ 平面 Transform body - Transform body + 變換主體 Transform tool shapes - Transform tool shapes + 變換工具形狀 @@ -3317,12 +3317,12 @@ click again to end selection Select body - 選擇物體 + 選擇主體 Select a body from the list - 從清單中選擇物體 + 從清單中選擇主體 @@ -3383,42 +3383,42 @@ click again to end selection 子形狀粘合劑 - + Several sub-elements selected 多個次元素被選取 - + You have to select a single face as support for a sketch! 您需要選擇單一面作為草圖之基準面! - + No support face selected 未選取基礎面 - + You have to select a face as support for a sketch! 您需要選擇一個面作為草圖之基準面! - + No planar support 無平面之基礎面 - + You need a planar face as support for a sketch! 您需要選取平面作為草圖之基準面! - + No valid planes in this document 在本文件的非法平面 - + Please create a plane first or select a face to sketch on 請先創建一個平面或選擇要在其上繪製草圖的面 @@ -3426,7 +3426,7 @@ click again to end selection - + @@ -3438,7 +3438,7 @@ click again to end selection - + @@ -3698,13 +3698,13 @@ This may lead to unexpected results. 如果沒有可用的基本特徵,則無法創建除料特徵 - + Vertical sketch axis 垂直草圖軸 - + Horizontal sketch axis 水平草圖軸 @@ -3730,7 +3730,7 @@ If you have a legacy document with PartDesign objects without Body, use the migr Active Body Required - 需要激活的實體 + 需要作業中的主體 @@ -3874,12 +3874,12 @@ This feature is broken and can't be edited. One transformed shape does not intersect the support - One transformed shape does not intersect the support + 一個變換後的形狀與支撐體不相交 %1 transformed shapes do not intersect the support - %1 transformed shapes do not intersect the support + %1 個變換後的形狀與支撐體不相交 @@ -3976,7 +3976,7 @@ Although you will be able to migrate any moment later with 'Part Design -> Mi Sprocket parameters - Sprocket parameters + 鏈輪參數 @@ -4151,12 +4151,12 @@ Although you will be able to migrate any moment later with 'Part Design -> Mi Chain Roller Diameter: - Chain Roller Diameter: + 鏈滾子直徑: Tooth Width: - Tooth Width: + 齒寬: @@ -4211,12 +4211,12 @@ Note that the calculation can take some time Update thread view - Update thread view + 更新螺紋視圖 Custom Clearance - Custom Clearance + 自訂間隙 @@ -4282,7 +4282,7 @@ Only available for holes without thread Drill Point - Drill Point + 鑽孔點 @@ -4347,7 +4347,7 @@ the screw's top below the surface Hole Cut Type - Hole Cut Type + 孔切割類型 @@ -4508,7 +4508,7 @@ over 90: larger hole radius at the bottom Creates or edit the involute gear definition. - Creates or edit the involute gear definition. + 建立或編輯漸開線齒輪定義。 @@ -4521,7 +4521,7 @@ over 90: larger hole radius at the bottom Creates or edit the sprocket definition. - Creates or edit the sprocket definition. + 建立或編輯鏈輪定義。 @@ -4610,17 +4610,17 @@ over 90: larger hole radius at the bottom Bearing - Bearing + 軸承 Gear - Gear + 齒輪 Pulley - Pulley + 滑輪 @@ -4682,7 +4682,7 @@ over 90: larger hole radius at the bottom Linked object is not a PartDesign feature - Linked object is not a PartDesign feature + 被鏈接物件不是零件設計特徵 @@ -4692,38 +4692,38 @@ over 90: larger hole radius at the bottom BaseFeature link is not set - BaseFeature link is not set + BaseFeature 連結未設置 BaseFeature must be a Part::Feature - BaseFeature must be a Part::Feature + BaseFeature 必須是一個 Part::Feature BaseFeature has an empty shape - BaseFeature has an empty shape + BaseFeature 有一個空形狀 Cannot do boolean cut without BaseFeature - Cannot do boolean cut without BaseFeature + 無法在沒有 BaseFeature 的情況下進行布林切割 Cannot do boolean with anything but Part::Feature and its derivatives - Cannot do boolean with anything but Part::Feature and its derivatives + 無法對除 Part::Feature 及其衍生物之外的任何物件進行布林運算 Cannot do boolean operation with invalid base shape - Cannot do boolean operation with invalid base shape + 無法對無效的基礎形狀進行布林運算 Cannot do boolean on feature which is not in a body - Cannot do boolean on feature which is not in a body + 無法對不在主體中的特徵進行布林操作 @@ -4739,22 +4739,21 @@ over 90: larger hole radius at the bottom Unsupported boolean operation - Unsupported boolean operation + 不支援的布林運算 - + - Resulting shape is not a solid 產成形狀不是固體 - - - + + + @@ -4762,7 +4761,7 @@ over 90: larger hole radius at the bottom - + Result has multiple solids: that is not currently supported. 產生形狀有多重(非相連)固體:目前尚未支援。 @@ -4786,7 +4785,7 @@ over 90: larger hole radius at the bottom No edges specified - No edges specified + 未指定邊緣 @@ -4811,7 +4810,7 @@ over 90: larger hole radius at the bottom Fillet not possible on selected shapes - Fillet not possible on selected shapes + 在被選的形狀上無法進行圓角處理 @@ -4829,7 +4828,7 @@ over 90: larger hole radius at the bottom 挖槽的角度太小 - + The requested feature cannot be created. The reason may be that: - the active Body does not contain a base shape, so there is no @@ -4840,76 +4839,81 @@ over 90: larger hole radius at the bottom - 所選擇的草圖不屬於活躍實體。 - + Length too small - Length too small + 長度太小 - + Second length too small - Second length too small + 第二長度太小 - + Failed to obtain profile shape - Failed to obtain profile shape + 無法獲取輪廓形狀 - + Creation failed because direction is orthogonal to sketch's normal vector - Creation failed because direction is orthogonal to sketch's normal vector + 建立失敗,因為方向與草圖的法向量正交 - + Extrude: Can only offset one face - Extrude: Can only offset one face + 拉伸:只能偏移一個面 - + Creating a face from sketch failed 由草圖建立面失敗 - + Up to face: Could not get SubShape! - Up to face: Could not get SubShape! + “到面”操作:無法獲取子形狀! - + + Unable to reach the selected shape, please select faces + Unable to reach the selected shape, please select faces + + + Magnitude of taper angle matches or exceeds 90 degrees - Magnitude of taper angle matches or exceeds 90 degrees + 錐度角的大小等於或超過 90 度 - + Padding with draft angle failed - Padding with draft angle failed + 帶有斜角的填充操作失敗 Revolve axis intersects the sketch - Revolve axis intersects the sketch + 旋轉軸與草圖相交 Could not revolve the sketch! - Could not revolve the sketch! + 無法旋轉草圖! Could not create face from sketch. Intersecting sketch entities in a sketch are not allowed. - Could not create face from sketch. -Intersecting sketch entities in a sketch are not allowed. + 無法從草圖建立面。 +草圖中不允許有相交的草圖實體。 Error: Pitch too small! - Error: Pitch too small! + 錯誤:螺距太小! @@ -4950,7 +4954,7 @@ Intersecting sketch entities in a sketch are not allowed. 錯誤:面必須為平面 - + Error: Result is not a solid @@ -4989,94 +4993,104 @@ Intersecting sketch entities in a sketch are not allowed. 錯誤:無法從草圖建立面 - + Hole error: Creating a face from sketch failed 挖孔錯誤:由草圖建立面失敗 - + Hole error: Unsupported length specification 挖孔錯誤:不支援的長度規格 - + Hole error: Invalid hole depth 挖孔錯誤:無效的孔深 - + Hole error: Invalid taper angle 挖孔錯誤:無效斜角 - + Hole error: Hole cut diameter too small 挖孔錯誤:挖孔直徑太小 - + Hole error: Hole cut depth must be less than hole depth 挖孔錯誤:孔的切割深度必須小於孔的深度 - + Hole error: Hole cut depth must be greater or equal to zero 挖孔錯誤:孔的切割深度必須大於或等於零 - + Hole error: Invalid countersink 挖孔錯誤:無效的埋頭孔 - + Hole error: Invalid drill point angle 挖孔錯誤:無效的鑽尖角度 - + Hole error: Invalid drill point 挖孔錯誤:無效的鑽尖 - + Hole error: Could not revolve sketch 挖孔錯誤:無法旋轉草圖 - + Hole error: Resulting shape is empty 挖孔錯誤:結果形狀為空 - + Error: Adding the thread failed 錯誤:添加螺旋失敗 + + + + Boolean operation failed on profile Edge + Boolean operation failed on profile Edge + + + + Boolean operation produced non-solid on profile Edge + Boolean operation produced non-solid on profile Edge + - Boolean operation failed 布林運算失敗 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed for making a pocket up to a face. 無法從草圖建立面。草圖實體的交叉或草圖中存在多個面不允許製作一個沖孔至一個面。 - + Thread type out of range 螺紋類型超出範圍 - + Thread size out of range 螺紋尺寸超出範圍 - + Error: Thread could not be built 錯誤:無法建立螺紋 @@ -5093,19 +5107,19 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed for m Loft: Creating a face from sketch failed - Loft: Creating a face from sketch failed + Loft 操作:從草圖建立面失敗 Loft: Failed to create shell - Loft: Failed to create shell + Loft 操作:建立外殼失敗 - + Could not create face from sketch. Intersecting sketch entities or multiple faces in a sketch are not allowed. - Could not create face from sketch. -Intersecting sketch entities or multiple faces in a sketch are not allowed. + 無法從草圖立建面。 +草圖中不允許有相交的實體或多個面。 @@ -5215,19 +5229,19 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Cannot subtract primitive feature without base feature - Cannot subtract primitive feature without base feature + 無法在沒有基礎特徵的情況下進行原始特徵的減法操作 Unknown operation type - Unknown operation type + 未知的運算類型 Failed to perform boolean operation - Failed to perform boolean operation + 執行布林運算失敗 @@ -5340,10 +5354,10 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Reference axis is invalid - Reference axis is invalid + 參考軸是無效的 - + Fusion with base feature failed 與基本特徵進行聯集失敗 @@ -5375,7 +5389,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Invalid face reference - Invalid face reference + 無效的面參考 @@ -5383,7 +5397,7 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Active body - Active body + 作業中的實體 @@ -5391,12 +5405,12 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Create datum - Create datum + 建立基準 Create a datum object or local coordinate system - Create a datum object or local coordinate system + 建立一個基準物件或是局部座標系統 @@ -5404,12 +5418,12 @@ Intersecting sketch entities or multiple faces in a sketch are not allowed. Create datum - Create datum + 建立基準 Create a datum object or local coordinate system - Create a datum object or local coordinate system + 建立一個基準物件或是局部座標系統 diff --git a/src/Mod/PartDesign/Gui/SketchWorkflow.cpp b/src/Mod/PartDesign/Gui/SketchWorkflow.cpp index 2901685df0..03ce5b52e0 100644 --- a/src/Mod/PartDesign/Gui/SketchWorkflow.cpp +++ b/src/Mod/PartDesign/Gui/SketchWorkflow.cpp @@ -45,6 +45,7 @@ #include #include +#include #include #include #include @@ -681,7 +682,13 @@ std::tuple SketchWorkflow::shouldCreateBody() // We need either an active Body, or for there to be no Body // objects (in which case, just make one) to make a new sketch. - PartDesign::Body* pdBody = PartDesignGui::getBody(/* messageIfNot = */ false); + // If we are inside a link, we need to use its placement. + App::DocumentObject *topParent; + PartDesign::Body *pdBody = PartDesignGui::getBody(/* messageIfNot = */ false, true, true, &topParent); + if (pdBody && topParent->isLink()) { + auto *xLink = dynamic_cast(topParent); + pdBody->Placement.setValue(xLink->Placement.getValue()); + } if (!pdBody) { if (appdocument->countObjectsOfType(PartDesign::Body::getClassTypeId()) == 0) { shouldMakeBody = true; diff --git a/src/Mod/PartDesign/Gui/TaskBooleanParameters.cpp b/src/Mod/PartDesign/Gui/TaskBooleanParameters.cpp index bfa1b30273..0f3689e1d6 100644 --- a/src/Mod/PartDesign/Gui/TaskBooleanParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskBooleanParameters.cpp @@ -84,7 +84,11 @@ TaskBooleanParameters::TaskBooleanParameters(ViewProviderBoolean* BooleanView, Q // Create context menu QAction* action = new QAction(tr("Remove"), this); - action->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + action->setShortcut(QKeySequence(shortcut)); + } #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry action->setShortcutVisibleInContextMenu(true); diff --git a/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp b/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp index a4827254cd..1aac210017 100644 --- a/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskDressUpParameters.cpp @@ -291,7 +291,11 @@ void TaskDressUpParameters::createDeleteAction(QListWidget* parentList) // creates a context menu, a shortcut for it and connects it to a slot function deleteAction = new QAction(tr("Remove"), this); - deleteAction->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + deleteAction->setShortcut(QKeySequence(shortcut)); + } #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry deleteAction->setShortcutVisibleInContextMenu(true); diff --git a/src/Mod/PartDesign/Gui/TaskExtrudeParameters.cpp b/src/Mod/PartDesign/Gui/TaskExtrudeParameters.cpp index 4b2ffdc46f..a4c1674505 100644 --- a/src/Mod/PartDesign/Gui/TaskExtrudeParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskExtrudeParameters.cpp @@ -174,7 +174,11 @@ void TaskExtrudeParameters::setupDialog() translateModeList(index); unselectShapeFaceAction = new QAction(tr("Remove"), this); - unselectShapeFaceAction->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + unselectShapeFaceAction->setShortcut(QKeySequence(shortcut)); + } #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry unselectShapeFaceAction->setShortcutVisibleInContextMenu(true); diff --git a/src/Mod/PartDesign/Gui/TaskLoftParameters.cpp b/src/Mod/PartDesign/Gui/TaskLoftParameters.cpp index 046417abf3..0bcb1b1eb4 100644 --- a/src/Mod/PartDesign/Gui/TaskLoftParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskLoftParameters.cpp @@ -72,7 +72,11 @@ TaskLoftParameters::TaskLoftParameters(ViewProviderLoft* LoftView, bool /*newObj // Create context menu QAction* remove = new QAction(tr("Remove"), this); - remove->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + remove->setShortcut(QKeySequence(shortcut)); + } #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry remove->setShortcutVisibleInContextMenu(true); diff --git a/src/Mod/PartDesign/Gui/TaskPipeParameters.cpp b/src/Mod/PartDesign/Gui/TaskPipeParameters.cpp index b794a8d78d..3f7034e83d 100644 --- a/src/Mod/PartDesign/Gui/TaskPipeParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskPipeParameters.cpp @@ -86,7 +86,11 @@ TaskPipeParameters::TaskPipeParameters(ViewProviderPipe* PipeView, bool /*newObj // Create context menu QAction* remove = new QAction(tr("Remove"), this); - remove->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + remove->setShortcut(QKeySequence(shortcut)); + } remove->setShortcutContext(Qt::WidgetShortcut); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry @@ -605,7 +609,11 @@ TaskPipeOrientation::TaskPipeOrientation(ViewProviderPipe* PipeView, // Create context menu QAction* remove = new QAction(tr("Remove"), this); - remove->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + remove->setShortcut(QKeySequence(shortcut)); + } remove->setShortcutContext(Qt::WidgetShortcut); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry @@ -894,7 +902,11 @@ TaskPipeScaling::TaskPipeScaling(ViewProviderPipe* PipeView, bool /*newObj*/, QW // Create context menu QAction* remove = new QAction(tr("Remove"), this); - remove->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + remove->setShortcut(QKeySequence(shortcut)); + } remove->setShortcutContext(Qt::WidgetShortcut); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry diff --git a/src/Mod/PartDesign/Gui/TaskShapeBinder.cpp b/src/Mod/PartDesign/Gui/TaskShapeBinder.cpp index eb969ce942..25d35426b4 100644 --- a/src/Mod/PartDesign/Gui/TaskShapeBinder.cpp +++ b/src/Mod/PartDesign/Gui/TaskShapeBinder.cpp @@ -128,7 +128,11 @@ void TaskShapeBinder::setupContextMenu() { // Create context menu QAction* remove = new QAction(tr("Remove"), this); - remove->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + remove->setShortcut(QKeySequence(shortcut)); + } remove->setShortcutContext(Qt::WidgetShortcut); #if QT_VERSION >= QT_VERSION_CHECK(5, 10, 0) // display shortcut behind the context menu entry diff --git a/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp b/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp index 0e11ca2596..57c7f2b9ba 100644 --- a/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp +++ b/src/Mod/PartDesign/Gui/TaskTransformedParameters.cpp @@ -102,7 +102,11 @@ void TaskTransformedParameters::setupUI() // Create context menu auto action = new QAction(tr("Remove"), this); - action->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + action->setShortcut(QKeySequence(shortcut)); + } // display shortcut behind the context menu entry action->setShortcutVisibleInContextMenu(true); ui->listWidgetFeatures->addAction(action); diff --git a/src/Mod/PartDesign/PartDesignTests/TestInvoluteGear.py b/src/Mod/PartDesign/PartDesignTests/TestInvoluteGear.py index ba83668bfd..1bb51ee447 100644 --- a/src/Mod/PartDesign/PartDesignTests/TestInvoluteGear.py +++ b/src/Mod/PartDesign/PartDesignTests/TestInvoluteGear.py @@ -34,8 +34,10 @@ FIXTURE_PATH = pathlib.Path(__file__).parent / "Fixtures" class TestInvoluteGear(unittest.TestCase): def setUp(self): self.Doc = FreeCAD.newDocument("PartDesignTestInvoluteGear") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") def tearDown(self): + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") FreeCAD.closeDocument(self.Doc.Name) def testDefaultGearProfile(self): diff --git a/src/Mod/PartDesign/PartDesignTests/TestMultiTransform.py b/src/Mod/PartDesign/PartDesignTests/TestMultiTransform.py index fa94affb15..5cbe2e93fc 100644 --- a/src/Mod/PartDesign/PartDesignTests/TestMultiTransform.py +++ b/src/Mod/PartDesign/PartDesignTests/TestMultiTransform.py @@ -30,6 +30,7 @@ App = FreeCAD class TestMultiTransform(unittest.TestCase): def setUp(self): self.Doc = FreeCAD.newDocument("PartDesignTestMultiTransform") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "True") def testMultiTransform(self): self.Body = self.Doc.addObject('PartDesign::Body','Body') @@ -137,5 +138,6 @@ class TestMultiTransform(unittest.TestCase): def tearDown(self): #closing doc FreeCAD.closeDocument("PartDesignTestMultiTransform") - # print ("omit closing document for debugging") + FreeCAD.ConfigSet("SuppressRecomputeRequiredDialog", "") + #print ("omit closing document for debugging") diff --git a/src/Mod/PartDesign/PartDesignTests/TestPad.py b/src/Mod/PartDesign/PartDesignTests/TestPad.py index 6cc89baff2..54c5e08a50 100644 --- a/src/Mod/PartDesign/PartDesignTests/TestPad.py +++ b/src/Mod/PartDesign/PartDesignTests/TestPad.py @@ -22,6 +22,7 @@ import unittest import FreeCAD +from FreeCAD import Base import TestSketcherApp class TestPad(unittest.TestCase): @@ -184,6 +185,80 @@ class TestPad(unittest.TestCase): self.Doc.recompute() self.assertAlmostEqual(self.Pad1.Shape.Volume, 4.0) + def testPadToConcaveCase(self): + self.Body = self.Doc.addObject('PartDesign::Body','Body') + # Make a half revolution + self.RevolutionSketch = self.Doc.addObject('Sketcher::SketchObject', 'SketchPad') + self.Body.addObject(self.RevolutionSketch) + TestSketcherApp.CreateRectangleSketch(self.RevolutionSketch, (9, 0), (10, 5)) + self.Doc.recompute() + self.Revolution = self.Doc.addObject("PartDesign::Revolution", "Revolution") + self.Body.addObject(self.Revolution) + self.Revolution.Profile = self.RevolutionSketch + self.Revolution.ReferenceAxis = (self.RevolutionSketch, ['V_Axis']) + self.Revolution.Angle = 180 + self.Doc.recompute() + # Make a sketch and pad to first + self.PadSketch = self.Doc.addObject('Sketcher::SketchObject', 'SketchPad') + self.Body.addObject(self.PadSketch) + self.Doc.recompute() + TestSketcherApp.CreateRectangleSketch(self.PadSketch, (0, 0), (1, 1)) + self.Doc.recompute() + self.Pad = self.Doc.addObject("PartDesign::Pad", "Pad") + self.Body.addObject(self.Pad) + self.Pad.Profile = self.PadSketch + self.Pad.Type = 2 + self.Pad.Reversed = True + self.Doc.recompute() + self.assertAlmostEqual(self.Pad.Shape.Volume, 2208.0963, places=4) + + def testPadToShapeCase(self): + self.Body = self.Doc.addObject('PartDesign::Body','Body') + # Make first offset cube Pad + self.PadSketch = self.Doc.addObject('Sketcher::SketchObject', 'SketchPad') + self.Body.addObject(self.PadSketch) + TestSketcherApp.CreateRectangleSketch(self.PadSketch, (0, 1), (1, 1)) + self.Doc.recompute() + self.Pad = self.Doc.addObject("PartDesign::Pad", "Pad") + self.Body.addObject(self.Pad) + self.Pad.Profile = self.PadSketch + self.Pad.Length = 1 + self.Doc.recompute() + # Make second pad on different plane and pad to first + self.PadSketch1 = self.Doc.addObject('Sketcher::SketchObject', 'SketchPad1') + self.Body.addObject(self.PadSketch1) + self.PadSketch1.MapMode = 'FlatFace' + self.PadSketch1.AttachmentSupport = (self.Doc.XZ_Plane, ['']) + self.PadSketch1.AttachmentOffset.Rotation.Axis = Base.Vector(0,1,0) + self.PadSketch1.AttachmentOffset.Rotation.Angle = 0.436332 # 25° + self.PadSketch1.AttachmentOffset.Base.z = 1 + self.Doc.recompute() + TestSketcherApp.CreateRectangleSketch(self.PadSketch1, (1, 0), (1, 1)) + self.Doc.recompute() + self.Pad1 = self.Doc.addObject("PartDesign::Pad", "Pad1") + self.Body.addObject(self.Pad1) + self.Pad1.Profile = self.PadSketch1 + self.Pad1.Type = 5 + self.Doc.recompute() + self.assertAlmostEqual(self.Pad1.Shape.Volume, 2.58787, places=4) + + def testPadToPlaneCustomDir(self): + self.Body = self.Doc.addObject('PartDesign::Body','Body') + # Make first offset cube Pad + self.PadSketch = self.Doc.addObject('Sketcher::SketchObject', 'SketchPad') + self.Body.addObject(self.PadSketch) + TestSketcherApp.CreateRectangleSketch(self.PadSketch, (0, 1), (1, 1)) + self.Doc.recompute() + self.Pad = self.Doc.addObject("PartDesign::Pad", "Pad") + self.Body.addObject(self.Pad) + self.Pad.Profile = self.PadSketch + self.Pad.Type = 3 + self.Doc.Pad.UseCustomVector = True + self.Doc.Pad.Direction = Base.Vector(0,1,1) + self.Pad.UpToFace = (self.Doc.XZ_Plane, ['']) + self.Doc.recompute() + self.assertAlmostEqual(self.Pad.Shape.Volume, 1.5) + def tearDown(self): #closing doc FreeCAD.closeDocument("PartDesignTestPad") 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 29484cd805..bdd272cc5b 100644 --- a/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts +++ b/src/Mod/ReverseEngineering/Gui/Resources/translations/ReverseEngineering_zh-TW.ts @@ -622,7 +622,7 @@ Continuity - Continuity + 連續性 diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_sr-CS.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_sr-CS.ts index e9f187737d..f0e35e0cff 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_sr-CS.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_sr-CS.ts @@ -434,7 +434,7 @@ You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Morate prelaziti preko geometrije (predizbora) sa mišem, da bi koristili ovu komandu. Pogledajte dokumentaciju za detalje. + Moraš lebdeti mišem iznad geometrije (Predizbor), da bi koristio ovu komandu. Pogledaj dokumentaciju za detalje. diff --git a/src/Mod/Robot/Gui/Resources/translations/Robot_sr.ts b/src/Mod/Robot/Gui/Resources/translations/Robot_sr.ts index 086db9ec54..2df62c1745 100644 --- a/src/Mod/Robot/Gui/Resources/translations/Robot_sr.ts +++ b/src/Mod/Robot/Gui/Resources/translations/Robot_sr.ts @@ -434,7 +434,7 @@ You have to hover above a geometry (Preselection) with the mouse to use this command. See documentation for details. - Морате прелазити преко геометрије (предизбора) cа мишем,да би кориcтили ову команду.Погледајте документацију за детаље. + Мораш лебдети мишем изнад геометрије (Предизбор), да би користио ову команду. Погледај документацију за детаље. diff --git a/src/Mod/Sketcher/App/SketchObject.cpp b/src/Mod/Sketcher/App/SketchObject.cpp index 7acdc2b6f3..55402c291f 100644 --- a/src/Mod/Sketcher/App/SketchObject.cpp +++ b/src/Mod/Sketcher/App/SketchObject.cpp @@ -156,6 +156,7 @@ SketchObject::SketchObject() (App::PropertyType)(App::Prop_None), "Tolerance for fitting arcs of projected external geometry"); geoLastId = 0; + geoHistoryLevel = 1; ADD_PROPERTY(InternalShape, (Part::TopoShape())); @@ -265,9 +266,11 @@ App::DocumentObjectExecReturn* SketchObject::execute() Constraints.acceptGeometry(getCompleteGeometry()); } catch (const Base::Exception& e) { - Base::Console().Error("%s\nClear constraints to external geometry\n", e.what()); + // 9/16/24: We used to clear the constraints here, but we no longer want to do that + // as missing reference geometry is not considered an error while we sort out sketcher UI. + // Base::Console().Error("%s\nClear constraints to external geometry\n", e.what()); // we cannot trust the constraints of external geometries, so remove them - delConstraintsToExternal(); + // delConstraintsToExternal(); } // This includes a regular solve including full geometry update, except when an error @@ -330,10 +333,8 @@ void SketchObject::buildShape() { int idx = getVertexIndexGeoPos(geoId -1, Sketcher::PointPos::start); std::string name = convertSubName(Data::IndexedName::fromConst("Vertex", idx+1), false); if (!vertex.hasElementMap()) { - // TODO: Eventually this will likely be made obsolete, when TopoShapes always have an element map vertex.resetElementMap(std::make_shared()); - } - vertex.setElementName(Data::IndexedName::fromConst("Vertex", 1), + } vertex.setElementName(Data::IndexedName::fromConst("Vertex", 1), Data::MappedName::fromRawData(name.c_str()),0L); vertices.push_back(vertex); vertices.back().copyElementMap(vertex, Part::OpCodes::Sketch); @@ -372,21 +373,17 @@ void SketchObject::buildShape() { } else { std::vector results; if (!shapes.empty()) { - // This call of makeElementWires() does not have the op code, in order to - // avoid duplication. Because we'll going to make a compound (to - // include the vertices) below with the same op code. - // // Note, that we HAVE TO add the Part::OpCodes::Sketch op code to all // geometry exposed through the Shape property, because // SketchObject::getElementName() relies on this op code to // differentiate geometries that are exposed with those in edit // mode. - auto wires = Part::TopoShape().makeElementWires(shapes); + auto wires = Part::TopoShape().makeElementWires(shapes, Part::OpCodes::Sketch); for (const auto &wire : wires.getSubTopoShapes(TopAbs_WIRE)) results.push_back(wire); } results.insert(results.end(), vertices.begin(), vertices.end()); - result.makeElementCompound(results, Part::OpCodes::Sketch); + result.makeElementCompound(results); } result.Tag = getID(); InternalShape.setValue(buildInternals(result.located(TopLoc_Location()))); diff --git a/src/Mod/Sketcher/Gui/EditModeGeometryCoinManager.cpp b/src/Mod/Sketcher/Gui/EditModeGeometryCoinManager.cpp index 72912cfb53..02ba759674 100644 --- a/src/Mod/Sketcher/Gui/EditModeGeometryCoinManager.cpp +++ b/src/Mod/Sketcher/Gui/EditModeGeometryCoinManager.cpp @@ -44,6 +44,7 @@ #include "EditModeGeometryCoinConverter.h" #include "EditModeGeometryCoinManager.h" #include "ViewProviderSketchCoinAttorney.h" +#include "Mod/Sketcher/App/ExternalGeometryFacade.h" using namespace SketcherGui; @@ -414,7 +415,15 @@ void EditModeGeometryCoinManager::updateGeometryColor(const GeoListFacade& geoli } } else if (geometryLayerParameters.isExternalSubLayer(t)) { - color[i] = drawingParameters.CurveExternalColor; + auto geom = geolistfacade.getGeometryFacadeFromGeoId(GeoId); + auto egf = ExternalGeometryFacade::getFacade(geom->clone()); + auto ref = egf->getRef(); + if (egf->testFlag(ExternalGeometryExtension::Missing)) { + color[i] = drawingParameters.InvalidSketchColor; + } + else { + color[i] = drawingParameters.CurveExternalColor; + } for (int k = j; j < k + indexes; j++) { verts[j].getValue(x, y, z); verts[j] = SbVec3f(x, y, viewOrientationFactor * zExtLine); diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher.ts index 9641dedfb2..ed5d3d6f77 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher.ts @@ -2046,22 +2046,22 @@ invalid constraints, degenerated geometry, etc. - + Drag Point - + Drag Curve - + Drag Constraint - + Modify sketch constraints @@ -2138,59 +2138,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. - + You are requesting no change in knot multiplicity. - - + + B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. - + The multiplicity cannot be decreased beyond zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. - + Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. @@ -4606,16 +4606,16 @@ However, no constraints linking to the endpoints were found. - - - - - - - - - - + + + + + + + + + + Construction @@ -4625,101 +4625,101 @@ However, no constraints linking to the endpoints were found. - - - - + + + + Point - - - - - - - - - - + + + + + + + + + + Internal - - - - + + + + Line - - - - + + + + Arc - - - - + + + + Circle - - - - + + + + Ellipse - - - - + + + + Elliptical Arc - - - - + + + + Hyperbolic Arc - - - - + + + + Parabolic Arc - - - - + + + + B-spline - - - - + + + + Other - + Extended information @@ -4938,119 +4938,119 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch - + A dialog is already open in the task panel - + Do you want to close this dialog? - + Invalid sketch - + Do you want to open the sketch validation tool? - + The sketch is invalid and cannot be edited. - + Please remove the following constraint: - + Please remove at least one of the following constraints: - + Please remove the following redundant constraint: - + Please remove the following redundant constraints: - + The following constraint is partially redundant: - + The following constraints are partially redundant: - + Please remove the following malformed constraint: - + Please remove the following malformed constraints: - + Empty sketch - + Over-constrained: - + Malformed constraints: - + Redundant constraints: - + Partially redundant: - + Solver failed to converge - + Under-constrained: - + %n DoF(s) - + Fully constrained @@ -5686,7 +5686,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more @@ -5902,17 +5902,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6524,32 +6524,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height - + Center, width, height - + 3 corners - + Center, 2 corners - + Rounded corners (U) - + Create a rectangle with rounded corners. @@ -6557,12 +6557,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) - + Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_be.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_be.ts index 82dd36fe83..411790a786 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_be.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_be.ts @@ -2051,22 +2051,22 @@ invalid constraints, degenerated geometry, etc. Пераназваць абмежаванні эскізу - + Drag Point Перацягнуць кропку - + Drag Curve Перацягнуць крывую - + Drag Constraint Перацягнуць абмежаванні - + Modify sketch constraints Змяніць абмежаванні эскізу @@ -2143,59 +2143,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Немагчыма разлічыць скрыжаванне крывых. Паспрабуйце дадаць абмежаванні супадзенняў паміж вяршынямі крывых, якія вы збіраецеся акругліць. - + You are requesting no change in knot multiplicity. Вы не запытваеце аніякіх зменах у кратнасці вузлоў. - - + + B-spline Geometry Index (GeoID) is out of bounds. Ідэнтыфікатар геаметрыі B-сплайна (GeoID) знаходзіцца за межамі дапушчальных значэнняў. - - + + The Geometry Index (GeoId) provided is not a B-spline. Ідэнтыфікатар геаметрыі (GeoId) не з'яўляецца крывой B-сплайна. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Індэкс вузла знаходзіцца за межамі дапушчальных значэнняў. Звярніце ўвагу, што ў адпаведнасці з назначэннем OCC першы вузел мае індэкс 1, а не 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. Кратнасць не можа быць павялічана звыш ступені B-сплайна. - + The multiplicity cannot be decreased beyond zero. Кратнасць не можа быць паменшана ніжэй за 0. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OpenCASCADE не можа паменшыць кратнасць у межах найбольшай дакладнасці. - + Knot cannot have zero multiplicity. Вузел не можа мець нулявую кратнасць. - + Knot multiplicity cannot be higher than the degree of the B-spline. Кратнасць вузла не можа быць вышэй ступені B-сплайна. - + Knot cannot be inserted outside the B-spline parameter range. Вузел не можа быць устаўлены за межы дыяпазону наладаў B-сплайна. @@ -4642,16 +4642,16 @@ However, no constraints linking to the endpoints were found. Налады - - - - - - - - - - + + + + + + + + + + Construction Будаўнічы @@ -4661,101 +4661,101 @@ However, no constraints linking to the endpoints were found. Элементы - - - - + + + + Point Кропка - - - - - - - - - - + + + + + + + + + + Internal Унутраны - - - - + + + + Line Лінія - - - - + + + + Arc Дуга - - - - + + + + Circle Акружнасць - - - - + + + + Ellipse Эліпс - - - - + + + + Elliptical Arc Эліптычная дуга - - - - + + + + Hyperbolic Arc Гіпербалічная дуга - - - - + + + + Parabolic Arc Парабалічная дуга - - - - + + + + B-spline B-сплайн - - - - + + + + Other Іншы - + Extended information Пашыраная інфармацыя @@ -4976,112 +4976,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Змяніць эскіз - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Хібны эскіз - + Do you want to open the sketch validation tool? Адчыніць інструмент праверкі эскіза? - + The sketch is invalid and cannot be edited. Эскіз хібны і не можа быць зменены. - + Please remove the following constraint: Калі ласка, выдаліце наступнае абмежаванне: - + Please remove at least one of the following constraints: Калі ласка, выдаліце, прынамсі, адное з наступных абмежаванняў: - + Please remove the following redundant constraint: Калі ласка, выдаліце наступнае залішняе абмежаванне: - + Please remove the following redundant constraints: Калі ласка, выдаліце наступныя залішнія абмежаванні: - + The following constraint is partially redundant: Наступнае абмежаванне часткова залішняе: - + The following constraints are partially redundant: Наступныя абмежаванні часткова залішнія: - + Please remove the following malformed constraint: Калі ласка, выдаліце наступнае скажонае абмежаванне: - + Please remove the following malformed constraints: Калі ласка, выдаліце наступныя скажоныя абмежаванні: - + Empty sketch Пусты эскіз - + Over-constrained: Празмерна-абмежаваны: - + Malformed constraints: Скажоныя абмежаванні: - + Redundant constraints: Залішнія абмежаванні: - + Partially redundant: Часткова залішнія: - + Solver failed to converge Сродку рашэння не атрымалася сысціся - + Under-constrained: Недастаткова абмежаваны: - + %n DoF(s) %n ступені свабоды @@ -5091,7 +5091,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Цалкам абмежаваны @@ -5735,7 +5735,7 @@ Eigen Sparse QR - аптымізаваны для разрэджаных мат ViewProviderSketch - + and %1 more і яшчэ %1 @@ -5953,17 +5953,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! Эскіз мае скажоныя абмежаванні! - + The Sketch has partially redundant constraints! Эскіз мае часткова залішнія абмежаванні! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Парабалы былі перанесены. Перанесеныя файлы не будуць адчыняцца ў папярэдніх версіях FreeCAD!! @@ -6591,32 +6591,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Кут, шырыня, вышыня - + Center, width, height Цэнтральная кропка, шырыня, вышыня - + 3 corners Тры кута - + Center, 2 corners Цэнтральная кропка, два кута - + Rounded corners (U) Закруглены куты (U) - + Create a rectangle with rounded corners. Стварыць прастакутнік з закругленымі кутамі. @@ -6624,12 +6624,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Каркас (J) - + Create two rectangles with a constant offset. Стварыце два прастакутніка з пастаянным зрушэннем. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ca.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ca.ts index 719123c55d..7d6ff7b1c7 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ca.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ca.ts @@ -2053,22 +2053,22 @@ restriccions invàlides, geometries degenerades, etc. Reanomena restricció del croquis - + Drag Point Arrossega el punt - + Drag Curve Arrossega la corba - + Drag Constraint Arrossega la restricció - + Modify sketch constraints Modifica les restriccions del croquis @@ -2080,7 +2080,7 @@ restriccions invàlides, geometries degenerades, etc. Offset - Equidistancia (ofset) + Equidistància @@ -2145,59 +2145,59 @@ restriccions invàlides, geometries degenerades, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. No es pot esbrinar la intersecció de corbes. Proveu d'afegir una restricció de coincidència entre els vèrtexs de les corbes que intenteu arrodonir. - + You are requesting no change in knot multiplicity. Se us ha demanat que no canvieu la multiplicitat del nus. - - + + B-spline Geometry Index (GeoID) is out of bounds. L'índex de geometria B-spline (GeoID) està fora de límits. - - + + The Geometry Index (GeoId) provided is not a B-spline. L'índex de geometria (GeoId) proporcionada no és una B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. L'índex del nus és fora dels límits. Tingueu en compte que d'acord amb la notació d'OCC, el primer nus té l'índex 1 i no zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. La multiplicitat no pot augmentar més enllà del grau de la B-spline. - + The multiplicity cannot be decreased beyond zero. La multiplicitat no es pot reduir més enllà de zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC no pot reduir la multiplicitat dins de la tolerància màxima. - + Knot cannot have zero multiplicity. El node no pot tenir multiplicitat zero. - + Knot multiplicity cannot be higher than the degree of the B-spline. La multiplicitat de nodes no pot ser superior al grau de la B-Spline. - + Knot cannot be inserted outside the B-spline parameter range. El node no es pot inserir fora de l'interval de paràmetres B-spline. @@ -3167,7 +3167,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Offset parameters - Paràmetres de desplaçament + Paràmetres d'equidistància @@ -4629,16 +4629,16 @@ However, no constraints linking to the endpoints were found. Paràmetres - - - - - - - - - - + + + + + + + + + + Construction Construcció @@ -4648,101 +4648,101 @@ However, no constraints linking to the endpoints were found. Elements - - - - + + + + Point Punt - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Línia - - - - + + + + Arc Arc - - - - + + + + Circle Cercle - - - - + + + + Ellipse El·lipse - - - - + + + + Elliptical Arc Arc el·líptic - - - - + + + + Hyperbolic Arc Arc hiperbòlic - - - - + + + + Parabolic Arc Arc parabòlic - - - - + + + + B-spline B-spline - - - - + + + + Other Altres - + Extended information Informació ampliada @@ -4963,114 +4963,114 @@ Això es fa mitjançant l'anàlisi de les geometries i restriccions de l'esbós. SketcherGui::ViewProviderSketch - + Edit sketch Editar croquis - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch El croquis no és vàlid - + Do you want to open the sketch validation tool? Voleu obrir l'eina de validació d'esbossos? - + The sketch is invalid and cannot be edited. El croquis no és vàlid i no es pot editar. - + Please remove the following constraint: Suprimiu la restricció següent: - + Please remove at least one of the following constraints: Suprimiu almenys una de les restriccions següents: - + Please remove the following redundant constraint: Suprimiu la restricció redundant següent: - + Please remove the following redundant constraints: Suprimiu les restriccions redundants següents: - + The following constraint is partially redundant: La restricció següent és parcialment redundant: - + The following constraints are partially redundant: Les següents restriccions són parcialment redundants: - + Please remove the following malformed constraint: Si us plau, elimineu la restricció defectuosa següent: - + Please remove the following malformed constraints: Si us plau, elimineu les restriccions defectuoses següents: - + Empty sketch Croquis buit - + Over-constrained: Sobre-restringit: - + Malformed constraints: Restriccions mal formades: - + Redundant constraints: Restriccions redundants: - + Partially redundant: Parcialment redundant: - + Solver failed to converge El solucionador no ha pogut convergir - + Under-constrained: Sub-restringit: - + %n DoF(s) %n Grau(s) de llibertat @@ -5078,7 +5078,7 @@ El solucionador no ha pogut convergir - + Fully constrained Esbós completament restringit @@ -5721,7 +5721,7 @@ L'algoritme Eigen Sparse QR està optimitzat per a matrius escasses; generalment ViewProviderSketch - + and %1 more i % 1 més @@ -5939,17 +5939,17 @@ L'espaiat de la quadrícula canvia si esdevé menor que aquest número de píxel Notifications - + The Sketch has malformed constraints! El croquis té restriccions defectuoses! - + The Sketch has partially redundant constraints! El croquis té restriccions parcialment redundants! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! S'han migrat les paràboles. Els arxius migrats no s'obriran en versions prèvies de FreeCAD!! @@ -6186,7 +6186,7 @@ L'espaiat de la quadrícula canvia si esdevé menor que aquest número de píxel Offset value can't be 0. - El valor de desplaçament no pot ser 0. + El valor d'equidistància no pot ser 0. @@ -6560,38 +6560,38 @@ En el seu lloc, s'aplicaran restriccions d'igualtat entre els objectes originals Add offset constraint (J) - Afegir restricció de desplaçament (J) + Afegir restricció d'equidistància (J) TaskSketcherTool_c1_rectangle - + Corner, width, height Cantonada, amplada, alçada - + Center, width, height Centre, amplada, alçada - + 3 corners 3 cantonades - + Center, 2 corners Centre, 2 cantonades - + Rounded corners (U) Cantonades arrodonides (U) - + Create a rectangle with rounded corners. Crea un rectangle amb cantonades arrodonides. @@ -6599,14 +6599,14 @@ En el seu lloc, s'aplicaran restriccions d'igualtat entre els objectes originals TaskSketcherTool_c2_rectangle - + Frame (J) Marc (J) - + Create two rectangles with a constant offset. - Crea dos rectangles amb un desplaçament constant. + Crea dos rectangles amb una equidistància constant. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts index 02fe91f909..1c78360e98 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_cs.ts @@ -2054,22 +2054,22 @@ neplatných vazeb, degenerované geometrie atd. Přejmenovat vazbu náčrtu - + Drag Point Přetáhnout bod - + Drag Curve Přetáhnout křivku - + Drag Constraint Přetáhnout vazbu - + Modify sketch constraints Upravit vazby náčrtu @@ -2146,59 +2146,59 @@ neplatných vazeb, degenerované geometrie atd. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nelze odhadnout průsečík křivek. Zkuste přidat vazbu totožnosti mezi vrcholy křivek, které chcete zaoblit. - + You are requesting no change in knot multiplicity. Nepožadujete změnu v násobnosti uzlů. - - + + B-spline Geometry Index (GeoID) is out of bounds. Geometrický index (GeoID) B-splajnu je mimo meze. - - + + The Geometry Index (GeoId) provided is not a B-spline. Daný geometrický index (GeoId) není B-splajna. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Index uzlu je mimo hranice. Všimněte si, že v souladu s OCC zápisem je index prvního uzlu 1 a ne 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. Násobnost nemůže být zvýšena nad stupeň B-splajnu. - + The multiplicity cannot be decreased beyond zero. Násobnost nemůže být snížena pod nulu. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC není schopno snížit násobnost na maximální toleranci. - + Knot cannot have zero multiplicity. Uzel nemůže mít nulovou násobnost. - + Knot multiplicity cannot be higher than the degree of the B-spline. Násobnost uzlu nemůže být vyšší než stupeň B-splajnu. - + Knot cannot be inserted outside the B-spline parameter range. Nelze vložit uzel mimo rozsah parametrů B-splajnu. @@ -4643,16 +4643,16 @@ Nebyly nalezeny vazby připojené k těmto koncovým bodům. Nastavení - - - - - - - - - - + + + + + + + + + + Construction Konstrukce @@ -4662,101 +4662,101 @@ Nebyly nalezeny vazby připojené k těmto koncovým bodům. Elementy - - - - + + + + Point Bod - - - - - - - - - - + + + + + + + + + + Internal Interní - - - - + + + + Line Čára - - - - + + + + Arc Oblouk - - - - + + + + Circle Kruh - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Eliptický oblouk - - - - + + + + Hyperbolic Arc Hyperbolický oblouk - - - - + + + + Parabolic Arc Parabolický oblouk - - - - + + + + B-spline B-splajn - - - - + + + + Other Jiný - + Extended information Rozšířené informace @@ -4977,112 +4977,112 @@ Toto se provádí analýzou geometrií a vazeb náčrtu. SketcherGui::ViewProviderSketch - + Edit sketch Upravit náčrt - + A dialog is already open in the task panel Dialog je opravdu otevřen v panelu úloh - + Do you want to close this dialog? Chcete zavřít tento dialog? - + Invalid sketch Neplatný náčrt - + 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. Náčrt není platný a nemůže být upravován. - + Please remove the following constraint: Odstraňte, prosím, následující vazbu: - + Please remove at least one of the following constraints: Odstraňte, prosím, alespoň jednu z následujících vazeb: - + Please remove the following redundant constraint: Odstraňte, prosím, následující nadbytečnou vazbu: - + Please remove the following redundant constraints: Odstraňte, prosím, následující nadbytečné vazby: - + The following constraint is partially redundant: Toto omezení je částečně nadbytečné: - + The following constraints are partially redundant: Tato omezení jsou částečně nadbytečná: - + Please remove the following malformed constraint: Odstraňte prosím tuto poškozenou vazbu: - + Please remove the following malformed constraints: Odstraňte prosím tyto poškozené vazby: - + Empty sketch Prázdný náčrt - + Over-constrained: Převazbené: - + Malformed constraints: Poškozené vazby: - + Redundant constraints: Nadbytečné vazby: - + Partially redundant: Částečně nadbytečné: - + Solver failed to converge Řešič nezkonvergoval - + Under-constrained: Nedostatečně omezený: - + %n DoF(s) %n Stupeň Volnosti(s) @@ -5093,7 +5093,7 @@ Toto se provádí analýzou geometrií a vazeb náčrtu. - + Fully constrained Plně zavazbené @@ -5736,7 +5736,7 @@ Eigen Sparse QR algoritmus je optimalizován pro řídké matrice; obvykle rychl ViewProviderSketch - + and %1 more a %1 další @@ -5954,17 +5954,17 @@ Rozteč mřížky se změní, pokud bude menší než tento počet pixelů. Notifications - + The Sketch has malformed constraints! Náčrt má poškozené vazby! - + The Sketch has partially redundant constraints! Náčrt má částečně nadbytečné vazby! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Paraboly byly migrovány. Migrované soubory se v předchozích verzích FreeCADu neotevřou!! @@ -6581,32 +6581,32 @@ Místo toho jsou mezi původními objekty a jejich kopiemi aplikovány vazby sho TaskSketcherTool_c1_rectangle - + Corner, width, height Roh, šířka, výška - + Center, width, height Střed, šířka, výška - + 3 corners 3 rohy - + Center, 2 corners Střed, 2 rohy - + Rounded corners (U) Zaoblené rohy (U) - + Create a rectangle with rounded corners. Vytvoří obdélník se zaoblenými rohy. @@ -6614,12 +6614,12 @@ Místo toho jsou mezi původními objekty a jejich kopiemi aplikovány vazby sho TaskSketcherTool_c2_rectangle - + Frame (J) Rám (J) - + Create two rectangles with a constant offset. Vytvoří dva obdélníky s konstantním odsazením. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_da.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_da.ts index 7ee7f79191..d860aaeec2 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_da.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_da.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Omdøb skitserelation - + Drag Point Drag Point - + Drag Curve Drag Curve - + Drag Constraint Drag Constraint - + Modify sketch constraints Tilpas skitserelationer @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Kan ikke beregne skæringspunktet mellem kurverne. Prøv at tilføje en sammenfaldende relation mellem knudepunkterne for de kanter, du har til hensigt at afrunde. - + You are requesting no change in knot multiplicity. You are requesting no change in knot multiplicity. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. The multiplicity cannot be increased beyond the degree of the B-spline. - + The multiplicity cannot be decreased beyond zero. The multiplicity cannot be decreased beyond zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC is unable to decrease the multiplicity within the maximum tolerance. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4648,16 +4648,16 @@ However, no constraints linking to the endpoints were found. Settings - - - - - - - - - - + + + + + + + + + + Construction Byggeri @@ -4667,101 +4667,101 @@ However, no constraints linking to the endpoints were found. Elementer - - - - + + + + Point Point - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Linje - - - - + + + + Arc Cirkelbue - - - - + + + + Circle Cirkel - - - - + + + + Ellipse Ellipse - - - - + + + + Elliptical Arc Ellipsebue - - - - + + + + Hyperbolic Arc Hyperbol - - - - + + + + Parabolic Arc Parabol - - - - + + + + B-spline B-spline - - - - + + + + Other Andet - + Extended information Udvidet information @@ -4982,112 +4982,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Rediger skitse - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Invalid sketch - + 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. - + Please remove the following constraint: Fjern venligst følgende begrænsning: - + Please remove at least one of the following constraints: Fjern mindst en af følgende begrænsninger: - + Please remove the following redundant constraint: Fjern venligst følgende overflødige begrænsning: - + Please remove the following redundant constraints: Fjern venligst følgende overflødige relationer: - + The following constraint is partially redundant: Følgende relation er delvis overflødig: - + The following constraints are partially redundant: Følgende relationer er delvis overflødige: - + Please remove the following malformed constraint: Fjern venligst følgende fejlbehæftede relationer: - + Please remove the following malformed constraints: Fjern venligst følgende fejlbehæftede relationer: - + Empty sketch Tom skitse - + Over-constrained: Mere end fuldstændigt låst: - + Malformed constraints: Fejlbehæftede relationer: - + Redundant constraints: Overflødige relationer: - + Partially redundant: Delvis overflødig: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5095,7 +5095,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fuldstændigt låst @@ -5739,7 +5739,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more og %1 mere @@ -5957,17 +5957,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! Skitsen indeholder fejlbehæftede relationer! - + The Sketch has partially redundant constraints! Skitsen indeholder delvist overflødige relationer! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6584,32 +6584,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Hjørne, bredde, højde - + Center, width, height Center, bredde, højde - + 3 corners 3 hjørner - + Center, 2 corners Center, 2 hjørner - + Rounded corners (U) Afrundede hjørner (U) - + Create a rectangle with rounded corners. Opret et rektangel med afrundede hjørner. @@ -6617,12 +6617,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Opret to rektangler med en konstant forskydning. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts index 79b9245919..37445c1f04 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_de.ts @@ -2055,22 +2055,22 @@ ungültiger Randbedingungen, degenerierter Geometrien usw. Sketcher-Randbedingung umbenannt - + Drag Point Punkt ziehen - + Drag Curve Kurve ziehen - + Drag Constraint Randbedingung ziehen - + Modify sketch constraints Sketcher-Randbedingung geändert @@ -2147,59 +2147,59 @@ ungültiger Randbedingungen, degenerierter Geometrien usw. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Der Schnittpunkt der Kurven kann nicht ermittelt werden. Die Randbedingung Koinzidenz festlegen, angewendet auf die Endpunkte der Kurven, die verrundet werden sollen, kann hier helfen. - + You are requesting no change in knot multiplicity. Es wird keine Änderung in der Vielfachheit der Knoten gefordert. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-Spline Geometrie Index (GeoID) ist außerhalb des gültigen Bereichs. - - + + The Geometry Index (GeoId) provided is not a B-spline. Der bereitgestellte Geometrieindex (GeoId) ist keine B-Spline-Kurve. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Der Knotenindex ist außerhalb der Grenzen. Beachten, dass der erste Knoten gemäß der OCC-Notation den Index 1 und nicht Null hat. - + The multiplicity cannot be increased beyond the degree of the B-spline. Die Vielfachheit kann nicht über den Grad des B-Splines hinaus erhöht werden. - + The multiplicity cannot be decreased beyond zero. Die Vielfachheit kann nicht über Null hinaus verringert werden. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC kann die Multiplizität innerhalb der maximalen Toleranz nicht verringern. - + Knot cannot have zero multiplicity. Ein Knoten kann nicht die Vielfachheit Null haben. - + Knot multiplicity cannot be higher than the degree of the B-spline. Die Vielfachheit kann nicht höher als der Grad des B-Splines sein. - + Knot cannot be inserted outside the B-spline parameter range. Knoten kann nicht außerhalb des B-Spline-Parameterbereichs eingefügt werden. @@ -4644,16 +4644,16 @@ Es wurden keine Randbedingungen zu diesen Punkten gefunden. Einstellungen - - - - - - - - - - + + + + + + + + + + Construction Konstruktion @@ -4663,101 +4663,101 @@ Es wurden keine Randbedingungen zu diesen Punkten gefunden. Elemente - - - - + + + + Point Punkt - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Linie - - - - + + + + Arc Kreisbogen - - - - + + + + Circle Kreis - - - - + + + + Ellipse Ellipse - - - - + + + + Elliptical Arc Elliptischer Bogen - - - - + + + + Hyperbolic Arc Hyperbolischer Bogen - - - - + + + + Parabolic Arc Parabolischer Bogen - - - - + + + + B-spline B-Spline - - - - + + + + Other Andere - + Extended information Erweiterte Informationen @@ -4978,112 +4978,112 @@ Dies erfolgt durch Analyse der Skizzengeometrien und Randbedingungen. SketcherGui::ViewProviderSketch - + Edit sketch Skizze bearbeiten - + A dialog is already open in the task panel Ein Dialog im Arbeitspanel ist bereits geöffnet - + Do you want to close this dialog? Soll dieser Dialog geschlossen werden? - + Invalid sketch Ungültige Skizze - + Do you want to open the sketch validation tool? Soll das Werkzeug zum Überprüfen der Skizze geöffnet werden? - + The sketch is invalid and cannot be edited. Die Skizze ist ungültig und kann nicht bearbeitet werden. - + Please remove the following constraint: Bitte folgende Randbedingungen entfernen: - + Please remove at least one of the following constraints: Bitte mindestens eine der folgenden Randbedingungen entfernen: - + Please remove the following redundant constraint: Bitte folgende redundante Randbedingungen entfernen: - + Please remove the following redundant constraints: Bitte folgende, redundante Randbedingungen entfernen: - + The following constraint is partially redundant: Die folgende Randbedingung ist teilweise überflüssig: - + The following constraints are partially redundant: Die folgenden Randbedingungen sind teilweise überflüssig: - + Please remove the following malformed constraint: Bitte folgende fehlerhafte Beschränkung entfernen: - + Please remove the following malformed constraints: Bitte folgende fehlerhafte Randbedingungen entfernen: - + Empty sketch Leere Skizze - + Over-constrained: Überbestimmt: - + Malformed constraints: Fehlerhafte Randbedingungen: - + Redundant constraints: Überflüssige Randbedingungen: - + Partially redundant: Teilweise redundant: - + Solver failed to converge Der Gleichungslöser konnte keine Lösung annähern - + Under-constrained: Unterbestimmt: - + %n DoF(s) %n Freiheitsgrad @@ -5091,7 +5091,7 @@ Dies erfolgt durch Analyse der Skizzengeometrien und Randbedingungen. - + Fully constrained Vollständig bestimmt @@ -5734,7 +5734,7 @@ Eigen Sparse QR ein Algorithmus, der für dünn besetzte Matrizen optimiert ist; ViewProviderSketch - + and %1 more und %1 mehr @@ -5952,17 +5952,17 @@ Die Rasterweite ändert sich, wenn er kleiner als diese Anzahl von Pixeln wird.< Notifications - + The Sketch has malformed constraints! Die Skizze enthält fehlerhafte Randbedingungen! - + The Sketch has partially redundant constraints! Die Skizze enthält teilweise redundante Randbedingungen! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabeln wurden intern umstrukturiert. Solche Dateien lassen sich mit früheren Versionen von FreeCAD nicht mehr öffnen!! @@ -6579,32 +6579,32 @@ Stattdessen werden Gleichheits-Randbedingungen zwischen den Originalobjekten und TaskSketcherTool_c1_rectangle - + Corner, width, height Ecke, Breite, Höhe - + Center, width, height Zentrum, Breite, Höhe - + 3 corners 3 Ecken - + Center, 2 corners Zentrum, 2 Ecken - + Rounded corners (U) Abgerundete Ecken (U) - + Create a rectangle with rounded corners. Erstellt ein Rechteck mit abgerundeten Ecken. @@ -6612,12 +6612,12 @@ Stattdessen werden Gleichheits-Randbedingungen zwischen den Originalobjekten und TaskSketcherTool_c2_rectangle - + Frame (J) Rahmen (J) - + Create two rectangles with a constant offset. Erstellt zwei Rechtecke mit konstantem Abstand. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_el.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_el.ts index 42cf1b0804..63e6336e46 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_el.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_el.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Μετονομασία περιορισμού σχεδίου - + Drag Point Drag Point - + Drag Curve Drag Curve - + Drag Constraint Drag Constraint - + Modify sketch constraints Τροποποίηση περιορισμών σχεδίου @@ -2148,60 +2148,60 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Δεν είναι δυνατή η εύρεση τομής καμπυλών. Προσπαθήστε να προσθέσετε τον περιορισμό ταύτισης μεταξύ κορυφών των καμπυλών που σκοπεύετε να συμπληρώσετε. - + You are requesting no change in knot multiplicity. Δεν απαιτείτε καμία αλλαγή της πολλαπλότητας κόμβου. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Ο δείκτης κόμβου είναι εκτός ορίων. Σημειώστε πως σύμφωνα με το σύστημα σημειογραφίας του OCC, ο πρώτος κόμβος έχει δείκτη 1 και όχι μηδέν. - + The multiplicity cannot be increased beyond the degree of the B-spline. The multiplicity cannot be increased beyond the degree of the B-spline. - + The multiplicity cannot be decreased beyond zero. Η πολλαπλότητα δεν δύναται να είναι χαμηλότερη από το μηδέν. - + OCC is unable to decrease the multiplicity within the maximum tolerance. To ΟCC αδυνατεί να μειώσει την πολλαπλότητα εντός των ορίων μέγιστης ανοχής. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4647,16 +4647,16 @@ However, no constraints linking to the endpoints were found. Ρυθμίσεις - - - - - - - - - - + + + + + + + + + + Construction Κατασκευή @@ -4666,101 +4666,101 @@ However, no constraints linking to the endpoints were found. Στοιχεία - - - - + + + + Point Σημείο - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Γραμμή - - - - + + + + Arc Τόξο - - - - + + + + Circle Κύκλος - - - - + + + + Ellipse Έλλειψη - - - - + + + + Elliptical Arc Ελλειπτικό Τόξο - - - - + + + + Hyperbolic Arc Υπερβολικό Τόξο - - - - + + + + Parabolic Arc Παραβολικό Τόξο - - - - + + + + B-spline Καμπύλη βασικής συνάρτησης - - - - + + + + Other Άλλο - + Extended information Εκτεταμένες Πληροφορίες @@ -4980,112 +4980,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Επεξεργασία σκίτσου - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Μη έγκυρο σχέδιο - + Do you want to open the sketch validation tool? Θέλετε να ανοίξετε το εργαλείο επικύρωσης σχεδίων; - + The sketch is invalid and cannot be edited. Το σχέδιο είναι μη έγκυρο και δε δύναται να υποστεί επεξεργασία. - + Please remove the following constraint: Παρακαλώ αφαιρέστε τον παρακάτω περιορισμό: - + Please remove at least one of the following constraints: Παρακαλώ αφαιρέστε τουλάχιστον έναν από τους παρακάτω περιορισμούς: - + Please remove the following redundant constraint: Παρακαλώ αφαιρέστε τον παρακάτω περιττό περιορισμό: - + Please remove the following redundant constraints: Παρακαλώ αφαιρέστε τους παρακάτω περιττούς περιορισμούς: - + The following constraint is partially redundant: Ο ακόλουθος περιορισμός είναι εν μέρει περιττός: - + The following constraints are partially redundant: Οι ακόλουθοι περιορισμοί είναι εν μέρει περιττοί: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch Κενό σχέδιο - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Περιττοί περιορισμοί: - + Partially redundant: Εν μέρει περιττό: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5093,7 +5093,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5737,7 +5737,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more and %1 more @@ -5955,17 +5955,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6582,32 +6582,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6615,12 +6615,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-AR.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-AR.ts index e6a698f871..bf71778607 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-AR.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-AR.ts @@ -1063,9 +1063,9 @@ con respecto a una línea o un tercer punto Set the 'AttachmentSupport' of a sketch. First select the supporting geometry, for example, a face or an edge of a solid object, then call this command, then choose the desired sketch. - Set the 'AttachmentSupport' of a sketch. -First select the supporting geometry, for example, a face or an edge of a solid object, -then call this command, then choose the desired sketch. + Establecer el 'AttachmentSupport' de un croquis. +Primero seleccione la geometría de soporte, por ejemplo, una cara o una arista de un objeto sólido, +después llame a este comando y entonces elija el croquis deseado. @@ -1186,8 +1186,8 @@ como referencia replicadora. Place the selected sketch on one of the global coordinate planes. This will clear the 'AttachmentSupport' property, if any. - Place the selected sketch on one of the global coordinate planes. -This will clear the 'AttachmentSupport' property, if any. + Colocar el croquis seleccionado en uno de los planos de coordenadas globales. +Esto borrará la propiedad 'AttachmentSupport', si la hubiera. @@ -2056,22 +2056,22 @@ restricciones inválidas, geometrías degeneradas, etc. Renombrar restricción de croquis - + Drag Point Punto de arrastre - + Drag Curve Arrastrar curva - + Drag Constraint Restricción de arrastre - + Modify sketch constraints Modificar restricciones de croquis @@ -2148,59 +2148,59 @@ restricciones inválidas, geometrías degeneradas, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. No se puede adivinar la intersección de las curvas. Intente agregar una restricción coincidente entre los vértices de las curvas que pretende redondear. - + You are requesting no change in knot multiplicity. No está solicitando ningún cambio en la multiplicidad de nudos. - - + + B-spline Geometry Index (GeoID) is out of bounds. Índice de geometría B-spline (GeoID) está fuera de los límites. - - + + The Geometry Index (GeoId) provided is not a B-spline. El índice de geometría (GeoID) proporcionado no es una B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. El índice de nudos está fuera de los límites. Tenga en cuenta que de acuerdo con la notación OCC, el primer nudo tiene índice 1 y no 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. La multiplicidad no puede incrementarse más allá del grado de la B-spline. - + The multiplicity cannot be decreased beyond zero. La multiplicidad no puede ser disminuida más allá de cero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC es incapaz de disminuir la multiplicidad dentro de la tolerancia máxima. - + Knot cannot have zero multiplicity. El nodo no puede tener una multiplicidad cero. - + Knot multiplicity cannot be higher than the degree of the B-spline. La multiplicidad del nodo no puede ser mayor que el grado de la B-spline. - + Knot cannot be inserted outside the B-spline parameter range. El nodo no puede ser insertado fuera del rango de parámetros de la B-spline. @@ -4647,16 +4647,16 @@ Sin embargo, no se encontraron restricciones que vinculen a los puntos finales.< Configuración - - - - - - - - - - + + + + + + + + + + Construction Construcción @@ -4666,101 +4666,101 @@ Sin embargo, no se encontraron restricciones que vinculen a los puntos finales.< Elementos - - - - + + + + Point Punto - - - - - - - - - - + + + + + + + + + + Internal Interno - - - - + + + + Line Línea - - - - + + + + Arc Arco - - - - + + + + Circle Círculo - - - - + + + + Ellipse Elipse - - - - + + + + Elliptical Arc Arco Elíptico - - - - + + + + Hyperbolic Arc Arco Hiperbólico - - - - + + + + Parabolic Arc Arco Parabólico - - - - + + + + B-spline B-spline - - - - + + + + Other Otro - + Extended information Información extendida @@ -4981,112 +4981,112 @@ Esto se hace al analizar las geometrías y restricciones del croquis. SketcherGui::ViewProviderSketch - + Edit sketch Editar croquis - + A dialog is already open in the task panel Un diálogo ya está abierto en el panel de tareas - + Do you want to close this dialog? ¿Desea cerrar este diálogo? - + Invalid sketch Croquis no válido - + Do you want to open the sketch validation tool? ¿Quieres abrir la herramienta de validación de croquis? - + The sketch is invalid and cannot be edited. El croquis no es válido y no puede editarse. - + Please remove the following constraint: Por favor, elimine la siguiente restricción: - + Please remove at least one of the following constraints: Por favor, elimine al menos una de las siguientes restricciones: - + Please remove the following redundant constraint: Por favor, elimine la siguiente restricción redundante: - + Please remove the following redundant constraints: Por favor, elimine las siguientes restricciones redundantes: - + The following constraint is partially redundant: La siguiente restricción es parcialmente redundante: - + The following constraints are partially redundant: Las siguientes restricciones son parcialmente redundantes: - + Please remove the following malformed constraint: Por favor, elimine la siguiente restricción mal formada: - + Please remove the following malformed constraints: Por favor, elimine las siguientes restricciones mal formadas: - + Empty sketch Croquis vacío - + Over-constrained: Sobre-restringido: - + Malformed constraints: Restricciones malformadas: - + Redundant constraints: Restricciones redundantes: - + Partially redundant: Parcialmente redundante: - + Solver failed to converge El solver falló al converger - + Under-constrained: Sub-restringido: - + %n DoF(s) %n DoF @@ -5094,7 +5094,7 @@ Esto se hace al analizar las geometrías y restricciones del croquis. - + Fully constrained Totalmente restringido @@ -5737,7 +5737,7 @@ El algoritmo QR de Eigen Sparse está optimizado para matrices dispersas; genera ViewProviderSketch - + and %1 more y %1 más @@ -5787,7 +5787,7 @@ El algoritmo QR de Eigen Sparse está optimizado para matrices dispersas; genera Sketcher visual - Sketcher visual + Herramientas visuales de croquis @@ -5955,17 +5955,17 @@ El espaciado de la cuadrícula cambia si es menor que este número de píxeles.< Notifications - + The Sketch has malformed constraints! ¡El croquis tiene restricciones mal formadas! - + The Sketch has partially redundant constraints! ¡El croquis tiene restricciones parcialmente redundantes! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas ha sido migrado. Los archivos migrados no se abrirán en versiones anteriores de FreeCAD!! @@ -6582,32 +6582,32 @@ En su lugar, se aplican restricciones de igualdad entre los objetos originales y TaskSketcherTool_c1_rectangle - + Corner, width, height Esquina, ancho, altura - + Center, width, height Centro, ancho, altura - + 3 corners 3 esquinas - + Center, 2 corners Centro, 2 esquinas - + Rounded corners (U) Esquinas redondeadas (U) - + Create a rectangle with rounded corners. Crea un rectángulo con esquinas redondeadas. @@ -6615,12 +6615,12 @@ En su lugar, se aplican restricciones de igualdad entre los objetos originales y TaskSketcherTool_c2_rectangle - + Frame (J) Marco (J) - + Create two rectangles with a constant offset. Crea dos rectángulos con un desplazamiento constante. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts index 832b14f56c..2c2d2185f8 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_es-ES.ts @@ -1062,9 +1062,9 @@ con respecto a una línea o un tercer punto Set the 'AttachmentSupport' of a sketch. First select the supporting geometry, for example, a face or an edge of a solid object, then call this command, then choose the desired sketch. - Set the 'AttachmentSupport' of a sketch. -First select the supporting geometry, for example, a face or an edge of a solid object, -then call this command, then choose the desired sketch. + Establecer el 'AttachmentSupport' de un croquis. +Primero seleccione la geometría de soporte, por ejemplo, una cara o una arista de un objeto sólido, +después llame a este comando y entonces elija el croquis deseado. @@ -1185,8 +1185,8 @@ como referencia replicadora. Place the selected sketch on one of the global coordinate planes. This will clear the 'AttachmentSupport' property, if any. - Place the selected sketch on one of the global coordinate planes. -This will clear the 'AttachmentSupport' property, if any. + Colocar el croquis seleccionado en uno de los planos de coordenadas globales. +Esto borrará la propiedad 'AttachmentSupport', si la hubiera. @@ -2055,22 +2055,22 @@ restricciones inválidas, geometrías degeneradas, etc. Renombrar restricción de croquis - + Drag Point Punto de arrastre - + Drag Curve Arrastrar curva - + Drag Constraint Restricción de arrastre - + Modify sketch constraints Modificar restricciones de croquis @@ -2147,59 +2147,59 @@ restricciones inválidas, geometrías degeneradas, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. No se puede calcular la intersección de curvas. Intente añadir una restricción coincidente entre los vértices de las curvas que pretende redondear. - + You are requesting no change in knot multiplicity. Usted esta solicitando no cambio en multiplicidad de nudo. - - + + B-spline Geometry Index (GeoID) is out of bounds. Índice de geometría B-spline (GeoID) está fuera de los límites. - - + + The Geometry Index (GeoId) provided is not a B-spline. El índice de geometría (GeoID) proporcionado no es una B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. El índice de nudo es fuera de los limites. Note que según en concordancia con notación de la OCC, el primer nudo tiene índice 1 y no 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. La multiplicidad no puede incrementarse más allá del grado de la B-spline. - + The multiplicity cannot be decreased beyond zero. La multiplicidad no puede ser disminuida más allá de cero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC es incapaz de disminuir la multiplicidad dentro de la tolerancia máxima. - + Knot cannot have zero multiplicity. El nodo no puede tener una multiplicidad cero. - + Knot multiplicity cannot be higher than the degree of the B-spline. La multiplicidad del nodo no puede ser mayor que el grado de la B-spline. - + Knot cannot be inserted outside the B-spline parameter range. El nodo no puede ser insertado fuera del rango de parámetros de la B-spline. @@ -4128,10 +4128,10 @@ Estos ajustes solo son para la barra de herramientas. Cualquiera que sea el que 'Disabled': On-View-Parameters are completely disabled. 'Only dimensional': Only dimensional On-View-Parameters are visible. They are the most useful. For example the radius of a circle. 'All': Both dimensional and positional On-View-Parameters. Positionals are the (x,y) position of the cursor. For example for the center of a circle. - Choose a visibility mode for the On-View-Parameters: -'Disabled': On-View-Parameters are completely disabled. -'Only dimensional': Only dimensional On-View-Parameters are visible. They are the most useful. For example the radius of a circle. -'All': Both dimensional and positional On-View-Parameters. Positionals are the (x,y) position of the cursor. For example for the center of a circle. + Elegir un modo de visibilidad para los Parámetros On-View: +'Desactivado': Los Parámetros On-View están completamente desactivados. +'Solo dimensional': Sólo los Parámetros dimensionales On-View son visibles. Son los más útiles. Por ejemplo, el radio de un círculo. +'Todos': tanto los parámetros dimensionales como posicionales On-View. Los posicionales son la posición (x,y) del cursor. Por ejemplo para el centro de un círculo. @@ -4643,16 +4643,16 @@ Sin embargo, no se encontraron restricciones a los extremos. Opciones - - - - - - - - - - + + + + + + + + + + Construction Construcción @@ -4662,101 +4662,101 @@ Sin embargo, no se encontraron restricciones a los extremos. Elementos - - - - + + + + Point Punto - - - - - - - - - - + + + + + + + + + + Internal Interno - - - - + + + + Line Línea - - - - + + + + Arc Arco - - - - + + + + Circle Circunferencia - - - - + + + + Ellipse Elipse - - - - + + + + Elliptical Arc Arco elíptico - - - - + + + + Hyperbolic Arc Arco hiperbólico - - - - + + + + Parabolic Arc Arco parabólico - - - - + + + + B-spline B-spline - - - - + + + + Other Otros - + Extended information Información extendida @@ -4977,112 +4977,112 @@ Esto se hace al analizar las geometrías y restricciones del croquis. SketcherGui::ViewProviderSketch - + Edit sketch Editar croquis - + A dialog is already open in the task panel Un diálogo ya está abierto en el panel de tareas - + Do you want to close this dialog? ¿Desea cerrar este diálogo? - + Invalid sketch Croquis inválido - + Do you want to open the sketch validation tool? ¿Desea abrir la herramienta de validación del croquis? - + The sketch is invalid and cannot be edited. El croquis no es válido y no puede editarse. - + Please remove the following constraint: Elimine la siguiente restricción: - + Please remove at least one of the following constraints: Por favor elimine al menos una de las siguientes restricciones: - + Please remove the following redundant constraint: Por favor elimine la siguiente restricción redundante: - + Please remove the following redundant constraints: Por favor elimine las siguientes restricciones redundante: - + The following constraint is partially redundant: La siguiente restricción es parcialmente redundante: - + The following constraints are partially redundant: Las siguientes restricciones son parcialmente redundantes: - + Please remove the following malformed constraint: Por favor, elimine la siguiente restricción mal formada: - + Please remove the following malformed constraints: Por favor, elimine las siguientes restricciones mal formadas: - + Empty sketch Croquis vacío - + Over-constrained: Sobre-restringido: - + Malformed constraints: Restricciones malformadas: - + Redundant constraints: Restricciones redundantes: - + Partially redundant: Parcialmente redundante: - + Solver failed to converge El solver falló al converger - + Under-constrained: Sub-restringido: - + %n DoF(s) %n DoF @@ -5090,7 +5090,7 @@ Esto se hace al analizar las geometrías y restricciones del croquis. - + Fully constrained Totalmente restringido @@ -5733,7 +5733,7 @@ El algoritmo QR de Eigen Sparse está optimizado para matrices dispersas; genera ViewProviderSketch - + and %1 more y %1 más @@ -5783,7 +5783,7 @@ El algoritmo QR de Eigen Sparse está optimizado para matrices dispersas; genera Sketcher visual - Sketcher visual + Herramientas visuales de croquis @@ -5951,17 +5951,17 @@ El espaciado de la cuadrícula cambia si es menor que este número de píxeles.< Notifications - + The Sketch has malformed constraints! El croquis contiene restricciones mal formadas! - + The Sketch has partially redundant constraints! El croquis contiene restricciones parcialmente redundantes! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas ha sido migrado. Los archivos migrados no se abrirán en versiones anteriores de FreeCAD!! @@ -6578,32 +6578,32 @@ En su lugar, se aplican restricciones de igualdad entre los objetos originales y TaskSketcherTool_c1_rectangle - + Corner, width, height Esquina, ancho, altura - + Center, width, height Centro, ancho, altura - + 3 corners 3 esquinas - + Center, 2 corners Centro, 2 esquinas - + Rounded corners (U) Esquinas redondeadas (U) - + Create a rectangle with rounded corners. Crea un rectángulo con esquinas redondeadas. @@ -6611,12 +6611,12 @@ En su lugar, se aplican restricciones de igualdad entre los objetos originales y TaskSketcherTool_c2_rectangle - + Frame (J) Marco (J) - + Create two rectangles with a constant offset. Crear dos rectángulos con un desplazamiento constante. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_eu.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_eu.ts index 9827296886..9d160e8bcf 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_eu.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_eu.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Aldatu krokis-murrizketaren izena - + Drag Point Arrastatu puntua - + Drag Curve Arrastatu kurba - + Drag Constraint Arrastatu murrizketa - + Modify sketch constraints Aldatu krokis-murrizketak @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Ezin izan da kurben ebakidura antzeman. Saiatu bat datorren murrizketa bat gehitzen biribildu nahi dituzun kurben erpinen artean. - + You are requesting no change in knot multiplicity. Adabegi-aniztasunean aldaketarik ez egitea eskatzen ari zara. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Adabegi-indizea mugetatik kanpo dago. Kontuan izan, OCC notazioaren arabera, lehen adabegiaren indize-zenbakiak 1 izan behar duela, ez 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. Aniztasuna ezin da handitu Bspline-aren gradutik gora. - + The multiplicity cannot be decreased beyond zero. Aniztasuna ezin da txikitu zerotik behera. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC-k ezin du aniztasuna txikitu tolerantzia maximoaren barruan. - + Knot cannot have zero multiplicity. Adabegiak ezin du zero aniztasuna izan. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4648,16 +4648,16 @@ Hala ere, ez da aurkitu amaiera-puntuei estekatutako murrizketarik.Ezarpenak - - - - - - - - - - + + + + + + + + + + Construction Eraikuntza @@ -4667,101 +4667,101 @@ Hala ere, ez da aurkitu amaiera-puntuei estekatutako murrizketarik.Elementuak - - - - + + + + Point Puntua - - - - - - - - - - + + + + + + + + + + Internal Barnekoa - - - - + + + + Line Lerroa - - - - + + + + Arc Arkua - - - - + + + + Circle Zirkulua - - - - + + + + Ellipse Elipsea - - - - + + + + Elliptical Arc Arku eliptikoa - - - - + + + + Hyperbolic Arc Arku hiperbolikoa - - - - + + + + Parabolic Arc Arku parabolikoa - - - - + + + + B-spline B-spline kurba - - - - + + + + Other Beste bat - + Extended information Informazio gehiago @@ -4981,112 +4981,112 @@ Krokisaren geometriak eta murrizketak analizatzen dira horretarako. SketcherGui::ViewProviderSketch - + Edit sketch Editatu krokisa - + A dialog is already open in the task panel Elkarrizketa-koadro bat irekita dago ataza-panelean - + Do you want to close this dialog? Elkarrizketa-koadro hau itxi nahi duzu? - + Invalid sketch Baliogabeko krokisa - + Do you want to open the sketch validation tool? Krokisak balidatzeko tresna ireki nahi al duzu? - + The sketch is invalid and cannot be edited. Krokisa baliogabea da eta ezin da editatu. - + Please remove the following constraint: Kendu honako murrizketa: - + Please remove at least one of the following constraints: Kendu gutxienez honako murrizketetako bat: - + Please remove the following redundant constraint: Kendu erredundantea den honako murrizketa: - + Please remove the following redundant constraints: Kendu erredundanteak diren honako murriketak: - + The following constraint is partially redundant: Honako murrizketa partzialki erredundantea da: - + The following constraints are partially redundant: Honako murrizketak partzialki erredundanteak dira: - + Please remove the following malformed constraint: Kendu gaizki eratuta dagoen honako murrizketa: - + Please remove the following malformed constraints: Kendu gaizki eratuta dauden honako murrizketak: - + Empty sketch Krokis hutsa - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Murrizketa erredundanteak: - + Partially redundant: Partzialki erredundantea: - + Solver failed to converge Ebazleak ezin izan du konbergitu - + Under-constrained: Under-constrained: - + %n DoF(s) Askatasun-gradu %n @@ -5094,7 +5094,7 @@ Krokisaren geometriak eta murrizketak analizatzen dira horretarako. - + Fully constrained Osorik murritua @@ -5738,7 +5738,7 @@ Eigen Sparse QR algoritmoa matrize sakabanatuetarako optimizatuta dago; normalea ViewProviderSketch - + and %1 more eta %1 gehiago @@ -5956,17 +5956,17 @@ Sareta-tartea aldatuko da pixel-zenbaki hau baino txikiagoa bihurtzen bada. Notifications - + The Sketch has malformed constraints! Krokisak gaizki eratutako murrizketak ditu! - + The Sketch has partially redundant constraints! Krokisak partzialki erredundanteak diren murrizketak ditu! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolak migratu dira. Migratutako fitxategiak ezin dira ireki FreeCADen aurreko bertsioetan. @@ -6582,32 +6582,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6615,12 +6615,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts index 5749bf8916..5b1231bbe2 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fi.ts @@ -2057,22 +2057,22 @@ invalid constraints, degenerated geometry, etc. Nimeä rajoite uudelleen - + Drag Point Raahaa pistettä - + Drag Curve Raahaa käyrää - + Drag Constraint Raahaa rajoitetta - + Modify sketch constraints Muokkaa luonnoksen rajoitteita @@ -2149,59 +2149,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Ei kyetty arvaamaan reunojen risteämispistettä. Kokeile lisätä yhtenevyysrajoite pyöristettävien reunojen kärkipisteiden välille. - + You are requesting no change in knot multiplicity. Solmun moninkertaisuusarvoon ei pyydetty muutosta. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Solmun indeksi on rajojen ulkopuolella. Huomaa, että OCC: n notaation mukaisesti ensimmäisellä solmulla on indeksi 1 eikä nolla. - + The multiplicity cannot be increased beyond the degree of the B-spline. Monimuotoisuusarvoa ei voi kasvattaa B-splinin astetta suuremmaksi. - + The multiplicity cannot be decreased beyond zero. Moninkertaisuusarvoa ei voi pienentää negatiiviseksi. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC ei pysty pienentämään moninkertaisuusarvoa pysyäkseen suurimmassa sallitussa toleranssissa. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4649,16 +4649,16 @@ Kuitenkaan ei ole löytynyt rajoitteita, jotka liittyisivät päätepisteisiin.< Asetukset - - - - - - - - - - + + + + + + + + + + Construction Rakenne @@ -4668,101 +4668,101 @@ Kuitenkaan ei ole löytynyt rajoitteita, jotka liittyisivät päätepisteisiin.< Osat - - - - + + + + Point Piste - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Viiva - - - - + + + + Arc Kaari - - - - + + + + Circle Ympyrä - - - - + + + + Ellipse Ellipsi - - - - + + + + Elliptical Arc Elliptinen kaari - - - - + + + + Hyperbolic Arc Hyperbolinen Kaari - - - - + + + + Parabolic Arc Parabolinen Kaari - - - - + + + + B-spline B-splini - - - - + + + + Other Muu - + Extended information Extended information @@ -4983,112 +4983,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Muokkaa luonnosta - + A dialog is already open in the task panel Valintaikkuna on jo avoinna tehtäväpaneelissa - + Do you want to close this dialog? Haluatko sulkea tämän valintaikkunan? - + Invalid sketch Virheellinen luonnos - + Do you want to open the sketch validation tool? Haluatko avata luonnoksen validointityökalun? - + The sketch is invalid and cannot be edited. Luonnos on virheellinen eikä sitä voi muokata. - + Please remove the following constraint: Poista seuraava rajoite: - + Please remove at least one of the following constraints: Poista ainakin yksi seuraavista rajoitteista: - + Please remove the following redundant constraint: Poista seuraava turha rajoite: - + Please remove the following redundant constraints: Poista seuraavat turhat rajoitteet: - + The following constraint is partially redundant: Seuraava rajoite on osittain tarpeeton: - + The following constraints are partially redundant: Seuraavat rajoitteet ovat osittain tarpeettomia: - + Please remove the following malformed constraint: Poista seuraava virheellinen rajoite: - + Please remove the following malformed constraints: Poista seuraavat virheelliset rajoitteet: - + Empty sketch Tyhjä luonnos - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5096,7 +5096,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5740,7 +5740,7 @@ Eigen-Sparse-QR -algoritmi on optimoitu matriiseille jotka ovat harvoja; yleens ViewProviderSketch - + and %1 more and %1 more @@ -5958,17 +5958,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6585,32 +6585,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6618,12 +6618,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts index 78675ee8de..9bca84c051 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_fr.ts @@ -2050,22 +2050,22 @@ invalid constraints, degenerated geometry, etc. Renommer la contrainte d'esquisse - + Drag Point Faire glisser le Point - + Drag Curve Faire glisser la Courbe - + Drag Constraint Faire glisser la Contrainte - + Modify sketch constraints Modifier les contraintes d'esquisse @@ -2142,59 +2142,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. L'intersection des courbes n'a pas pu être trouvée. Essayez d’ajouter une contrainte de coïncidence entre les sommets des courbes sur lesquels vous souhaitez appliquer un congé. - + You are requesting no change in knot multiplicity. Vous ne demandez aucun changement dans la multiplicité du nœud. - - + + B-spline Geometry Index (GeoID) is out of bounds. L'index de la géométrie de la B-spline (GeoID) est en dehors des limites. - - + + The Geometry Index (GeoId) provided is not a B-spline. L’Index de la géométrie (GeoID) fourni n’est pas une B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. L’index du nœud est hors limites. Notez que, conformément à la notation OCC, le premier nœud a un indice de 1 et non pas de zéro. - + The multiplicity cannot be increased beyond the degree of the B-spline. La multiplicité ne peut pas être augmentée au-delà du degré de la B-spline. - + The multiplicity cannot be decreased beyond zero. La multiplicité ne peut pas être diminuée au-delà de zéro. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC ne parvient pas à diminuer la multiplicité selon la tolérance maximale. - + Knot cannot have zero multiplicity. Le nœud ne peut pas avoir une multiplicité nulle. - + Knot multiplicity cannot be higher than the degree of the B-spline. La multiplicité des nœuds ne peut pas être supérieure au degré de la B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Le nœud de la B-spline ne peut pas être inséré en dehors de la plage de paramètres de la B-spline. @@ -4642,16 +4642,16 @@ la liste ci-dessous) Réglages - - - - - - - - - - + + + + + + + + + + Construction Construction @@ -4661,101 +4661,101 @@ la liste ci-dessous) Éléments - - - - + + + + Point Point - - - - - - - - - - + + + + + + + + + + Internal Géométrie interne - - - - + + + + Line Ligne - - - - + + + + Arc Arc - - - - + + + + Circle Cercle - - - - + + + + Ellipse Ellipse - - - - + + + + Elliptical Arc Arc elliptique - - - - + + + + Hyperbolic Arc Arc hyperbolique - - - - + + + + Parabolic Arc Arc parabolique - - - - + + + + B-spline B-spline - - - - + + + + Other Autre - + Extended information Informations étendues @@ -4976,112 +4976,112 @@ Cela est fait en analysant les géométries et les contraintes de l'esquisse. SketcherGui::ViewProviderSketch - + Edit sketch Modifier une esquisse - + A dialog is already open in the task panel Une boîte de dialogue est déjà ouverte dans le panneau des tâches - + Do you want to close this dialog? Voulez-vous fermer cette boîte de dialogue? - + Invalid sketch Esquisses non valides - + Do you want to open the sketch validation tool? Voulez-vous ouvrir l'outil de validation d'esquisse ? - + The sketch is invalid and cannot be edited. L'esquisse n'est pas valide et ne peut pas être éditée. - + Please remove the following constraint: Veuillez supprimer la contrainte suivante : - + Please remove at least one of the following constraints: Veuillez supprimer au moins une des contraintes suivantes : - + Please remove the following redundant constraint: Veuillez supprimer la contrainte redondante suivante : - + Please remove the following redundant constraints: Veuillez supprimer les contraintes redondantes suivantes : - + The following constraint is partially redundant: La contrainte suivante est partiellement redondante : - + The following constraints are partially redundant: Les contraintes suivantes sont partiellement redondantes : - + Please remove the following malformed constraint: Supprimer la contrainte défectueuse suivante : - + Please remove the following malformed constraints: Supprimer les contraintes défectueuses suivantes : - + Empty sketch Esquisse vide - + Over-constrained: Esquisse sur-contrainte : - + Malformed constraints: Esquisse avec contraintes défectueuses : - + Redundant constraints: Esquisse avec contraintes redondantes : - + Partially redundant: Esquisse avec contraintes partiellement redondantes : - + Solver failed to converge Le solveur n'a pas pu converger - + Under-constrained: L'esquisse manque de contraintes : - + %n DoF(s) %n degré(s) de liberté @@ -5089,7 +5089,7 @@ Cela est fait en analysant les géométries et les contraintes de l'esquisse. - + Fully constrained Esquisse entièrement contrainte @@ -5731,7 +5731,7 @@ L'algorithme Eigen Sparse QR est optimisé pour les matrices peu denses, génér ViewProviderSketch - + and %1 more et %1 de plus @@ -5949,17 +5949,17 @@ L'espacement de la grille est modifié s'il devient inférieur à ce nombre de p Notifications - + The Sketch has malformed constraints! L'esquisse a des contraintes défectueuses ! - + The Sketch has partially redundant constraints! L'esquisse a des contraintes partiellement redondantes ! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Les paraboles ont été migrées. Les fichiers migrés ne pourront pas être ouverts par les versions précédentes de FreeCAD !! @@ -6578,32 +6578,32 @@ Au lieu de cela, des contraintes d'égalité sont appliquées entre les objets o TaskSketcherTool_c1_rectangle - + Corner, width, height Coin, largeur, hauteur - + Center, width, height Centre, largeur, hauteur - + 3 corners 3 coins - + Center, 2 corners Centre, 2 coins - + Rounded corners (U) Coins arrondis (U) - + Create a rectangle with rounded corners. Créer un rectangle avec des coins arrondis. @@ -6611,12 +6611,12 @@ Au lieu de cela, des contraintes d'égalité sont appliquées entre les objets o TaskSketcherTool_c2_rectangle - + Frame (J) Cadre (J) - + Create two rectangles with a constant offset. Créer deux rectangles avec un décalage constant diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts index 22b8a4b96f..6c19fce86f 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hr.ts @@ -2104,24 +2104,24 @@ invalid constraints, degenerated geometry, etc. Preimenujte ograničenja skica - + Drag Point Povucite točku - + Drag Curve Povucite krivulju - + Drag Constraint Povucite ograničenje - + Modify sketch constraints Izmijenite ograničenja skica @@ -2198,59 +2198,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nije moguće odrediti sjecište krivulje. Pokušajte dodati podudarno ograničenje između vrhova krivulje koju namjeravate zaobliti. - + You are requesting no change in knot multiplicity. Vi zahtijevate: bez promjena u mnoštvu čvorova. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Čvor indeks je izvan granica. Imajte na umu da u skladu s OCC notacijom, prvi čvor ima indeks 1 a ne nula. - + The multiplicity cannot be increased beyond the degree of the B-spline. Mnoštvo se ne može povećavati iznad stupanja mnoštva b-spline krive. - + The multiplicity cannot be decreased beyond zero. Mnoštvo se ne može smanjiti ispod nule. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC je uspio smanjiti mnoštvo unutar maksimalne tolerancije. - + Knot cannot have zero multiplicity. Čvor ne može sa nulom multiplicirati. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4727,16 +4727,16 @@ Međutim, nema povezanih ograničenja na krajnje točake. Postavke - - - - - - - - - - + + + + + + + + + + Construction Izgradnja @@ -4746,101 +4746,101 @@ Međutim, nema povezanih ograničenja na krajnje točake. Elementi - - - - + + + + Point Točka - - - - - - - - - - + + + + + + + + + + Internal Interno - - - - + + + + Line Linija - - - - + + + + Arc Luk - - - - + + + + Circle Krug - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Eliptični luk - - - - + + + + Hyperbolic Arc Hiperbolni luk - - - - + + + + Parabolic Arc Parabolični luk - - - - + + + + B-spline B-krivulja - - - - + + + + Other Drugo - + Extended information Proširene informacije @@ -5065,112 +5065,112 @@ To se radi analizom geometrije i ograničenja skice. SketcherGui::ViewProviderSketch - + Edit sketch Uredi skicu - + A dialog is already open in the task panel Dijalog je već otvoren u ploči zadataka - + Do you want to close this dialog? Želite li zatvoriti ovaj dijalog? - + Invalid sketch Neispravna skica - + Do you want to open the sketch validation tool? Želite li otvoriti alat provjera valjanosti skice? - + The sketch is invalid and cannot be edited. Skica je neispravna i ne može se uređivati. - + Please remove the following constraint: Molim uklonite sljedeće ograničenje: - + Please remove at least one of the following constraints: Molim uklonite barem jedno od sljedećih ograničenja: - + Please remove the following redundant constraint: Molimo obrišite ovo redundantno ograničenje: - + Please remove the following redundant constraints: Molimo obrišite ova redundantna ograničenja: - + The following constraint is partially redundant: Sljedeće ograničenje je djelomično suvišno: - + The following constraints are partially redundant: Sljedeća ograničenja su djelomično suvišna: - + Please remove the following malformed constraint: Uklonite sljedeće deformirano ograničenje: - + Please remove the following malformed constraints: Uklonite sljedeća deformirana ograničenja: - + Empty sketch Prazan skica - + Over-constrained: Pretjerano ograničeno: - + Malformed constraints: Deformirana ograničenja: - + Redundant constraints: Suvišna ograničenja: - + Partially redundant: Djelomično suvišno: - + Solver failed to converge Solver nije uspio konvergirati - + Under-constrained: Under-constrained: - + %n DoF(s) %n Stupanj slobode @@ -5179,7 +5179,7 @@ To se radi analizom geometrije i ograničenja skice. - + Fully constrained Potpuno ograničen @@ -5841,7 +5841,7 @@ Eigen Sparse QR algoritam optimiziran je za rijetke matrice; obično brže ViewProviderSketch - + and %1 more i %1 još @@ -6064,17 +6064,17 @@ Razmak mreže se mijenja ako postane manji od ovog broja piksela. Notifications - + The Sketch has malformed constraints! Skica ima deformirana ograničenja! - + The Sketch has partially redundant constraints! Skica ima djelomično suvišna ograničenja! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabole su migrirane. Migrirane datoteke neće se otvoriti u prethodnim verzijama FreeCAD-a!! @@ -6691,32 +6691,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Ugao, Širina, Visina - + Center, width, height Središte, Širina, Visina - + 3 corners 3 Ugla - + Center, 2 corners Središte, 2 Ugla - + Rounded corners (U) Zaobljeni uglovi (U) - + Create a rectangle with rounded corners. Stvori pravokutnik sa zaobljenim uglovima. @@ -6724,12 +6724,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Okvir (J) - + Create two rectangles with a constant offset. Stvori dva pravokutnika sa konstantnim pomakom. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts index 4bd25fab74..a22cfcd89b 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_hu.ts @@ -2054,22 +2054,22 @@ invalid constraints, degenerated geometry, etc. Vázlat kényszerítés átnevezése - + Drag Point Pont húzása - + Drag Curve Ív húzása - + Drag Constraint Kényszerítés húzása - + Modify sketch constraints Vázlat kényszerítés módosítása @@ -2146,59 +2146,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nem tudja meghatározni a görbék metszéspontját. Próbáljon meg hozzáadni egybeesés kényszerítést a görbék csúcsaihoz, melyeket le szeretné kerekíteni. - + You are requesting no change in knot multiplicity. Nem kér változtatást a csomó többszörözésére. - - + + B-spline Geometry Index (GeoID) is out of bounds. A B-görbe geometriai indexe (GeoID) határon kívüli. - - + + The Geometry Index (GeoId) provided is not a B-spline. A megadott geometriai index (GeoId) nem B-görbe. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. A csomó jelölés határvonalakon kívülre esik. Ne feledje, hogy a megfelelő OCC jelölés szerint, az első csomót jelölése 1 és nem nulla. - + The multiplicity cannot be increased beyond the degree of the B-spline. A sokszorozás nem nőhet a B-görbe szögének értéke fölé. - + The multiplicity cannot be decreased beyond zero. A sokszorozást nem csökkentheti nulla alá. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC képtelen csökkenteni a sokszorozást a maximális megengedett tűrésen belül. - + Knot cannot have zero multiplicity. A csomónak nem lehet nulla sokszorozása. - + Knot multiplicity cannot be higher than the degree of the B-spline. A csomópontok száma nem lehet nagyobb, mint a B-görbe fokozata. - + Knot cannot be inserted outside the B-spline parameter range. A csomó nem illeszthető be a B-görbe paramétertartományán kívül. @@ -4644,16 +4644,16 @@ Azonban, nem találhatók a végpontokhoz kötött kényszerítések.Beállítások - - - - - - - - - - + + + + + + + + + + Construction Építési @@ -4663,101 +4663,101 @@ Azonban, nem találhatók a végpontokhoz kötött kényszerítések.Elemek - - - - + + + + Point Pont - - - - - - - - - - + + + + + + + + + + Internal Belső - - - - + + + + Line Vonal - - - - + + + + Arc Ív - - - - + + + + Circle Kör - - - - + + + + Ellipse Ellipszis - - - - + + + + Elliptical Arc Elliptikus ív - - - - + + + + Hyperbolic Arc Hiperbolikus ív - - - - + + + + Parabolic Arc Parabolikus ív - - - - + + + + B-spline B-görbe - - - - + + + + Other Egyéb - + Extended information Részletes információ @@ -4978,112 +4978,112 @@ Ez a vázlat geometriáinak és kényszerítéseinek elemzésével történik. SketcherGui::ViewProviderSketch - + Edit sketch Vázlat szerkesztése - + A dialog is already open in the task panel Egy párbeszédablak már nyitva van a feladat panelen - + Do you want to close this dialog? Szeretné bezárni a párbeszédpanelt? - + Invalid sketch Érvénytelen vázlat - + 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. A vázlat érvénytelen, és nem szerkeszthető. - + Please remove the following constraint: Kérjük, távolítsa el az alábbi ilesztést: - + Please remove at least one of the following constraints: Kérjük, távolítsa el, legalább az egyiket a következő kényszerítésekből: - + Please remove the following redundant constraint: Kérjük, távolítsa el a következő felesleges kényszerítést: - + Please remove the following redundant constraints: Kérjük, távolítsa el a következő felesleges kényszerítéseket: - + The following constraint is partially redundant: A következő kényszerítés részben felesleges: - + The following constraints are partially redundant: A következő kényszerítések részben feleslegesek: - + Please remove the following malformed constraint: Távolítsa el a következő hibás kényszerítést: - + Please remove the following malformed constraints: Távolítsa el a következő hibás kényszerítéseket: - + Empty sketch Üres vázlat - + Over-constrained: Eltúlzott kényszertés: - + Malformed constraints: Hibásan formázott kényszerítés: - + Redundant constraints: Felesleges kényszerítések: - + Partially redundant: Részben felesleges: - + Solver failed to converge A megoldó nem tudott hasonlítani - + Under-constrained: Nem eléggé kényszerített: - + %n DoF(s) %n szabadságfok(ok) @@ -5091,7 +5091,7 @@ Ez a vázlat geometriáinak és kényszerítéseinek elemzésével történik. - + Fully constrained Teljesen kényszertett @@ -5734,7 +5734,7 @@ Az Eigen Sparse QR algoritmus ritka mátrixokra van optimalizálva; általában ViewProviderSketch - + and %1 more és további %1 @@ -5952,17 +5952,17 @@ A rácsháló távolsága megváltozik, ha kisebb lesz, mint ez a pixelszám. Notifications - + The Sketch has malformed constraints! A vázlat hibásan formázott kényszerítéseket tartalmaz! - + The Sketch has partially redundant constraints! A vázlat részlegesen felesleges kényszerítéseket tartalmaz! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! A parabolákat áttelepítették. Az áttelepített fájlok nem nyílnak meg a FreeCAD korábbi verzióiban!! @@ -6579,32 +6579,32 @@ Ehelyett az eredeti tárgyak és másolataik között egyenlő kényszereket alk TaskSketcherTool_c1_rectangle - + Corner, width, height Sarok, szélesség, magasság - + Center, width, height Középpont, szélesség, magasság - + 3 corners 3 sarok - + Center, 2 corners Középpont, 2 sarok - + Rounded corners (U) Lekerekített sarkok (U) - + Create a rectangle with rounded corners. Létrehoz egy téglalapot lekerekített sarkokkal. @@ -6612,12 +6612,12 @@ Ehelyett az eredeti tárgyak és másolataik között egyenlő kényszereket alk TaskSketcherTool_c2_rectangle - + Frame (J) Keret (J) - + Create two rectangles with a constant offset. Hozzon létre két téglalapot állandó eltolással. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts index 2c56aae980..4981058c48 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_it.ts @@ -2055,22 +2055,22 @@ vincoli non validi, geometria degenerata, ecc. Rinomina il vincolo dello schizzo - + Drag Point Trascina Punto - + Drag Curve Trascina Curva - + Drag Constraint Trascina Vincolo - + Modify sketch constraints Modifica i vincoli dello schizzo @@ -2117,7 +2117,7 @@ vincoli non validi, geometria degenerata, ecc. Add sketch bSpline - Add sketch bSpline + Aggiungi schizzo B-spline @@ -2128,12 +2128,12 @@ vincoli non validi, geometria degenerata, ecc. Add line to sketch polyline - Add line to sketch polyline + Aggiungi linea allo schizzo polilinea Add arc to sketch polyline - Add arc to sketch polyline + Aggiungi arco allo schizzo polilinea @@ -2147,59 +2147,59 @@ vincoli non validi, geometria degenerata, ecc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Impossibile determinare l'intersezione delle curve. Provare ad aggiungere un vincolo di coincidenza tra i vertici delle curve che si intende raccordare. - + You are requesting no change in knot multiplicity. Non stai richiedendo modifiche nella molteplicità dei nodi. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. L'indice di geometria (GeoId) fornito non è una B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. L'indice del nodo è fuori dai limiti. Notare che, in conformità alla numerazione OCC, il primo nodo ha indice 1 e non zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. La molteplicità non può essere aumentata oltre il grado della B-spline. - + The multiplicity cannot be decreased beyond zero. La molteplicità non può essere diminuita al di là di zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC non è in grado di diminuire la molteplicità entro la tolleranza massima. - + Knot cannot have zero multiplicity. Il nodo non può avere una molteplicità zero. - + Knot multiplicity cannot be higher than the degree of the B-spline. La molteplicità del nodo non può essere superiore al grado della Bspline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4643,16 +4643,16 @@ Tuttavia, non sono stati trovati i vincoli che riguardano i punti finali.Impostazioni - - - - - - - - - - + + + + + + + + + + Construction Costruzione @@ -4662,101 +4662,101 @@ Tuttavia, non sono stati trovati i vincoli che riguardano i punti finali.Elementi - - - - + + + + Point Punto - - - - - - - - - - + + + + + + + + + + Internal Interno - - - - + + + + Line Linea - - - - + + + + Arc Arco - - - - + + + + Circle Cerchio - - - - + + + + Ellipse Ellisse - - - - + + + + Elliptical Arc Arco ellittico - - - - + + + + Hyperbolic Arc Arco di iperbole - - - - + + + + Parabolic Arc Arco parabolico - - - - + + + + B-spline BSpline - - - - + + + + Other Altro - + Extended information Informazioni estese @@ -4977,112 +4977,112 @@ Questo viene fatto analizzando le geometrie e i vincoli dello schizzo. SketcherGui::ViewProviderSketch - + Edit sketch Modifica lo schizzo - + A dialog is already open in the task panel Nel pannello azioni c'è già una finestra di dialogo aperta - + Do you want to close this dialog? Vuoi chiudere questa finestra di dialogo? - + Invalid sketch Schizzo non valido - + Do you want to open the sketch validation tool? Vuoi aprire lo strumento di convalida di schizzo? - + The sketch is invalid and cannot be edited. Lo schizzo non è valido e non può essere modificato. - + Please remove the following constraint: Si prega di rimuovere il seguente vincolo: - + Please remove at least one of the following constraints: Si prega di rimuovere almeno uno dei seguenti vincoli: - + Please remove the following redundant constraint: Si prega di rimuovere il seguente vincolo ridondante: - + Please remove the following redundant constraints: Si prega di rimuovere i seguenti vincoli ridondanti: - + The following constraint is partially redundant: Il seguente vincolo è parzialmente ridondante: - + The following constraints are partially redundant: I seguenti vincoli sono parzialmente ridondanti: - + Please remove the following malformed constraint: Rimuovere il seguente vincolo malformato: - + Please remove the following malformed constraints: Rimuovere i seguenti vincoli malformati: - + Empty sketch Schizzo vuoto - + Over-constrained: Sovravincolato: - + Malformed constraints: Vincoli malformati: - + Redundant constraints: Vincoli ridondanti: - + Partially redundant: Parzialmente ridondante: - + Solver failed to converge Risolutore impossibilitato a convergere - + Under-constrained: Sottovincolato: - + %n DoF(s) %n Grado(i) di libertà @@ -5090,7 +5090,7 @@ Questo viene fatto analizzando le geometrie e i vincoli dello schizzo. - + Fully constrained Completamente vincolato @@ -5731,7 +5731,7 @@ L'algoritmo di Eigen Sparse QR è ottimizzato per matrici sparsi; solitamente pi ViewProviderSketch - + and %1 more e %1 in più @@ -5949,17 +5949,17 @@ La spaziatura della griglia cambia se diventa più piccola di questo numero di p Notifications - + The Sketch has malformed constraints! Lo schizzo contiene vincoli malformati! - + The Sketch has partially redundant constraints! Lo schizzo contiene vincoli parzialmente ridondanti! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Le parabole sono state convertite. I file convertiti non si apriranno nelle versioni precedenti di FreeCAD!! @@ -6576,32 +6576,32 @@ Invece vengono applicati vincoli uguali tra gli oggetti originali e le loro copi TaskSketcherTool_c1_rectangle - + Corner, width, height Vertice, larghezza, altezza - + Center, width, height Centro, larghezza, altezza - + 3 corners 3 vertici - + Center, 2 corners Centro, 2 vertici - + Rounded corners (U) Angoli arrotondati (U) - + Create a rectangle with rounded corners. Crea un rettangolo con angoli arrotondati. @@ -6609,12 +6609,12 @@ Invece vengono applicati vincoli uguali tra gli oggetti originali e le loro copi TaskSketcherTool_c2_rectangle - + Frame (J) Cornice (J) - + Create two rectangles with a constant offset. Crea due rettangoli con uno spostamento costante. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts index b30ddcc552..e50106e1c0 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ja.ts @@ -2049,22 +2049,22 @@ invalid constraints, degenerated geometry, etc. スケッチ拘束の名前を変更 - + Drag Point 点をドラッグ - + Drag Curve 曲線をドラッグ - + Drag Constraint 拘束をドラッグ - + Modify sketch constraints スケッチ拘束を変更 @@ -2141,59 +2141,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. 曲線の交点を推定できません。フィレット対象の曲線の頂点の間に一致拘束を追加してみてください。 - + You are requesting no change in knot multiplicity. ノット多重度で変更が起きないように要求しています。 - - + + B-spline Geometry Index (GeoID) is out of bounds. B-スプラインのジオメトリ番号(ジオID)が範囲外です。 - - + + The Geometry Index (GeoId) provided is not a B-spline. 入力されたジオメトリ番号(ジオID)はB-スプラインではありません。 - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. ノット・インデックスが境界外です。OCCの記法に従うと最初のノットは1と非ゼロのインデックスを持ちます。 - + The multiplicity cannot be increased beyond the degree of the B-spline. B-スプラインの次数を越えて多重度を増やすことはできません。 - + The multiplicity cannot be decreased beyond zero. 0を越えて多重度を減らすことはできません。 - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCCは最大許容範囲内で多重度を減らすことができまぜん。 - + Knot cannot have zero multiplicity. ノットがゼロ多重性を持つことはでいません。 - + Knot multiplicity cannot be higher than the degree of the B-spline. B-スプラインの次数を超えてノット多重度を増やすことはできません。 - + Knot cannot be inserted outside the B-spline parameter range. B-スプラインパラメーターの範囲外にノットを挿入することはできません。 @@ -4636,16 +4636,16 @@ However, no constraints linking to the endpoints were found. 設定 - - - - - - - - - - + + + + + + + + + + Construction 構築 @@ -4655,101 +4655,101 @@ However, no constraints linking to the endpoints were found. 要素 - - - - + + + + Point - - - - - - - - - - + + + + + + + + + + Internal 内部 - - - - + + + + Line 直線 - - - - + + + + Arc 円弧 - - - - + + + + Circle - - - - + + + + Ellipse 楕円 - - - - + + + + Elliptical Arc 楕円弧 - - - - + + + + Hyperbolic Arc 双曲線の円弧 - - - - + + + + Parabolic Arc 放物線の円弧 - - - - + + + + B-spline B-スプライン - - - - + + + + Other その他 - + Extended information 拡張情報 @@ -4969,119 +4969,119 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch スケッチを編集 - + A dialog is already open in the task panel タスクパネルで既にダイアログが開かれています - + Do you want to close this dialog? このダイアログを閉じますか? - + Invalid sketch スケッチが無効です - + Do you want to open the sketch validation tool? スケッチ検証ツールを起動しますか? - + The sketch is invalid and cannot be edited. スケッチが不正で、編集できません。 - + Please remove the following constraint: 以下の拘束を削除してください: - + Please remove at least one of the following constraints: 以下の拘束から少なくとも1つを削除してください: - + Please remove the following redundant constraint: 以下の不要な拘束を削除してください: - + Please remove the following redundant constraints: 以下の不要な拘束を削除してください: - + The following constraint is partially redundant: 以下の拘束は一部が冗長です: - + The following constraints are partially redundant: 以下の拘束は一部が冗長です: - + Please remove the following malformed constraint: 次の不正な拘束を削除してください: - + Please remove the following malformed constraints: 次の不正な拘束を削除してください: - + Empty sketch スケッチが空です - + Over-constrained: 過剰拘束: - + Malformed constraints: 不正な拘束: - + Redundant constraints: 冗長な拘束: - + Partially redundant: 部分的に冗長: - + Solver failed to converge ソルバーの収束に失敗 - + Under-constrained: 拘束中: - + %n DoF(s) %n 自由度 - + Fully constrained 完全拘束 @@ -5722,7 +5722,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more %1 以上 @@ -5940,17 +5940,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! スケッチに不正な拘束があります! - + The Sketch has partially redundant constraints! スケッチに一部が冗長な拘束があります! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! 放物線がバージョン変換されました。変換されたファイルは以前のバージョンのFreeCADでは開けません!! @@ -6567,32 +6567,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height 角、幅、高さ - + Center, width, height 中心、幅、高さ - + 3 corners 3角 - + Center, 2 corners 中心、2角 - + Rounded corners (U) 角の丸め(U) - + Create a rectangle with rounded corners. 角丸の長方形を作成 @@ -6600,12 +6600,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) フレーム(J) - + Create two rectangles with a constant offset. 一定のオフセットで 2 つの長方形を作成 diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ka.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ka.ts index 935759486d..d3ced4d6d6 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ka.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ka.ts @@ -2054,22 +2054,22 @@ invalid constraints, degenerated geometry, etc. ესკიზის შეზღუდვისთვის სახელის გადარქმევა - + Drag Point გადაათრიეთ წერტილი - + Drag Curve რკალის გადათრევა - + Drag Constraint შეზღუდვის გადათრევა - + Modify sketch constraints ესკიზის შეზღუდვების ჩასწორება @@ -2146,59 +2146,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. მრუდების კვეთის გამოცნობის შეცდომა. სცადეთ დაამატოთ დამთხვევების შეზღუდვები მრუდების წვეროებზე, რომლის მომრგვალებასაც ცდილობთ. - + You are requesting no change in knot multiplicity. თქვენ არ ითხოვთ ცვლილებას კვანძის გაყოფადობაში. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-სპლაინის გეომეტრიის ინდექსი (GeoID) დაშვებულ ლიმიტებს გარეთაა. - - + + The Geometry Index (GeoId) provided is not a B-spline. გეომეტრიის მითითებული ინდექსი (GeoID) B-სპლაინს არ წარმოადგენს. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. კვანძის ინდექსი საზღვრებს გარეთაა. დაიმახსოვრეთ, რომ OCC ნოტაციების შესაბამისად, პირველი კვანძის ინდექსი 1-ია და არა 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. სიმრავლე არ შეიძლება გაიზარდოს B-სპლაინის დონის მიღმა. - + The multiplicity cannot be decreased beyond zero. სიმრავლე არ შეიძლება შემცირდეს ნულს მიღმა. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC-ს არ შეუძლია შეამციროს სიმრავლე მაქსიმალური ტოლერანტობის ფარგლებში. - + Knot cannot have zero multiplicity. კვანძებს არ შეიძლება ნულოვანი მამრავლი ჰქონდეს. - + Knot multiplicity cannot be higher than the degree of the B-spline. კვანძის მამრავლი არ შეიძლება B-სპლაინის დონეზე დიდი იყოს. - + Knot cannot be inserted outside the B-spline parameter range. კვანძის ჩასმა B-სპლაინის პარამეტრების დიაპაზონის გარეთ შეუძლებელია. @@ -4644,16 +4644,16 @@ However, no constraints linking to the endpoints were found. გამართვა - - - - - - - - - - + + + + + + + + + + Construction კონსტრუქცია @@ -4663,101 +4663,101 @@ However, no constraints linking to the endpoints were found. ელემენტები - - - - + + + + Point წერტილი - - - - - - - - - - + + + + + + + + + + Internal შიდა - - - - + + + + Line ხაზი - - - - + + + + Arc რკალი - - - - + + + + Circle წრე - - - - + + + + Ellipse ოვალი - - - - + + + + Elliptical Arc ელიფსის რკალი - - - - + + + + Hyperbolic Arc ჰიპერბოლური რკალი - - - - + + + + Parabolic Arc პარაბოლური რკალი - - - - + + + + B-spline B-სპლაინი - - - - + + + + Other სხვა - + Extended information მეტი ინფორმაცია @@ -4978,112 +4978,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch ესკიზის ჩასწორება - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch ესკიზი დაზიანებულია - + Do you want to open the sketch validation tool? გნებავთ ესკიზის გადამოწმების ხელსაწყოს გახსნა? - + The sketch is invalid and cannot be edited. ესკიზი არასწორია. მისი ჩასწორება შეუძლებელია. - + Please remove the following constraint: გთხოვთ, წაშალოთ შემდეგი შეზღუდვა: - + Please remove at least one of the following constraints: გთხოვთ, ამოიღოთ მინიმუმ ერთი შემდეგი შეზღუდვა: - + Please remove the following redundant constraint: გთხოვთ, წაშალოთ შემდეგი დამატებითი შეზღუდვები: - + Please remove the following redundant constraints: გთხოვთ, წაშალოთ შემდეგი დამატებითი შეზღუდვები: - + The following constraint is partially redundant: ეს შეზღუდვა ნაწილობრივ დამატებითია: - + The following constraints are partially redundant: ეს შეზღუდვები ნაწილობრივ დამატებითია: - + Please remove the following malformed constraint: გთხოვთ, წაშალოთ შემდეგი არასწორად ფორმირებული შეზღუდვა: - + Please remove the following malformed constraints: გთხოვთ, წაშალოთ შემდეგი არასწორად ფორმირებული შეზღუდვები: - + Empty sketch ცარიელი ესკიზი - + Over-constrained: ზედმეტად-შეზღუდული: - + Malformed constraints: არასწორად შექმნილი შეზღუდვები: - + Redundant constraints: დამატებითი შეზღუდვები: - + Partially redundant: ნაწილობრივ დამატებითი: - + Solver failed to converge ამომხსნელის შეცდომა შეერთების დროს - + Under-constrained: საკმარისზე ნაკლებად შეზღუდული: - + %n DoF(s) %n თხ @@ -5091,7 +5091,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained სრულად შეზღუდული @@ -5735,7 +5735,7 @@ Eigen Sparse QR ალგორითმი ოპტიმიზებული ViewProviderSketch - + and %1 more და %1 სხვა @@ -5953,17 +5953,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! ესკიზი არასწორ შეზღუდვებს შეიცავს! - + The Sketch has partially redundant constraints! ესკიზი ნაწილობრივ დამატებით შეზღუდვებს შეიცავს! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! პარაბოლები მიგრირებულია. მიგრირებული ფაილები FreeCAD-ის წინა ვერსიებში არ გაიხსნება!! @@ -6580,32 +6580,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height კუთხე, სიგანე, სიმაღლე - + Center, width, height ცენტრი, სიგანე, სიმაღლე - + 3 corners 3 კუთხე - + Center, 2 corners ცენტრი, 2 კუთხე - + Rounded corners (U) მომრგვალებული კუთხეები (U) - + Create a rectangle with rounded corners. მომრგვალებული კუთხეების მქონე ოთხკუთხედის შექმნა. @@ -6613,12 +6613,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) ჩარჩო (J) - + Create two rectangles with a constant offset. ორი მართკუთხედის შექმნა მუდმივი წანაცვლებით. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ko.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ko.ts index 6927cf430a..6a135abbb2 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ko.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ko.ts @@ -145,7 +145,7 @@ Constrain diameter - 직경 구속 + 지름 구속 @@ -210,7 +210,7 @@ Create rectangle - 생성: 사각형 + 사각형 생성 @@ -238,12 +238,12 @@ Create regular polygon - 생성: 다각형 + 다각형 생성 Create a regular polygon in the sketcher - 스케치에 일반 다각형을 생성 + 스케치에 정다각형을 생성 @@ -278,7 +278,7 @@ Regular polygon - 일반 다각형 + 정다각형 @@ -348,12 +348,12 @@ Constrain diameter - 직경 구속 + 지름 구속 Fix the diameter of a circle or an arc - 원이나 호의 지름을 수정합니다 + 원이나 호의 지름을 고정합니다 @@ -577,7 +577,7 @@ with respect to a line or a third point Create a circle by 3 perimeter points - 세 점을 이용하여 원 생성 + 3개의 둘레 점을 이용하여 원 생성 @@ -585,12 +585,12 @@ with respect to a line or a third point Create arc by center - 생성: 중점을 이용한 호 + 중심을 기준으로 호 생성 Create an arc by its center and by its end points - 중점과 양 끝점을 이용하여 호 생성합니다. + 중심과 양 끝점을 이용하여 호를 생성합니다. @@ -650,7 +650,7 @@ with respect to a line or a third point Create circle by center - 중심 으로 원 생성 + 중심을 기준으로 원 생성 @@ -663,7 +663,7 @@ with respect to a line or a third point Create ellipse by 3 points - 생성: 3점을 이용한 타원 + 3점을 이용한 타원 생성 @@ -676,12 +676,12 @@ with respect to a line or a third point Create ellipse by center - 생성: 타원 + 중심을 기준으로 타원 생성 Create an ellipse by center in the sketch - 중점, 장축, 단축을 이용하여 타원 생성 + 중심을 기준으로 스케치에 타원 생성 @@ -689,7 +689,7 @@ with respect to a line or a third point Create fillet - 생성: 모깍기(Fillet) + 모깍기 @@ -702,12 +702,12 @@ with respect to a line or a third point Create heptagon - 생성: 7각형 + 칠각형 생성 Create a heptagon in the sketch - 7각형 생성 + 스케치에 칠각형 생성 @@ -715,12 +715,12 @@ with respect to a line or a third point Create hexagon - 생성: 6각형 + 육각형 생성 Create a hexagon in the sketch - 6각형 생성 + 스케치에 육각형 생성 @@ -728,12 +728,12 @@ with respect to a line or a third point Create line - 생성: 선 + 선 생성 Create a line in the sketch - 두 점을 이용하여 선 생성 + 스케치에 선을 생성 @@ -754,12 +754,12 @@ with respect to a line or a third point Create octagon - 생성: 8각형 + 팔각형 생성 Create an octagon in the sketch - 8각형 생성 + 스케치에 팔각형 생성 @@ -767,12 +767,12 @@ with respect to a line or a third point Create pentagon - 생성: 5각형 + 오각형 생성 Create a pentagon in the sketch - 5각형 생성 + 스케치에 오각형 생성 @@ -793,12 +793,12 @@ with respect to a line or a third point Create point - 생성: 점 + 점 생성 Create a point in the sketch - 점 생성 + 스케치에 점 생성 @@ -819,7 +819,7 @@ with respect to a line or a third point Create rectangle - 생성: 사각형 + 사각형 생성 @@ -845,7 +845,7 @@ with respect to a line or a third point Create regular polygon - 생성: 다각형 + 다각형 생성 @@ -858,12 +858,12 @@ with respect to a line or a third point Create slot - 생성: 직선 홈(Slot) + 직선 홈 생성 Create a slot in the sketch - 직선 홈(Slot) 생성 + 스케치에 직선 홈 생성 @@ -871,12 +871,12 @@ with respect to a line or a third point Create square - 생성: 정사각형 + 사각형 생성 Create a square in the sketch - 중점과 끝점을 이용하여 정사각형 생성 + 스케치에 사각형 생성 @@ -884,12 +884,12 @@ with respect to a line or a third point Create equilateral triangle - 생성: 정삼각형 + 정삼각형 생성 Create an equilateral triangle in the sketch - 중점과 끝점을 이용하여 정삼각형 생성 + 스케치에 정삼각형 생성 @@ -949,7 +949,7 @@ with respect to a line or a third point Edit sketch - 스케치 수정 + 스케치 편집 @@ -1053,7 +1053,7 @@ with respect to a line or a third point Attach sketch... - 스케치 부착하기... + 스케치 부착... @@ -1097,16 +1097,14 @@ then call this command, then choose the desired sketch. Mirror sketch - 스케치 투영 + 스케치 대칭 Creates a new mirrored sketch for each selected sketch by using the X or Y axes, or the origin point, as mirroring reference. - Creates a new mirrored sketch for each selected sketch -by using the X or Y axes, or the origin point, -as mirroring reference. + X 또는 Y 축 또는 원점을 기준으로 선택한 각 스케치에 대해 대칭된 새 스케치를 만듭니다. @@ -1460,7 +1458,7 @@ invalid constraints, degenerated geometry, etc. View sketch - 스케치 면에 수직 보기 + 스케치 보기 @@ -1847,7 +1845,7 @@ invalid constraints, degenerated geometry, etc. Attach sketch - 스케치 부착하기 + 스케치 부착 @@ -1857,7 +1855,7 @@ invalid constraints, degenerated geometry, etc. Create a mirrored sketch for each selected sketch - 각 선택된 스케치에 대한 거울상 스케치 생성하기 + 각 선택된 스케치에 대칭되는 스케치 생성 @@ -1918,7 +1916,7 @@ invalid constraints, degenerated geometry, etc. Create fillet - 생성: 모깍기(Fillet) + 모깍기 @@ -1943,7 +1941,7 @@ invalid constraints, degenerated geometry, etc. Add slot - 슬롯 추가하기 + 홈 추가 @@ -1988,7 +1986,7 @@ invalid constraints, degenerated geometry, etc. Paste in Sketcher - 스케치에서 붙여넣기 + 스케치에 붙여넣기 @@ -2050,29 +2048,29 @@ invalid constraints, degenerated geometry, etc. 스케치 구속 이름 바꾸기 - + Drag Point 점 끌기 - + Drag Curve 곡선 끌기 - + Drag Constraint 구속 끌기 - + Modify sketch constraints 스케치 구속 수정하기 Create a carbon copy - 복사본carbon copy을 만듭니다 + 먹지 복사본을 만듭니다 @@ -2142,59 +2140,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. 곡선의 교차점을 추정할 수 없습니다. 모깎기 하려는 곡선의 정점들 사이에 일치 구속을 추가해 보십시오. - + You are requesting no change in knot multiplicity. 매듭점 다중성에 대한 변경을 요청하지 않으셨습니다. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-조절곡선 기하형상 인덱스(GeoID)가 범위를 벗어났습니다. - - + + The Geometry Index (GeoId) provided is not a B-spline. 제공된 기하형상 인덱스(GeoId)는 B-조절곡선이 아닙니다. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. 매듭 지수가 범위를 벗어났습니다. OCC 표기법에 따라 첫 번째 매듭은 0이 아닌 지수 1을 가집니다. - + The multiplicity cannot be increased beyond the degree of the B-spline. 다중도는 B-스플라인의 정도 이상으로 증가할 수 없습니다. - + The multiplicity cannot be decreased beyond zero. 다중도는 0 이상으로 감소할 수 없습니다. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC는 최대 공차 내에서 다중도를 감소시킬 수 없습니다. - + Knot cannot have zero multiplicity. 매듭은 0개의 다중도를 가질 수 없습니다. - + Knot multiplicity cannot be higher than the degree of the B-spline. 매듭 다중도는 B-조절곡선의 각도보다 높을 수 없습니다. - + Knot cannot be inserted outside the B-spline parameter range. 매듭은 B-조절곡선 매개변수 범위 밖에서 삽입할 수 없습니다. @@ -3111,7 +3109,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c A copy requires at least one selected non-external geometric element - 복사는 최소한 하나의 선택된 외부 geometric 요소가 필요합니다. + 복사는 외부 도형이 아닌 요소를 최소한 하나 선택해야 합니다. @@ -3188,7 +3186,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Arc Slot parameters - Arc Slot parameters + 호 형태의 홈 매개변수 @@ -3251,22 +3249,22 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c This object belongs to another part. - This object belongs to another part. + 이 객체는 다른 부품에 속해 있습니다. The selected sketch is not parallel to this sketch. Hold Ctrl+Alt to allow non-parallel sketches. - The selected sketch is not parallel to this sketch. Hold Ctrl+Alt to allow non-parallel sketches. + 선택된 스케치는 이 스케치와 평행하지 않습니다. 평행하지 않은 스케치를 허용하려면 Ctrl+Alt키를 누르세요. The XY axes of the selected sketch do not have the same direction as this sketch. Hold Ctrl+Alt to disregard it. - The XY axes of the selected sketch do not have the same direction as this sketch. Hold Ctrl+Alt to disregard it. + 선택된 스케치의 XY축 방향이 스케치와 같지 않습니다. 무시하려면 Ctrl+Alt를 누르세요. The origin of the selected sketch is not aligned with the origin of this sketch. Hold Ctrl+Alt to disregard it. - The origin of the selected sketch is not aligned with the origin of this sketch. Hold Ctrl+Alt to disregard it. + 선택된 스케치의 원점이 이 스케치와 정렬되지 않습니다. 무시하려면 Ctrl+Alt를 누르세요. @@ -3344,12 +3342,12 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Horizontal Distance - 수평 길이 + 수평 거리 Vertical Distance - 수직 길이 + 수직 거리 @@ -3364,7 +3362,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Weight - Weight + 가중치 @@ -3500,12 +3498,12 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Diameter: - 직경: + 지름: Insert weight - Insert weight + 중량 삽입 @@ -3555,7 +3553,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Construction - Construction + 보조선 @@ -3678,12 +3676,12 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Horizontal Distance - 수평 길이 + 수평 거리 Vertical Distance - 수직 길이 + 수직 거리 @@ -3738,22 +3736,22 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Layer - Layer + Layer 0 - Layer 0 + 층 0 Layer 1 - Layer 1 + 층 1 Hidden - Hidden + 숨김 @@ -3880,7 +3878,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Reverse direction - Reverse direction + 역방향 @@ -3956,12 +3954,12 @@ reflected on copies Create regular polygon - 생성: 다각형 + 다각형 생성 Number of sides: - Number of sides: + 변의 수: @@ -3980,7 +3978,7 @@ reflected on copies Task panel widgets - Task panel widgets + 작업판 위젯 @@ -4039,7 +4037,7 @@ Requires to re-enter edit mode to take effect. Disable shading in edit mode - Disable shading in edit mode + 편집 상태에서는 음영처리 비활성화 @@ -4095,10 +4093,10 @@ This setting is only for the toolbar. Whichever you choose, all tools are always 'Auto': The tool will apply radius to arcs and diameter to circles. 'Diameter': The tool will apply diameter to both arcs and circles. 'Radius': The tool will apply radius to both arcs and circles. - While using the Dimension tool you may choose how to handle circles and arcs: -'Auto': The tool will apply radius to arcs and diameter to circles. -'Diameter': The tool will apply diameter to both arcs and circles. -'Radius': The tool will apply radius to both arcs and circles. + 치수 도구를 사용하는 동안 원과 호를 처리하는 방법을 선택할 수 있습니다: +'자동': 치수 도구는 원호의 경우에는 반지름을, 원의 경우에는 지름을 적용합니다. +'지름': 치수 도구는 원호와 원의 경우 모두 지름을 적용합니다. +'반지름': 치수 도구는 원호와 원의 경우 모두 반지름을 적용합니다. @@ -4108,7 +4106,7 @@ This setting is only for the toolbar. Whichever you choose, all tools are always On-View-Parameters: - On-View-Parameters: + 즉석 매개변수 @@ -4126,10 +4124,10 @@ This setting is only for the toolbar. Whichever you choose, all tools are always 'Disabled': On-View-Parameters are completely disabled. 'Only dimensional': Only dimensional On-View-Parameters are visible. They are the most useful. For example the radius of a circle. 'All': Both dimensional and positional On-View-Parameters. Positionals are the (x,y) position of the cursor. For example for the center of a circle. - Choose a visibility mode for the On-View-Parameters: -'Disabled': On-View-Parameters are completely disabled. -'Only dimensional': Only dimensional On-View-Parameters are visible. They are the most useful. For example the radius of a circle. -'All': Both dimensional and positional On-View-Parameters. Positionals are the (x,y) position of the cursor. For example for the center of a circle. + 즉석 매개변수의 표시 방법을 선택합니다: +'비활성화': 즉석에서 입력 가능한 매개변수가 표시되지 않습니다. +'치수만 표시': 즉석에서 입력 가능한 치수 매개변수만 표시됩니다. 가장 유용합니다. 예를 들면 원의 반지름을 즉석에서 입력하면서 스케치 할 수 있습니다. +'모두 표시': 즉석에서 입력 가능한 치수 및 위치 매개변수를 모두 표시합니다. 위치는 커서의 (x,y) 위치입니다. 예를 들어 원의 중심의 좌표를 즉석에서 입력하며 스케치 할 수 있습니다. @@ -4174,7 +4172,7 @@ This setting is only for the toolbar. Whichever you choose, all tools are always Position and dimensions - Position and dimensions + 위치 및 치수 @@ -4187,7 +4185,7 @@ This setting is only for the toolbar. Whichever you choose, all tools are always Sketch editing - 스케치 수정 + 스케치 편집 @@ -4308,12 +4306,12 @@ Defaults to: %N = %V Cursor coordinates will use the system decimals setting instead of the short form. - Cursor coordinates will use the system decimals setting instead of the short form. + 커서의 좌표는 짧은 형식 대신 시스템의 소수점 설정을 사용합니다. Use system decimals setting for cursor coordinates - Use system decimals setting for cursor coordinates + 커서의 좌표에 시스템의 소수점 설정을 사용합니다. @@ -4364,13 +4362,13 @@ Defaults to: %N = %V When entering edit mode, force orthographic view of camera. Works only when "Restore camera position after editing" is enabled. - When entering edit mode, force orthographic view of camera. -Works only when "Restore camera position after editing" is enabled. + 스케치 편집 상태로 들어갈 때, 카메라가 스케치면에 직교되도록 강제합니다. +"편집 후 카메라 위치 복원"이 활성화된 경우에만 작동합니다. Force orthographic camera when entering edit - Force orthographic camera when entering edit + 스케치 편집시 직교 카메라 강제 적용 @@ -4550,7 +4548,7 @@ However, no constraints linking to the endpoints were found. Check to toggle filters - Check to toggle filters + 여과기를 전환 하려면 선택 @@ -4624,7 +4622,7 @@ However, no constraints linking to the endpoints were found. Check to toggle filters - Check to toggle filters + 여과기를 전환 하려면 선택 @@ -4642,18 +4640,18 @@ However, no constraints linking to the endpoints were found. 설정 - - - - - - - - - - + + + + + + + + + + Construction - Construction + 보조선 @@ -4661,101 +4659,101 @@ However, no constraints linking to the endpoints were found. 요소 - - - - + + + + Point - - - - - - - - - - + + + + + + + + + + Internal 내부 - - - - + + + + Line - - - - + + + + Arc - - - - + + + + Circle - - - - + + + + Ellipse 타원 - - - - + + + + Elliptical Arc 타원형 호 - - - - + + + + Hyperbolic Arc 쌍곡선형 호 - - - - + + + + Parabolic Arc 포물선형 호 - - - - + + + + B-spline B-조절곡선 - - - - + + + + Other 기타 - + Extended information Extended information @@ -4816,7 +4814,7 @@ However, no constraints linking to the endpoints were found. Sketcher validation - 스케쳐 validation + 스케치 유효성 검사 @@ -4858,7 +4856,7 @@ This is purely based on topological shape of the sketch and not on its geometry/ If checked, construction geometries are ignored in the search - If checked, construction geometries are ignored in the search + 선택하면, 검색에서 보조선은 무시됩니다 @@ -4976,119 +4974,119 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch - 스케치 수정 + 스케치 편집 - + A dialog is already open in the task panel 테스크 패널에 이미 다이얼로그가 열려있습니다. - + Do you want to close this dialog? 다이얼로그를 닫으시겠습니까? - + Invalid sketch 유효하지 않은 스케치 - + Do you want to open the sketch validation tool? 스케치 확인 도구를 여시겠습니까? - + The sketch is invalid and cannot be edited. 스키체가 유효하지 않으므로 수정할 수 없습니다. - + Please remove the following constraint: 다음 구속을 제거 하십시오. - + Please remove at least one of the following constraints: 다음 구속중 하나 이상을 제거하십시오. - + Please remove the following redundant constraint: 다음의 중복되는 구속을 제거하세요: - + Please remove the following redundant constraints: 중복 구속을 제거하세요: - + The following constraint is partially redundant: 아래의 구속은 부분적으로 중복됩니다: - + The following constraints are partially redundant: 아래의 구속들은 부분적으로 중복됩니다. - + Please remove the following malformed constraint: 아래의 잘못된 구속을 제거하세요: - + Please remove the following malformed constraints: 아래의 잘못된 구속들을 제거하세요: - + Empty sketch 빈 스케치 - + Over-constrained: 과도한 구속: - + Malformed constraints: 잘못된 구속들 - + Redundant constraints: 중복되는 구속들: - + Partially redundant: 부분적인 중복: - + Solver failed to converge Solver failed to converge - + Under-constrained: - Under-constrained: + 구속되지 않음: - + %n DoF(s) %n 자유도 - + Fully constrained 완전히 구속됨 @@ -5189,7 +5187,7 @@ This is done by analyzing the sketch geometries and constraints. Fix the diameter of a circle or an arc - 원이나 호의 지름을 수정합니다 + 원이나 호의 지름을 고정합니다 @@ -5230,12 +5228,12 @@ This is done by analyzing the sketch geometries and constraints. Center - 중앙 + 중심 3 rim points - 세 점(3 points) + 테두리 점 3개 @@ -5244,7 +5242,7 @@ This is done by analyzing the sketch geometries and constraints. Create a heptagon by its center and by one corner - 중점과 모서리 한 점을 이용하여 7각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 칠각형을 생성합니다. @@ -5253,7 +5251,7 @@ This is done by analyzing the sketch geometries and constraints. Create a hexagon by its center and by one corner - 중점과 모서리 한 점을 이용하여 6각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 육각형을 생성합니다. @@ -5270,13 +5268,13 @@ This is done by analyzing the sketch geometries and constraints. Create an octagon by its center and by one corner - 중점과 모서리 한 점을 이용하여 8각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 팔각형을 생성합니다. Create a regular polygon by its center and by one corner - 중점과 한 구석을 이용하여 정다각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 정다각형을 생성합니다. @@ -5285,7 +5283,7 @@ This is done by analyzing the sketch geometries and constraints. Create a pentagon by its center and by one corner - 중점과 모서리 한 점을 이용하여 5각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 오각형을 생성합니다. @@ -5310,7 +5308,7 @@ This is done by analyzing the sketch geometries and constraints. Create a square by its center and by one corner - 중점과 모서리 한 점을 이용하여 정사각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 사각형을 생성합니다. @@ -5319,7 +5317,7 @@ This is done by analyzing the sketch geometries and constraints. Create an equilateral triangle by its center and by one corner - 중점과 모서리 한 점을 이용하여 정삼각형을 생성합니다. + 중심과 모퉁이 한 점을 이용하여 정삼각형을 생성합니다. @@ -5461,7 +5459,7 @@ Do you want to detach it from the support? Default algorithm used for Sketch solving - 기본 알고리즘 + 스케치 해결에 사용되는 기본 연산법 @@ -5481,7 +5479,7 @@ BFGS solver uses the Broyden–Fletcher–Goldfarb–Shanno algorithm. BFGS - BFGS + BFGS @@ -5528,7 +5526,7 @@ BFGS solver uses the Broyden–Fletcher–Goldfarb–Shanno algorithm. Maximum number of iterations of the default algorithm - 기본 알고리즘의 계산을 위한 최대 반복 횟수 + 기본 연산법의 최대 반복 횟수 @@ -5580,7 +5578,7 @@ to determine whether a solution converges or not QR algorithm: - QR algorithm: + QR연산법 @@ -5614,12 +5612,12 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster 1E-13 - 1E-13 + 1E-13 Solving algorithm used for determination of Redundant constraints - 중복 구속 결정에 사용되는 해결 알고리즘 + 중복 구속 결정에 사용되는 해결 연산법 @@ -5649,7 +5647,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster If selected, the Maximum iterations value for the redundant algorithm is multiplied by the sketch size - 선택 시, 중복 알고리즘의 최대 반복 값에 스케치의 크기가 곱해집니다. + 선택 시, 중복 해결법의 최대 반복 값에 스케치의 크기가 곱해집니다. @@ -5679,7 +5677,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster 1E-10 - 1E-10 + 1E-10 @@ -5730,7 +5728,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more and %1 more @@ -5817,12 +5815,12 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster Grid settings - Grid settings + 격자 설정 A grid will be shown - A grid will be shown + 격자가 보여짐 @@ -5832,7 +5830,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster Grid Auto Spacing - Grid Auto Spacing + 격자 자동 간격 @@ -5843,8 +5841,8 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster Distance between two subsequent grid lines. If 'Grid Auto Spacing' is enabled, will be used as base value. - Distance between two subsequent grid lines. -If 'Grid Auto Spacing' is enabled, will be used as base value. + 두 개의 후속 격자선 사이의 거리. +'격자 자동 간격'이 활성화된 경우, 기본 값으로 사용됩니다. @@ -5861,38 +5859,38 @@ The grid spacing change if it becomes smaller than this number of pixel. Grid display - Grid display + 격자 표시 Minor grid lines - Minor grid lines + 보조 격자선 Major grid lines - Major grid lines + 주 격자선 Major grid line every: - Major grid line every: + 주 격자선 간격: Every N lines there will be a major line. Set to 1 to disable major lines. - Every N lines there will be a major line. Set to 1 to disable major lines. + N번째 마다 주 격자선이 있습니다. 주 격자선을 비활성화 하려면 1로 설정합니다. Line pattern - Line pattern + 선 종류 Line pattern used for grid lines. - Line pattern used for grid lines. + 주 격자선을 표시하는 선의 종류 @@ -5903,7 +5901,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Distance between two subsequent grid lines - Distance between two subsequent grid lines + 두 개의 후속 격자선 사이의 거리 @@ -5914,7 +5912,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Line pattern used for grid division. - Line pattern used for grid division. + 격자 분할에 사용되는 선의 종류 @@ -5927,38 +5925,38 @@ The grid spacing change if it becomes smaller than this number of pixel. Grid auto spacing - Grid auto spacing + 격자 자동 간격 Resize grid automatically depending on zoom. - Resize grid automatically depending on zoom. + 확대/축소에 따라 자동으로 격자 크기 조정 Spacing - Spacing + 간격 Distance between two subsequent grid lines. - Distance between two subsequent grid lines. + 두 개의 후속 격자선 사이의 거리. Notifications - + The Sketch has malformed constraints! 스케치에 잘못된 구속들이 있습니다! - + The Sketch has partially redundant constraints! 스케치에 부분적으로 중복되는 구속들이 있습니다! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6148,7 +6146,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Failed to add slot - Failed to add slot + 홈 추가 실패 @@ -6175,7 +6173,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Redundant constraint is not an autoconstraint. No autoconstraints or additional constraints were added. Please report! - Redundant constraint is not an autoconstraint. No autoconstraints or additional constraints were added. Please report! + 중복된 구속은 자동구속이 아닙니다. 자동 구속이나 추가적인 구속이 추가되지 않았습니다. 보고해 주세요! @@ -6200,7 +6198,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Failed to add arc slot - Failed to add arc slot + 호 형태의 홈 추가 실패 @@ -6247,34 +6245,34 @@ The grid spacing change if it becomes smaller than this number of pixel. Snap to objects - Snap to objects + 개체에 포착 New points will snap to the currently preselected object. It will also snap to the middle of lines and arcs. - New points will snap to the currently preselected object. It will also snap to the middle of lines and arcs. + 새 점이 현재 선택된 개체에 포착됩니다. 또한 선과 호의 중점에도 포착됩니다. Snap to grid - Snap to grid + 격자에 포착 New points will snap to the nearest grid line. Points must be set closer than a fifth of the grid spacing to a grid line to snap. - New points will snap to the nearest grid line. -Points must be set closer than a fifth of the grid spacing to a grid line to snap. + 새 점은 가장 가까운 격자선에 포착됩니다. +점을 격자선에 격자 간격의 5분의 1보다 가깝게 가져가야 포착할 수 있습니다. Snap angle - Snap angle + 포착 각도 Angular step for tools that use 'Snap at Angle' (line for instance). Hold CTRL to enable 'Snap at Angle'. The angle starts from the positive X axis of the sketch. - Angular step for tools that use 'Snap at Angle' (line for instance). Hold CTRL to enable 'Snap at Angle'. The angle starts from the positive X axis of the sketch. + '각도에 포착'을 사용하는 도구(예: 선) 의 각도 단계 입니다. '각도에 포착'을 활성화하려면 CTRL 키를 누릅니다. 각도는 스케치의 양(+) 의 X축에서 시작됩니다. @@ -6319,7 +6317,7 @@ Points must be set closer than a fifth of the grid spacing to a grid line to sna Toggle grid - Toggle grid + 격자 전환 @@ -6332,12 +6330,12 @@ Points must be set closer than a fifth of the grid spacing to a grid line to sna Toggle snap - Toggle snap + 포착 전환 Toggle all snap functionality. In the menu you can toggle 'Snap to grid' and 'Snap to objects' individually, and change further snap settings. - Toggle all snap functionality. In the menu you can toggle 'Snap to grid' and 'Snap to objects' individually, and change further snap settings. + 모든 포착 기능을 전환합니다. 메뉴에서 '격자에 포착' 및 '개체에 포착'을 개별적으로 전환할 수 있고 추가 포착 설정을 변경할 수 있습니다. @@ -6498,7 +6496,7 @@ Left clicking on empty space will validate the current constraint. Right clickin Checkbox 1 - Checkbox 1 + 확인란 1 @@ -6508,7 +6506,7 @@ Left clicking on empty space will validate the current constraint. Right clickin Checkbox 2 - Checkbox 2 + 확인란 2 @@ -6518,7 +6516,7 @@ Left clicking on empty space will validate the current constraint. Right clickin Checkbox 3 - Checkbox 3 + 확인란 3 @@ -6528,7 +6526,7 @@ Left clicking on empty space will validate the current constraint. Right clickin Checkbox 4 - Checkbox 4 + 확인란 4 @@ -6575,45 +6573,45 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height - Corner, width, height - - - - Center, width, height - Center, width, height - - - - 3 corners - 3 corners - - - - Center, 2 corners - Center, 2 corners - - - - Rounded corners (U) - Rounded corners (U) + 모퉁이, 너비, 높이 + Center, width, height + 중심, 너비, 높이 + + + + 3 corners + 세 모퉁이 + + + + Center, 2 corners + 중심, 두 모퉁이 + + + + Rounded corners (U) + 둥근 모퉁이(U) + + + Create a rectangle with rounded corners. - Create a rectangle with rounded corners. + 둥근 모퉁이의 사각형을 생성합니다. TaskSketcherTool_c2_rectangle - + Frame (J) - Frame (J) + 틀(J) - + Create two rectangles with a constant offset. 편차가 구속된 두 개의 사각형을 생성합니다. @@ -6670,12 +6668,12 @@ Instead equal constraints are applied between the original objects and their cop Slots - Slots + Slot tools. - Slot tools. + 홈 생성 도구 @@ -6683,12 +6681,12 @@ Instead equal constraints are applied between the original objects and their cop Create arc slot - Create arc slot + 호 형태의 홈 생성 Create an arc slot in the sketch - Create an arc slot in the sketch + 스케치에 호 형태의 홈을 생성 @@ -6722,49 +6720,49 @@ Instead equal constraints are applied between the original objects and their cop Appearance - 설정 + 외관 Working colors - Working colors + 스케치 작업중 색상 Creating line - Creating line + 선을 생성할 때 Color used while new sketch elements are created - Color used while new sketch elements are created + 새 스케치 요소가 생성되는 동안 사용되는 색 Coordinate text - Coordinate text + 좌표 문자 Text color of the coordinates - Text color of the coordinates + 좌표 문자색 Cursor crosshair - Cursor crosshair + 커서의 십자선 Color of crosshair cursor. (The one you get when creating a new sketch element.) - Color of crosshair cursor. -(The one you get when creating a new sketch element.) + 십자 커서 색상. +( 새로운 스케치 요소를 생성할 때 나타납니다.) Geometric element colors - Geometric element colors + 기하 요소 색상 @@ -6779,22 +6777,22 @@ Instead equal constraints are applied between the original objects and their cop Pattern - Pattern + 선종류 Width - 너비 + 두께 Color of fully constrained normal geometry in edit mode - Color of fully constrained normal geometry in edit mode + 편집 상태에서 완전히 구속된 도형의 색상 Color of normal geometry in edit mode - Color of normal geometry in edit mode + 편집 상태에서 일반적인 도형의 색상 @@ -6804,17 +6802,17 @@ Instead equal constraints are applied between the original objects and their cop Internal alignment geometry - Internal alignment geometry + 내부 정렬선 Color of fully constrained internal alignment geometry in edit mode - Color of fully constrained internal alignment geometry in edit mode + 편집 상태에서 완전히 구속된 내부 정렬선의 색상 Color of internal alignment geometry in edit mode - Color of internal alignment geometry in edit mode + 편집 상태에서 내부 정렬선의 색상 @@ -6824,7 +6822,7 @@ Instead equal constraints are applied between the original objects and their cop Color of geometry indicating a fully constrained sketch - Color of geometry indicating a fully constrained sketch + 완전히 구속된 도형임을 가리키는 색상 @@ -6844,7 +6842,7 @@ Instead equal constraints are applied between the original objects and their cop Color of vertices outside edit mode - Color of vertices outside edit mode + 편집 상태 밖에서의 꼭지점의 색상 @@ -6854,7 +6852,7 @@ Instead equal constraints are applied between the original objects and their cop Color of edges outside edit mode - Color of edges outside edit mode + 편집 상태 밖에서의 모서리의 색상 @@ -6864,7 +6862,7 @@ Instead equal constraints are applied between the original objects and their cop Line pattern of normal edges. - Line pattern of normal edges. + 일반적인 도형을 나타내는 선의 종류 @@ -6884,22 +6882,22 @@ Instead equal constraints are applied between the original objects and their cop Line pattern of construction edges. - Line pattern of construction edges. + 보조선을 나타내는 선의 종류 Width of construction edges. - 구성 모서리의 선두께 + 보조선의 선두께 Line pattern of internal aligned edges. - Line pattern of internal aligned edges. + 도형 내부 정렬선의 종류 Width of internal aligned edges. - Width of internal aligned edges. + 도형 내부 정렬선의 두께 @@ -6909,12 +6907,12 @@ Instead equal constraints are applied between the original objects and their cop Color of external geometry in edit mode - Color of external geometry in edit mode + 편집 상태에서 외부 도형의 색상 Line pattern of external edges. - Line pattern of external edges. + 외부 도형을 나타내는 선의 종류 @@ -6924,7 +6922,7 @@ Instead equal constraints are applied between the original objects and their cop Color of geometry indicating an invalid sketch - Color of geometry indicating an invalid sketch + 잘못된 스케치임을 나타내는 색상 @@ -6979,7 +6977,7 @@ Instead equal constraints are applied between the original objects and their cop Colors outside Sketcher - Colors outside Sketcher + 스케치 작업 밖에서의 색상 @@ -6987,7 +6985,7 @@ Instead equal constraints are applied between the original objects and their cop Copies (+'U'/ -'J') - Copies (+'U'/ -'J') + 복사본 (+'U'/-'J') @@ -6995,7 +6993,7 @@ Instead equal constraints are applied between the original objects and their cop Sides (+'U'/ -'J') - Sides (+'U'/ -'J') + 변(+'U'/-'J') @@ -7008,7 +7006,7 @@ Instead equal constraints are applied between the original objects and their cop Keep original geometries (U) - Keep original geometries (U) + 원본 도형 유지(U) @@ -7029,7 +7027,7 @@ Instead equal constraints are applied between the original objects and their cop C&opy in sketcher - C&opy in sketcher + 스케치에서 복사하기 @@ -7042,7 +7040,7 @@ Instead equal constraints are applied between the original objects and their cop C&ut in sketcher - C&ut in sketcher + 스케치에서 잘라내기 @@ -7055,7 +7053,7 @@ Instead equal constraints are applied between the original objects and their cop P&aste in sketcher - P&aste in sketcher + 스케치에 붙여넣기 @@ -7094,7 +7092,7 @@ Instead equal constraints are applied between the original objects and their cop Copies (+'U'/-'J') - Copies (+'U'/-'J') + 복사본 (+'U'/-'J') @@ -7102,7 +7100,7 @@ Instead equal constraints are applied between the original objects and their cop Rows (+'R'/-'F') - Rows (+'R'/-'F') + 열 (+'R'/-'F') @@ -7110,12 +7108,12 @@ Instead equal constraints are applied between the original objects and their cop Center - 중앙 + 중심 3 rim points - 세 점(3 points) + 테두리 점 3개 @@ -7128,7 +7126,7 @@ Instead equal constraints are applied between the original objects and their cop Create a chamfer between two lines or at a coincident point - Create a chamfer between two lines or at a coincident point + 두 선 사이 또는 일치 점에 모따기 생성 @@ -7141,7 +7139,7 @@ Instead equal constraints are applied between the original objects and their cop Create a fillet or chamfer between two lines - Create a fillet or chamfer between two lines + 두 선 사이에 모깎기 또는 모따기 생성 @@ -7149,12 +7147,12 @@ Instead equal constraints are applied between the original objects and their cop Arc ends - Arc ends + 둥근 마감 Flat ends - Flat ends + 평평한 마감 @@ -7162,7 +7160,7 @@ Instead equal constraints are applied between the original objects and their cop Center - 센터 + 중심 @@ -7175,7 +7173,7 @@ Instead equal constraints are applied between the original objects and their cop Preserve corner (U) - Preserve corner (U) + 모퉁이 보존(U) @@ -7193,7 +7191,7 @@ Instead equal constraints are applied between the original objects and their cop Point, width, height - 점, 폭, 높이 + 점, 너비, 높이 diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_lt.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_lt.ts index 785547dc7c..6b48a933c6 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_lt.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_lt.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Rename sketch constraint - + Drag Point Drag Point - + Drag Curve Drag Curve - + Drag Constraint Drag Constraint - + Modify sketch constraints Modify sketch constraints @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Neįmanoma nustatyti kreivių sankirtos. Pabandykite pridėti tapatumo apribojimą tarp dviejų kreivių, kurias norite užapvalinti, viršūnių. - + You are requesting no change in knot multiplicity. Jūs prašote nekeisti mazgo sudėtingumo laipsnio. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Mazgo indeksas išėjo iš ribų. Atkreipkite dėmesį, kad pagal OCC žymėjimą, pirmojo mazgo indeksas yra lygus 1, o ne 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. The multiplicity cannot be increased beyond the degree of the B-spline. - + The multiplicity cannot be decreased beyond zero. Mazgo sudėtingumas negali būti mažesnis, nei nulis. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC negali sumažinti sudėtingumo didžiausio leistino nuokrypio ribose. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4647,16 +4647,16 @@ Visgi, nei vienas sąryšis ar apribojimas nėra susietas su galiniais šių lan Nuostatos - - - - - - - - - - + + + + + + + + + + Construction Construction @@ -4666,101 +4666,101 @@ Visgi, nei vienas sąryšis ar apribojimas nėra susietas su galiniais šių lan Elementai - - - - + + + + Point Taškas - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Atkarpa - - - - + + + + Arc Lankas - - - - + + + + Circle Apskritimas - - - - + + + + Ellipse Elipsė - - - - + + + + Elliptical Arc Elipsės lankas - - - - + + + + Hyperbolic Arc Hiperbolės lankas - - - - + + + + Parabolic Arc Parabolės lankas - - - - + + + + B-spline B-splainas, glodžioji kreivė - - - - + + + + Other Kita - + Extended information Extended information @@ -4981,112 +4981,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Edit sketch - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Sugadintas brėžinys - + Do you want to open the sketch validation tool? Ar norite atverti brėžinio tikrinimo priemonę? - + The sketch is invalid and cannot be edited. Brėžinys yra sugadintas ir negali būti taisomas. - + Please remove the following constraint: Prašom, pašalinkite šiuos sąryšius: - + Please remove at least one of the following constraints: Prašome pašalinti bent vieną šių sąryšių: - + Please remove the following redundant constraint: Prašome pašalinti šiuos perteklinius sąryšius: - + Please remove the following redundant constraints: Prašome pašalinti šiuos perteklinius sąryšius: - + The following constraint is partially redundant: The following constraint is partially redundant: - + The following constraints are partially redundant: The following constraints are partially redundant: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch Tuščias brėžinys - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5096,7 +5096,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5740,7 +5740,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more and %1 more @@ -5958,17 +5958,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6585,32 +6585,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6618,12 +6618,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts index f794a01e81..0ca82599cd 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_nl.ts @@ -2054,22 +2054,22 @@ invalid constraints, degenerated geometry, etc. Hernoem schets beperking - + Drag Point Sleeppunt - + Drag Curve Sleep Kromme - + Drag Constraint Sleep beperking - + Modify sketch constraints Wijzig schets beperkingen @@ -2146,59 +2146,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Niet in staat om het snijpunt van de bochten te raden. Probeer een samenvallende beperking toe te voegen tussen de vertexen van de curven die u wilt afronden. - + You are requesting no change in knot multiplicity. U vraagt geen verandering in de knoop multipliciteit. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. De knoop-index is buiten de grenzen. Merk op dat volgens de OCC-notatie de eerste knoop index 1 heeft en niet nul. - + The multiplicity cannot be increased beyond the degree of the B-spline. De multipliciteit mag niet groter zijn dan het aantal graden van de B-spline. - + The multiplicity cannot be decreased beyond zero. De multipliciteit kan niet lager zijn dan nul. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC is niet in staat om de multipliciteit binnen de maximale tolerantie te verlagen. - + Knot cannot have zero multiplicity. Knooppunt kan geen multipliciteit van nul hebben. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4646,16 +4646,16 @@ Er zijn echter geen beperkingen gevonden die verband houden met de eindpunten.Instellingen - - - - - - - - - - + + + + + + + + + + Construction Constructie @@ -4665,101 +4665,101 @@ Er zijn echter geen beperkingen gevonden die verband houden met de eindpunten.Elementen - - - - + + + + Point Punt - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Lijn - - - - + + + + Arc Boog - - - - + + + + Circle Cirkel - - - - + + + + Ellipse Ellips - - - - + + + + Elliptical Arc Elliptische boog - - - - + + + + Hyperbolic Arc Hyperbolische boog - - - - + + + + Parabolic Arc Parabolische boog - - - - + + + + B-spline B-spline - - - - + + + + Other Andere - + Extended information Uitgebreide informatie @@ -4980,112 +4980,112 @@ Dit wordt gedaan door de geometrie en beperkingen van de schets te analyseren. SketcherGui::ViewProviderSketch - + Edit sketch Schets bewerken - + A dialog is already open in the task panel Een dialoog is al geopend in het taakvenster - + Do you want to close this dialog? Wilt u dit dialoogvenster sluiten? - + Invalid sketch Ongeldige schets - + Do you want to open the sketch validation tool? Wilt u het schetsvalidatiegereedschap openen? - + The sketch is invalid and cannot be edited. De schets is ongeldig en kan niet worden bewerkt. - + Please remove the following constraint: Gelieve de volgende beperking te verwijderen: - + Please remove at least one of the following constraints: Gelieve minstens één van de volgende beperkingen te verwijderen: - + Please remove the following redundant constraint: Gelieve de volgende overbodige beperking te verwijderen: - + Please remove the following redundant constraints: Gelieve de volgende overbodige beperkingen te verwijderen: - + The following constraint is partially redundant: De volgende beperking is gedeeltelijk overbodig: - + The following constraints are partially redundant: De volgende beperkingen zijn gedeeltelijk overbodig: - + Please remove the following malformed constraint: Verwijder de volgende conflicterende beperking: - + Please remove the following malformed constraints: Verwijder de volgende conflicterende beperkingen: - + Empty sketch Lege schets - + Over-constrained: Over-bepaald: - + Malformed constraints: Ongeldige beperkingen: - + Redundant constraints: Overbodige beperkingen: - + Partially redundant: Gedeeltelijk overbodig: - + Solver failed to converge Solver kon niet convergeren - + Under-constrained: Onbepaald: - + %n DoF(s) %n vrijheidsgra(a)d(en) @@ -5093,7 +5093,7 @@ Dit wordt gedaan door de geometrie en beperkingen van de schets te analyseren. - + Fully constrained Volledig bepaald @@ -5737,7 +5737,7 @@ Eigen Sparse-QR-algoritme is geoptimaliseerd voor spaarzame matrices; meestal sn ViewProviderSketch - + and %1 more en %1 meer @@ -5955,17 +5955,17 @@ De rasterafstand verandert als deze kleiner wordt dan dit aantal pixels. Notifications - + The Sketch has malformed constraints! De schets heeft ongeldige beperkingen! - + The Sketch has partially redundant constraints! De schets heeft deels overbodige beperkingen! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolen zijn geconverteerd. Geconverteerde bestanden kunnen niet in vorige versies van FreeCAD worden geopend!! @@ -6581,32 +6581,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6614,12 +6614,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts index 6af3458bda..f7b9684260 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pl.ts @@ -2078,22 +2078,22 @@ nieprawidłowych wiązań, zdegenerowanej geometrii itp. Zmień nazwę wiązania szkicu - + Drag Point Przeciągnij punkt - + Drag Curve Przeciągnij krzywą - + Drag Constraint Przeciągnij wiązanie - + Modify sketch constraints Modyfikuj wiązania szkicu @@ -2170,59 +2170,59 @@ nieprawidłowych wiązań, zdegenerowanej geometrii itp. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nie można ustalić punktu przecięcia się krzywych. Spróbuj dodać wiązanie zbieżne pomiędzy wierzchołkami krzywych, które zamierzasz zaokrąglić. - + You are requesting no change in knot multiplicity. Żądasz niezmienności w wielokrotności węzłów. - - + + B-spline Geometry Index (GeoID) is out of bounds. Indeks geometrii krzywej złożonej (GeoID) jest poza zakresem. - - + + The Geometry Index (GeoId) provided is not a B-spline. Podany indeks geometrii krzywej złożonej (GeoId) nie jest łukiem krzywej złożonej. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Indeks węzłów jest poza wiązaniem. Zauważ, że zgodnie z zapisem OCC, pierwszy węzeł ma indeks 1, a nie zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. Wielokrotność nie może być zwiększona poza stopień krzywej złożonej. - + The multiplicity cannot be decreased beyond zero. Wielokrotność nie może zostać zmniejszona poniżej zera. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC nie jest w stanie zmniejszyć wielokrotności w ramach maksymalnej tolerancji. - + Knot cannot have zero multiplicity. Węzeł nie może mieć zerowej krotności. - + Knot multiplicity cannot be higher than the degree of the B-spline. Krotność węzłów nie może być większa niż stopień krzywej złożonej. - + Knot cannot be inserted outside the B-spline parameter range. Węzła nie można wstawić poza zakresem parametrów krzywej złożonej. @@ -4681,16 +4681,16 @@ Nie znaleziono jednak żadnych powiązań z punktami końcowymi. Ustawienia - - - - - - - - - - + + + + + + + + + + Construction Konstrukcja @@ -4700,101 +4700,101 @@ Nie znaleziono jednak żadnych powiązań z punktami końcowymi. Elementy - - - - + + + + Point Punkt - - - - - - - - - - + + + + + + + + + + Internal Wewnętrzne - - - - + + + + Line Linia - - - - + + + + Arc Łuk - - - - + + + + Circle Okrąg - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Łuk eliptyczny - - - - + + + + Hyperbolic Arc Łuk hiperboliczny - - - - + + + + Parabolic Arc Łuk paraboliczny - - - - + + + + B-spline Krzywa złożona - - - - + + + + Other Inne - + Extended information Informacje rozszerzone @@ -5017,112 +5017,112 @@ Odbywa się to przez analizę geometrii szkicu i wiązań. SketcherGui::ViewProviderSketch - + Edit sketch Edytuj szkic - + A dialog is already open in the task panel Okno dialogowe jest już otwarte w panelu zadań - + Do you want to close this dialog? Czy chcesz zamknąć to okno? - + Invalid sketch Nieprawidłowy szkic - + Do you want to open the sketch validation tool? Czy chcesz otworzyć narzędzie sprawdzania szkicu? - + The sketch is invalid and cannot be edited. Szkic jest nieprawidłowy i nie może być edytowany. - + Please remove the following constraint: Usuń następujące wiązania: - + Please remove at least one of the following constraints: Usuń co najmniej jedno z następujących wiązań: - + Please remove the following redundant constraint: Usuń następujący zbędny wiąz: - + Please remove the following redundant constraints: Usuń następujące, nadmiarowe wiązania: - + The following constraint is partially redundant: Następujące wiązanie jest częściowo zbędne: - + The following constraints are partially redundant: Następujące wiązania są częściowo zbędne: - + Please remove the following malformed constraint: Proszę usunąć następujące błędnie sformułowane wiązanie: - + Please remove the following malformed constraints: Proszę usunąć następujące błędnie sformułowane wiązania: - + Empty sketch Pusty szkic - + Over-constrained: Wiązania nadmierne: - + Malformed constraints: Uszkodzone ograniczenia: - + Redundant constraints: Wiązania nadmiarowe: - + Partially redundant: Częściowo nadmiarowe: - + Solver failed to converge Solver nie osiągnął zbieżności - + Under-constrained: Niedostatecznie związane: - + %n DoF(s) %n stopień swobody @@ -5132,7 +5132,7 @@ Odbywa się to przez analizę geometrii szkicu i wiązań. - + Fully constrained W pełni związany @@ -5785,7 +5785,7 @@ Eigen Sparse QR, algorytm jest zoptymalizowany dla macierzy rzadkich, zwykle szy ViewProviderSketch - + and %1 more i %1 więcej @@ -6003,17 +6003,17 @@ Rozstaw siatki zmienia się, jeśli staje się mniejszy niż określona liczba p Notifications - + The Sketch has malformed constraints! Szkic zawiera zniekształcone wiązania! - + The Sketch has partially redundant constraints! Szkic zawiera częściowo zbędne wiązania! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabole zostały poddane migracji. Pliki po imporcie nie otworzą się w poprzednich wersjach programu FreeCAD!! @@ -6643,32 +6643,32 @@ Zamiast tego stosuje się wiązania równości pomiędzy oryginalnymi obiektami TaskSketcherTool_c1_rectangle - + Corner, width, height Narożnik, szerokość, wysokość - + Center, width, height Środek, szerokość, wysokość - + 3 corners Trzy wierzchołki - + Center, 2 corners Środek, dwa wierzchołki - + Rounded corners (U) Zaokrąglone narożniki (U) - + Create a rectangle with rounded corners. Utwórz prostokąt z zaokrąglonymi narożnikami. @@ -6676,12 +6676,12 @@ Zamiast tego stosuje się wiązania równości pomiędzy oryginalnymi obiektami TaskSketcherTool_c2_rectangle - + Frame (J) Obramowanie (J) - + Create two rectangles with a constant offset. Utwórz dwa prostokąty o stałym odsunięciu. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts index e78317814d..a68fe66509 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-BR.ts @@ -2055,22 +2055,22 @@ invalid constraints, degenerated geometry, etc. Renomear restrição do esboço - + Drag Point Arrastar Ponto - + Drag Curve Arrastar Curva - + Drag Constraint Restrição de arrasto - + Modify sketch constraints Modificar restrições do esboço @@ -2147,59 +2147,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Não é possível adivinhar a intersecção das curvas. Tente adicionar uma restrição coincidente entre os vértices das curvas que você pretende filetar. - + You are requesting no change in knot multiplicity. Você não solicitou nenhuma mudança de multiplicidade em nós. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. O índice do nó está fora dos limites. Note que, de acordo com a notação do OCC, o primeiro nó tem índice 1 e não zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. A multiplicidade não pode ser aumentada além do grau de B-spline. - + The multiplicity cannot be decreased beyond zero. A multiplicidade não pode ser diminuída abaixo de zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. O OCC não consegue diminuir a multiplicidade dentro de tolerância máxima. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -2220,17 +2220,17 @@ invalid constraints, degenerated geometry, etc. Autoconstraint error: Unsolvable sketch while applying coincident constraints. - Autoconstraint error: Unsolvable sketch while applying coincident constraints. + Erro de restrição automática: esboço sem solução ao aplicar restrições coincidentes. Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. - Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. + Erro de restrição automática: esboço sem solução ao aplicar restrições verticais/horizontais. Autoconstraint error: Unsolvable sketch while applying equality constraints. - Autoconstraint error: Unsolvable sketch while applying equality constraints. + Erro de restrição automática: esboço sem solução ao aplicar restrições de igualdade. @@ -2240,17 +2240,17 @@ invalid constraints, degenerated geometry, etc. Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. - Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. + Erro de restrição automática: esboço sem solução após aplicar restrições horizontais e verticais. Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. - Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. + Erro de restrição automática: esboço sem solução após aplicar restrições ponto a ponto. Autoconstraint error: Unsolvable sketch after applying equality constraints. - Autoconstraint error: Unsolvable sketch after applying equality constraints. + Erro de restrição automática: esboço sem solução após aplicar restrições de igualdade. @@ -4647,16 +4647,16 @@ No entanto, nenhuma restrição foi encontrada nos pontos de extremidade.Configurações - - - - - - - - - - + + + + + + + + + + Construction Construção @@ -4666,101 +4666,101 @@ No entanto, nenhuma restrição foi encontrada nos pontos de extremidade.Elementos - - - - + + + + Point Ponto - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Linha - - - - + + + + Arc Arco - - - - + + + + Circle Círculo - - - - + + + + Ellipse Elipse - - - - + + + + Elliptical Arc Arco elíptico - - - - + + + + Hyperbolic Arc Arco hiperbólico - - - - + + + + Parabolic Arc Arco parabólico - - - - + + + + B-spline B-spline - - - - + + + + Other Outro - + Extended information Informação adicional @@ -4981,112 +4981,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Editar esboço - + A dialog is already open in the task panel Uma caixa de diálogo já está aberta no painel de tarefas - + Do you want to close this dialog? Deseja fechar este diálogo? - + Invalid sketch Esboço inválido - + Do you want to open the sketch validation tool? Você quer abrir a ferramenta de validação de esboço? - + The sketch is invalid and cannot be edited. O esboço é inválido e não pode ser editado. - + Please remove the following constraint: Por favor, remova a seguinte restrição: - + Please remove at least one of the following constraints: Por favor remova pelo menos uma das seguintes restrições: - + Please remove the following redundant constraint: Por favor, remova a seguinte restrição redundante: - + Please remove the following redundant constraints: Por favor, remova as seguintes restrições redundantes: - + The following constraint is partially redundant: A restrição seguinte é parcialmente redundante: - + The following constraints are partially redundant: As restrições seguintes são parcialmente redundantes: - + Please remove the following malformed constraint: Por favor remova as seguintes restrições malformadas: - + Please remove the following malformed constraints: Por favor remova as seguintes restrições malformadas: - + Empty sketch Esboço vazio - + Over-constrained: Sobre-restrito: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5094,7 +5094,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5736,7 +5736,7 @@ o algorítimo Eigen Sparse QR é otimizado para matrizes escassas; geralmente é ViewProviderSketch - + and %1 more and %1 more @@ -5954,17 +5954,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6581,32 +6581,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6614,12 +6614,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.ts index aea33f37b5..e8a4a6c57d 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_pt-PT.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Rename sketch constraint - + Drag Point Arrastar Ponto - + Drag Curve Arrastar Curva - + Drag Constraint Arrastar Restrição - + Modify sketch constraints Modify sketch constraints @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Não é possível calcular a interseção das curvas. Tente adicionar uma restrição coincidente entre os vértices das curvas das quais pretende fazer a concordância. - + You are requesting no change in knot multiplicity. Você não está a solicitar nenhuma mudança na multiplicidade de nó. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. O índice do nó está fora dos limites. Note que, de acordo com a notação de OCC, o primeiro nó tem índice 1 e não zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. A multiplicidade não pode ser aumentada além do grau de B-spline. - + The multiplicity cannot be decreased beyond zero. A multiplicidade não pode ser diminuída, abaixo de zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC é incapaz de diminuir a multiplicidade dentro de tolerância máxima. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4648,16 +4648,16 @@ No entanto, nenhuma restrição foi encontrada nos pontos de extremidade.Ajustes - - - - - - - - - - + + + + + + + + + + Construction Construção @@ -4667,101 +4667,101 @@ No entanto, nenhuma restrição foi encontrada nos pontos de extremidade.Elementos - - - - + + + + Point Ponto - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Linha - - - - + + + + Arc Arco - - - - + + + + Circle Círculo - - - - + + + + Ellipse Elipse - - - - + + + + Elliptical Arc Arco elíptico - - - - + + + + Hyperbolic Arc Arco hiperbólico - - - - + + + + Parabolic Arc Arco parabólico - - - - + + + + B-spline B-spline - - - - + + + + Other Outros - + Extended information Extended information @@ -4982,112 +4982,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Editar Esboço - + A dialog is already open in the task panel Já está aberta uma janela no painel de tarefas - + Do you want to close this dialog? Deseja fechar esta janela? - + Invalid sketch Esboço (sketch) inválido - + Do you want to open the sketch validation tool? Quer abrir a ferramenta de validação de esboço? - + The sketch is invalid and cannot be edited. O esboço é inválido e não pode ser editado. - + Please remove the following constraint: Por favor, remova a seguinte restrição: - + Please remove at least one of the following constraints: Por favor remova pelo menos uma das seguintes restrições: - + Please remove the following redundant constraint: Por favor, remova a seguinte restrição redundante: - + Please remove the following redundant constraints: Por favor, remova a seguinte restrição redundante: - + The following constraint is partially redundant: The following constraint is partially redundant: - + The following constraints are partially redundant: The following constraints are partially redundant: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch Esboço vazio - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5095,7 +5095,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5738,7 +5738,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more and %1 more @@ -5956,17 +5956,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6583,32 +6583,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6616,12 +6616,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts index 2f79ab49b6..4d16e8676b 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ro.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Redenumește constrângerea schiței - + Drag Point Trage punctul - + Drag Curve Trage Curba - + Drag Constraint Constrângere Drag - + Modify sketch constraints Modifică constrângerile schiței @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nu puteți ghici intersecția curbelor. Încercați să adăugați o constrângere de potrivire între vârfurile curbelor pe care intenționați să le completați. - + You are requesting no change in knot multiplicity. Nu cereți nicio schimbare în multiplicitatea nodului. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Indexul nod este în afara limitelor. Reţineţi că în conformitate cu notaţia OCC, primul nod are indexul 1 şi nu zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. Multiplicitatea nu poate fi crescută dincolo de gradul curbei B-spline. - + The multiplicity cannot be decreased beyond zero. Multiplicitatea nu poate fi diminuată sub zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC este în imposibilitatea de a reduce multiplicarea în limitele toleranței maxime. - + Knot cannot have zero multiplicity. Nu poate avea multiplicitate zero. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4643,16 +4643,16 @@ However, no constraints linking to the endpoints were found. Setari - - - - - - - - - - + + + + + + + + + + Construction Construcţie @@ -4662,101 +4662,101 @@ However, no constraints linking to the endpoints were found. Elemente - - - - + + + + Point Punct - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Linie - - - - + + + + Arc Arc - - - - + + + + Circle Cerc - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Arc eliptic - - - - + + + + Hyperbolic Arc Arc hiperbolic - - - - + + + + Parabolic Arc Arc parabolic - - - - + + + + B-spline Linie curbă - - - - + + + + Other Altceva - + Extended information Informații suplimentare @@ -4977,112 +4977,112 @@ Acest lucru se realizează prin analizarea geometrelor și constrângerilor schi SketcherGui::ViewProviderSketch - + Edit sketch Editaţi schiţa - + A dialog is already open in the task panel O fereastră de dialog este deja deschisă în fereastra de sarcini - + Do you want to close this dialog? Doriţi să închideţi această fereastră de dialog? - + Invalid sketch Schiță nevalidă - + Do you want to open the sketch validation tool? Doriți să să deschideți scula de validare a schiței? - + The sketch is invalid and cannot be edited. Schița nu este validă și nu poate fi editată. - + Please remove the following constraint: Înlătură urmatoarea constrângere: - + Please remove at least one of the following constraints: Înlaturaţi cel puţin una din urmatoarele constrângeri: - + Please remove the following redundant constraint: Înlăturaţi urmatoarele constrângeri redundante: - + Please remove the following redundant constraints: Înlăturaţi urmatoarele constrângeri redundante: - + The following constraint is partially redundant: Următoarea constrângere este parțial redundantă: - + The following constraints are partially redundant: Următoarele constrângeri sunt parțial redundante: - + Please remove the following malformed constraint: Eliminați următoarele constrângeri informate: - + Please remove the following malformed constraints: Eliminați următoarele constrângeri informate: - + Empty sketch Schita goala - + Over-constrained: Supraconstrânse: - + Malformed constraints: Constrângeri incorecte: - + Redundant constraints: Constrângeri redundante: - + Partially redundant: Parţial redundant: - + Solver failed to converge Rezolvitorul nu a putut converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n ore @@ -5091,7 +5091,7 @@ Acest lucru se realizează prin analizarea geometrelor și constrângerilor schi - + Fully constrained Complet constrâns @@ -5734,7 +5734,7 @@ Algoritmul QR Eigen Sparse este optimizat pentru matrici dispersați; de obicei ViewProviderSketch - + and %1 more și încă %1 @@ -5952,17 +5952,17 @@ Schimbarea spațierii grilei dacă devine mai mică decât acest număr de pixel Notifications - + The Sketch has malformed constraints! Schița a malformat constrângerile! - + The Sketch has partially redundant constraints! Schița are constrângeri parțial redundante! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolele au fost migrate. Fișierele migrate nu vor fi deschise în versiunile anterioare de FreeCAD! @@ -6579,32 +6579,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Colţ, lăţime, înălţime - + Center, width, height Centru, lățime, înălțime - + 3 corners 3 colţuri - + Center, 2 corners Centru, 2 colțuri - + Rounded corners (U) Colţuri rotunjite (U) - + Create a rectangle with rounded corners. Creați un dreptunghi cu colțuri rotunjite. @@ -6612,12 +6612,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Creează două dreptunghiuri cu o compensare constantă. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts index 809d521786..572ce4d2ac 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_ru.ts @@ -1106,9 +1106,9 @@ then call this command, then choose the desired sketch. Creates a new mirrored sketch for each selected sketch by using the X or Y axes, or the origin point, as mirroring reference. - Creates a new mirrored sketch for each selected sketch -by using the X or Y axes, or the origin point, -as mirroring reference. + Создает новый зеркальный эскиз для каждого выбранного эскиза, +используя оси X или Y или исходную точку, +как точку отсчета зеркального отображения. @@ -1241,7 +1241,7 @@ This will clear the 'AttachmentSupport' property, if any. Select under-constrained elements - Select under-constrained elements + Выберите недостаточно ограниченные элементы @@ -1431,8 +1431,7 @@ into driving or reference mode Validates a sketch by looking at missing coincidences, invalid constraints, degenerated geometry, etc. - Validates a sketch by looking at missing coincidences, -invalid constraints, degenerated geometry, etc. + Проверяет эскиз, просматривая отсутствующие совпадения, недействительные ограничения, вырожденную геометрию и т. д. @@ -1651,7 +1650,7 @@ invalid constraints, degenerated geometry, etc. Activate/Deactivate constraints - Activate/Deactivate constraints + Вкл/выкл ограничение @@ -1805,7 +1804,7 @@ invalid constraints, degenerated geometry, etc. Swap point on object and tangency with point to curve tangency - Swap point on object and tangency with point to curve tangency + Поменять местами точку на объекте и касание с точкой на касание кривой @@ -2053,22 +2052,22 @@ invalid constraints, degenerated geometry, etc. Переименовать ограничение эскиза - + Drag Point Перетащить точку - + Drag Curve Перетащить кривую - + Drag Constraint Перетащить ограничение - + Modify sketch constraints Изменить ограничения эскиза @@ -2115,23 +2114,23 @@ invalid constraints, degenerated geometry, etc. Add sketch bSpline - Add sketch bSpline + Добавить эскиз bSpline Add sketch B-spline - Add sketch B-spline + Добавить эскиз B-сплайна Add line to sketch polyline - Add line to sketch polyline + Добавить строку в полилинию эскиза Add arc to sketch polyline - Add arc to sketch polyline + Добавить дугу в полилинию эскиза @@ -2145,61 +2144,61 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Не удалось рассчитать пересечение кривых. Попробуйте добавить ограничение совпадения между вершинами кривых, которые вы намерены скруглить. - + You are requesting no change in knot multiplicity. Вы не запрашиваете никаких изменений в множественности узлов. - - + + B-spline Geometry Index (GeoID) is out of bounds. - B-spline Geometry Index (GeoID) is out of bounds. + Индекс геометрии B-сплайна (GeoID) выходит за пределы допустимого диапазона. - - + + The Geometry Index (GeoId) provided is not a B-spline. - The Geometry Index (GeoId) provided is not a B-spline. + Предоставленный индекс геометрии (GeoId) не является B-сплайном. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Индекс узла выходит за границы. Обратите внимание, что в соответствии с нотацией OCC первый узел имеет индекс 1, а не ноль. - + The multiplicity cannot be increased beyond the degree of the B-spline. Кратность не может быть увеличена сверх степени B-сплайна. - + The multiplicity cannot be decreased beyond zero. Кратность не может быть уменьшена ниже нуля. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC неспособен уменьшить кратность в пределах максимального допуска. - + Knot cannot have zero multiplicity. Узел не может иметь нулевой кратности. - + Knot multiplicity cannot be higher than the degree of the B-spline. - Knot multiplicity cannot be higher than the degree of the B-spline. + Кратность узла не может быть выше степени B-сплайна. - + Knot cannot be inserted outside the B-spline parameter range. - Knot cannot be inserted outside the B-spline parameter range. + Узел не может быть вставлен за пределами диапазона параметров B-сплайна. @@ -2218,37 +2217,37 @@ invalid constraints, degenerated geometry, etc. Autoconstraint error: Unsolvable sketch while applying coincident constraints. - Autoconstraint error: Unsolvable sketch while applying coincident constraints. + Ошибка автоограничения: неразрешимый эскиз при применении совпадающих ограничений. Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. - Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. + Ошибка автоограничения: неразрешимый эскиз при применении вертикальных/горизонтальных ограничений. Autoconstraint error: Unsolvable sketch while applying equality constraints. - Autoconstraint error: Unsolvable sketch while applying equality constraints. + Ошибка автоограничения: Эскиз нерешаем при добавлении ограничения равенства. Autoconstraint error: Unsolvable sketch without constraints. - Autoconstraint error: Unsolvable sketch without constraints. + Ошибка автоограничения: Эскиз нерешаем без ограничений. Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. - Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. + Ошибка автоограничения: Эскиз нерешаем после добавления вертикального и горизонтального ограничений. Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. - Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. + Ошибка автоограничения: Эскиз нерешаем при добавлении ограничения совпадения точек. Autoconstraint error: Unsolvable sketch after applying equality constraints. - Autoconstraint error: Unsolvable sketch after applying equality constraints. + Ошибка автоограничения: Эскиз нерешаем после добавлении ограничения равенства. @@ -2600,7 +2599,7 @@ invalid constraints, degenerated geometry, etc. None of the selected points were constrained onto the respective curves, because they are part of the same element, they are both external geometry, or the edge is not eligible. - None of the selected points were constrained onto the respective curves, because they are part of the same element, they are both external geometry, or the edge is not eligible. + Ни одна из выбранных точек не была ограничена соответствующими кривыми, поскольку они являются частью одного и того же элемента, обе представляют собой внешнюю геометрию или край не подходит. @@ -2611,13 +2610,13 @@ invalid constraints, degenerated geometry, etc. Select either only one or more B-spline poles or only one or more arcs or circles from the sketch, but not mixed. - Select either only one or more B-spline poles or only one or more arcs or circles from the sketch, but not mixed. + Выберите либо только один или несколько полюсов B-сплайна, либо только одну или несколько дуг или окружностей из эскиза, но не смешанные. Select two endpoints of lines to act as rays, and an edge representing a boundary. The first selected point corresponds to index n1, second to n2, and the value sets the ratio n2/n1. Constraint_SnellsLaw - Select two endpoints of lines to act as rays, and an edge representing a boundary. The first selected point corresponds to index n1, second to n2, and the value sets the ratio n2/n1. + Выберите две конечные точки линий, которые будут выступать в качестве лучей, и ребро, представляющее границу. Первая выбранная точка соответствует индексу n1, вторая — n2, а значение задает отношение n2/n1. @@ -3046,17 +3045,17 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c At least one of the selected objects was not a B-spline and was ignored. - At least one of the selected objects was not a B-spline and was ignored. + По крайней мере один из выбранных объектов не был B-сплайном и был проигнорирован. Nothing is selected. Please select a B-spline. - Nothing is selected. Please select a B-spline. + Ничего не выбрано. Выберите B-сплайн. Please select a B-spline to insert a knot (not a knot on it). If the curve is not a B-spline, please convert it into one first. - Please select a B-spline to insert a knot (not a knot on it). If the curve is not a B-spline, please convert it into one first. + Пожалуйста, выберите B-сплайн для вставки узла (не узел на нем). Если кривая не является B-сплайном, пожалуйста, сначала преобразуйте ее в таковой. @@ -3224,7 +3223,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c B-spline parameters - B-spline parameters + Параметры B-сплайна @@ -4033,12 +4032,12 @@ Requires to re-enter edit mode to take effect. Disables the shaded view when entering the sketch edit mode. - Disables the shaded view when entering the sketch edit mode. + Отключает затененный вид при входе в режим редактирования эскиза. Disable shading in edit mode - Disable shading in edit mode + Отключить затенение в режиме редактирования @@ -4168,12 +4167,12 @@ This setting is only for the toolbar. Whichever you choose, all tools are always Dimensions only - Dimensions only + Только размеры Position and dimensions - Position and dimensions + Положение и размеры @@ -4640,16 +4639,16 @@ However, no constraints linking to the endpoints were found. Настройки - - - - - - - - - - + + + + + + + + + + Construction Конструктор @@ -4659,101 +4658,101 @@ However, no constraints linking to the endpoints were found. Элементы - - - - + + + + Point Точка - - - - - - - - - - + + + + + + + + + + Internal Внутренний - - - - + + + + Line Линия - - - - + + + + Arc Дуга - - - - + + + + Circle Окружность - - - - + + + + Ellipse Эллипс - - - - + + + + Elliptical Arc Дуга эллипса - - - - + + + + Hyperbolic Arc Гиперболическая дуга - - - - + + + + Parabolic Arc Параболическая дуга - - - - + + + + B-spline B-сплайн - - - - + + + + Other Нечто - + Extended information Расширенная информация @@ -4778,27 +4777,27 @@ However, no constraints linking to the endpoints were found. Click to select these conflicting constraints. - Click to select these conflicting constraints. + Нажмите, чтобы выбрать конфликтующие ограничения. Click to select these redundant constraints. - Click to select these redundant constraints. + Нажмите, чтобы выбрать избыточные ограничения. The sketch has unconstrained elements giving rise to those Degrees Of Freedom. Click to select these unconstrained elements. - The sketch has unconstrained elements giving rise to those Degrees Of Freedom. Click to select these unconstrained elements. + Эскиз имеет неограниченные элементы, порождающие эти Степени Свободы. Нажмите, чтобы выбрать элементы без ограничений. Click to select these malformed constraints. - Click to select these malformed constraints. + Нажмите, чтобы выбрать неправильно сформированные ограничения. Some constraints in combination are partially redundant. Click to select these partially redundant constraints. - Some constraints in combination are partially redundant. Click to select these partially redundant constraints. + Некоторые ограничения в сочетании частично избыточны. Нажмите, чтобы выбрать частично избыточные ограничения. @@ -4974,112 +4973,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Редактировать эскиз - + A dialog is already open in the task panel Диалог уже открыт в панели задач - + Do you want to close this dialog? Вы хотите закрыть этот диалог? - + Invalid sketch Эскиз повреждён - + Do you want to open the sketch validation tool? Открыть инструмент проверки наброска? - + The sketch is invalid and cannot be edited. Эскиз содержит ошибки и не может быть изменен. - + Please remove the following constraint: Пожалуйста, удалите следующие ограничения: - + Please remove at least one of the following constraints: Пожалуйста, удалите по крайней мере одно из следующих ограничений: - + Please remove the following redundant constraint: Пожалуйста, удалите следующие избыточные ограничения: - + Please remove the following redundant constraints: Пожалуйста, удалите следующие избыточные ограничения: - + The following constraint is partially redundant: Следующее ограничение частично избыточно: - + The following constraints are partially redundant: Следующие ограничения частично избыточны: - + Please remove the following malformed constraint: Пожалуйста, удалите следующее искаженное ограничение: - + Please remove the following malformed constraints: Пожалуйста, удалите следующие некорректые ограничения: - + Empty sketch Эскиз не содержащий элементов - + Over-constrained: Чрезмерное ограничение: - + Malformed constraints: Неверные ограничения: - + Redundant constraints: Избыточные ограничения: - + Partially redundant: Частично избыточны: - + Solver failed to converge Решатель не смог сместиться - + Under-constrained: - Under-constrained: + Недостаточно ограничен: - + %n DoF(s) %n DoF(Степени свободы) @@ -5089,7 +5088,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Полностью ограничен @@ -5218,12 +5217,12 @@ This is done by analyzing the sketch geometries and constraints. By control points - By control points + По контрольным точкам By knots - By knots + По узлам @@ -5731,7 +5730,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more и еще %1 @@ -5949,17 +5948,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! В эскизе неправильно сформированы ограничения! - + The Sketch has partially redundant constraints! Sketch имеет частично избыточные ограничения! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Параболы были перенесены. Перемещенные файлы не будут открыты в предыдущих версиях FreeCAD!! @@ -6011,7 +6010,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Selection has no valid geometries. B-splines and points are not supported yet. - Selection has no valid geometries. B-splines and points are not supported yet. + Выборка не имеет допустимых геометрий. B-сплайны и точки пока не поддерживаются. @@ -6077,12 +6076,12 @@ The grid spacing change if it becomes smaller than this number of pixel. Error deleting last pole/knot - Error deleting last pole/knot + Ошибка при удалении последнего поля/узла Error adding B-spline pole/knot - Error adding B-spline pole/knot + Ошибка добавления поля/группы B-сплайна @@ -6555,14 +6554,13 @@ Left clicking on empty space will validate the current constraint. Right clickin Apply equal constraints - Apply equal constraints + Применить ограничения равности If this option is selected dimensional constraints are excluded from the operation. Instead equal constraints are applied between the original objects and their copies. - If this option is selected dimensional constraints are excluded from the operation. -Instead equal constraints are applied between the original objects and their copies. + Если выбран этот параметр, размерные ограничения исключаются из операции. Вместо этого между исходными объектами и их копиями применяются равные ограничения. @@ -6576,32 +6574,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Угол, ширина, высота - + Center, width, height Центр, ширина, высота - + 3 corners 3 угла - + Center, 2 corners Центр, 2 угла - + Rounded corners (U) Скругленные углы (U) - + Create a rectangle with rounded corners. Создать прямоугольник с закруглёнными углами. @@ -6609,12 +6607,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Рамка (J) - + Create two rectangles with a constant offset. Создать два прямоугольника с постоянным смещением. @@ -6710,7 +6708,7 @@ Instead equal constraints are applied between the original objects and their cop Rotate / Polar transform - Rotate / Polar transform + Поворот/Полярное преобразование @@ -7001,7 +6999,7 @@ Instead equal constraints are applied between the original objects and their cop Degree (+'U'/ -'J') - Degree (+'U'/ -'J') + Степень (+'U'/ -'J') @@ -7082,7 +7080,7 @@ Instead equal constraints are applied between the original objects and their cop Move / Array transform - Move / Array transform + Преобразование перемещения / массива @@ -7302,17 +7300,17 @@ Instead equal constraints are applied between the original objects and their cop Press F to undo last point. - Press F to undo last point. + Нажмите F для отмены последней точки. Periodic (R) - Periodic (R) + Периодичность (R) Create a periodic B-spline. - Create a periodic B-spline. + Создать периодический B-сплайн. @@ -7321,7 +7319,7 @@ Instead equal constraints are applied between the original objects and their cop Fix the radius of an arc or a circle - Fix the radius of an arc or a circle + Исправить радиус дуги или круга @@ -7330,7 +7328,7 @@ Instead equal constraints are applied between the original objects and their cop Fix the radius/diameter of an arc or a circle - Fix the radius/diameter of an arc or a circle + Исправьте радиус/диаметр дуги или круга @@ -7338,14 +7336,13 @@ Instead equal constraints are applied between the original objects and their cop Apply equal constraints - Apply equal constraints + Применить ограничения равности If this option is selected dimensional constraints are excluded from the operation. Instead equal constraints are applied between the original objects and their copies. - If this option is selected dimensional constraints are excluded from the operation. -Instead equal constraints are applied between the original objects and their copies. + Если выбран этот параметр, размерные ограничения исключаются из операции. Вместо этого между исходными объектами и их копиями применяются равные ограничения. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts index 896fb4b8a2..d34fb6b787 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sl.ts @@ -2055,22 +2055,22 @@ invalid constraints, degenerated geometry, etc. Preimenuj očrtno omejilo - + Drag Point Vleci točko - + Drag Curve Vleci krivuljo - + Drag Constraint Vleci omejilo - + Modify sketch constraints Spremeni očrtno omejilo @@ -2147,59 +2147,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Ni mogoče uganiti presečišča krivulj. Poskusite dodati omejilo sovpadanja med vozlišči krivulj, ki jih nameravate zaokrožiti. - + You are requesting no change in knot multiplicity. Ne zahtevate spremembe večkratnosti vozla. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Oznaka vozla je izven meja. Upoštevajte, da ima v skladu z OCC zapisom prvi vozel oznako 1 in ne nič. - + The multiplicity cannot be increased beyond the degree of the B-spline. Večkratnost ne more biti povečana preko stopnje B-zlepka. - + The multiplicity cannot be decreased beyond zero. Večkratnost ne more biti zmanjšana pod ničlo. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC ne more zmanjšati večkratnost znotraj največjega dopustnega odstopanja. - + Knot cannot have zero multiplicity. Večkratnost vozla ne more biti nič. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4645,16 +4645,16 @@ However, no constraints linking to the endpoints were found. Nastavitve - - - - - - - - - - + + + + + + + + + + Construction Pomožni način @@ -4664,101 +4664,101 @@ However, no constraints linking to the endpoints were found. Prvine - - - - + + + + Point Točka - - - - - - - - - - + + + + + + + + + + Internal Notranja - - - - + + + + Line Črta - - - - + + + + Arc Lok - - - - + + + + Circle Krog - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Eliptični lok - - - - + + + + Hyperbolic Arc Hiperbolični Lok - - - - + + + + Parabolic Arc Parabolični Lok - - - - + + + + B-spline B-zlepek - - - - + + + + Other Drugo - + Extended information Podrobnejši podatki @@ -4979,112 +4979,112 @@ Izvede se s pregledom geometrij in omejil očrta. SketcherGui::ViewProviderSketch - + Edit sketch Uredi očrt - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Neveljaven očrt - + Do you want to open the sketch validation tool? Ali želite odprti orodje za preverjanje veljavnosti očrta? - + The sketch is invalid and cannot be edited. Očrt je neveljaven in ga ni mogoče urejati. - + Please remove the following constraint: Odstranite naslednjo omejilo: - + Please remove at least one of the following constraints: Odstranite vsaj eno od naslednjih omejil: - + Please remove the following redundant constraint: Odstranite naslednje čezmerno omejilo: - + Please remove the following redundant constraints: Odstranite naslednja čezmerna omejila: - + The following constraint is partially redundant: Naslednje omejilo je deloma čezmerno: - + The following constraints are partially redundant: Naslednja omejila so deloma čezmerna: - + Please remove the following malformed constraint: Odstranite naslednje narobe oblikovano omejilo: - + Please remove the following malformed constraints: Odstranite naslednja narobe oblikovana omejila: - + Empty sketch Prazen očrt - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Čezmerna omejila: - + Partially redundant: Delno čezmerno: - + Solver failed to converge Reševalniku je zbliževanje spodletelo - + Under-constrained: Under-constrained: - + %n DoF(s) %n prostostna stopnja @@ -5094,7 +5094,7 @@ Izvede se s pregledom geometrij in omejil očrta. - + Fully constrained Polnoomejen @@ -5738,7 +5738,7 @@ Eigen Sparse QR algoritem je optimiziran za redke razpredelnice; običajno hitre ViewProviderSketch - + and %1 more in še %1 @@ -5956,17 +5956,17 @@ Medčrtna razdalja se spremeni, če postane manjša od tega števila slikovnih t Notifications - + The Sketch has malformed constraints! Očrt vsebuje narobe oblikovana omejila! - + The Sketch has partially redundant constraints! Očrt vsebuje deloma čezmerna omejila! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabole so bile preseljene. Preseljenih datotek ne bo mogoče odpreti v prejšnjih FreeCADih! @@ -6583,32 +6583,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6616,12 +6616,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr-CS.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr-CS.ts index 79545cd788..7c56893acb 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr-CS.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr-CS.ts @@ -2054,22 +2054,22 @@ nevažeća ograničenja, degenerisanu geometriju, itd. Preimenuj ograničenja skice - + Drag Point Prevuci tačku - + Drag Curve Prevuci krivu - + Drag Constraint Prevuci ograničenje - + Modify sketch constraints Izmeni ograničenja skice @@ -2146,59 +2146,59 @@ nevažeća ograničenja, degenerisanu geometriju, itd. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Nije moguće odrediti presečnu tačku krivih. Pokušaj da dodaš ograničenje podudarnosti između tačaka krivih gde nameravaš da napraviš zaobljenje. - + You are requesting no change in knot multiplicity. Ne zahtevate promenu u višestrukosti čvorova. - - + + B-spline Geometry Index (GeoID) is out of bounds. Indeks B-Splajn geometrije (GeoID) je van granica. - - + + The Geometry Index (GeoId) provided is not a B-spline. Navedeni Geometrijski index (GeoId) nije B-splajn kriva. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Indeks čvorova je van granica. Imajte na umu da u skladu sa OCC napomenom, prvi čvor ima indeks 1, a ne nula. - + The multiplicity cannot be increased beyond the degree of the B-spline. Višestrukost se ne može povećati iznad stepena B-splajn krive. - + The multiplicity cannot be decreased beyond zero. Višestrukost ne može biti manje od nule. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC nije u stanju da smanji višestrukost unutar maksimalne tolerancije. - + Knot cannot have zero multiplicity. Čvor ne može imati nultu višestrukost. - + Knot multiplicity cannot be higher than the degree of the B-spline. Višestrukost čvorova ne može biti veća od stepena B-Splajn krive. - + Knot cannot be inserted outside the B-spline parameter range. Čvor se ne može umetnuti izvan opsega parametara B-Splajna. @@ -4646,16 +4646,16 @@ Međutim, nisu pronađena nikakva ograničenja vezana za krajnje tačke.Podešavanja - - - - - - - - - - + + + + + + + + + + Construction Pomoćna geometrija @@ -4665,101 +4665,101 @@ Međutim, nisu pronađena nikakva ograničenja vezana za krajnje tačke.Elementi - - - - + + + + Point Tačka - - - - - - - - - - + + + + + + + + + + Internal Unutrašnji - - - - + + + + Line Duž - - - - + + + + Arc Kružni luk - - - - + + + + Circle Krug - - - - + + + + Ellipse Elipsa - - - - + + + + Elliptical Arc Eliptični Luk - - - - + + + + Hyperbolic Arc Hiperbolični luk - - - - + + + + Parabolic Arc Parabolični luk - - - - + + + + B-spline B-splajn kriva - - - - + + + + Other Drugo - + Extended information Proširene informacije @@ -4980,112 +4980,112 @@ Ovo se radi analizom geometrije i ograničenja skice. SketcherGui::ViewProviderSketch - + Edit sketch Uredi skicu - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch Neispravna skica - + Do you want to open the sketch validation tool? Da li želiš da otvoriš alatku za proveru skice? - + The sketch is invalid and cannot be edited. Skica sadrži greške i ne može biti menjana. - + Please remove the following constraint: Ukloni sledeće ograničenje: - + Please remove at least one of the following constraints: Ukloni bar jedno od sledećih ograničenja: - + Please remove the following redundant constraint: Ukloni sledeće suvišno ograničenje: - + Please remove the following redundant constraints: Ukloni sledeća suvišna ograničenja: - + The following constraint is partially redundant: Sledeće ograničenje je suvišno: - + The following constraints are partially redundant: Sledeća ograničenja su suvišna: - + Please remove the following malformed constraint: Ukloni sledeće oštećeno ograničenje: - + Please remove the following malformed constraints: Ukloni sledeće oštećena ograničenja: - + Empty sketch Prazna skica - + Over-constrained: Previše ograničeno: - + Malformed constraints: Oštećena ograničenja: - + Redundant constraints: Suvišna ograničenja: - + Partially redundant: Delimično suvišna: - + Solver failed to converge Solver nije uspeo da se približi - + Under-constrained: Suvišno ograničeno: - + %n DoF(s) %n Stepeni slobode @@ -5094,7 +5094,7 @@ Ovo se radi analizom geometrije i ograničenja skice. - + Fully constrained Potpuno ograničena @@ -5738,7 +5738,7 @@ Eigen redak QR algoritam je optimizovan za retke matrice; obično brže ViewProviderSketch - + and %1 more i %1 više @@ -5956,17 +5956,17 @@ Razmak mreže se menja ako postane manji od ovog broja piksela. Notifications - + The Sketch has malformed constraints! Skica ima deformisana ograničenja! - + The Sketch has partially redundant constraints! Skica ima delimično suvišna ograničenja! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabole su migrirale. Migrirane datoteke neće biti moguće otvarati u prethodnim verzijama FreeCAD-a!! @@ -6583,32 +6583,32 @@ Umesto toga, između originalnih objekata i njihovih kopija se primenjuju ograni TaskSketcherTool_c1_rectangle - + Corner, width, height Ugao, širina, visina - + Center, width, height Centar, širina, visina - + 3 corners 3 ugla - + Center, 2 corners Centar, dva ugla - + Rounded corners (U) Zaobljeni uglovi (U) - + Create a rectangle with rounded corners. Napravi pravougaonik sa zaobljenim uglovima. @@ -6616,12 +6616,12 @@ Umesto toga, između originalnih objekata i njihovih kopija se primenjuju ograni TaskSketcherTool_c2_rectangle - + Frame (J) Okvir (J) - + Create two rectangles with a constant offset. Napravite dva pravougaonika, jedan u drugom sa konstantnim odmakom. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr.ts index 592bb964b2..9227f0ca3c 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sr.ts @@ -2054,22 +2054,22 @@ invalid constraints, degenerated geometry, etc. Преименуј ограничење скице - + Drag Point Превуци тачку - + Drag Curve Превуци криву - + Drag Constraint Превуци ограничење - + Modify sketch constraints Измени ограничења скице @@ -2146,59 +2146,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Није могуће одредити пресечну тачку кривих. Покушај да додаш ограничење подударности између тачака кривих где намераваш да направиш заобљење. - + You are requesting no change in knot multiplicity. Не захтевате промену у вишеструкости чворова. - - + + B-spline Geometry Index (GeoID) is out of bounds. Индекс Б-Сплајн геометрије (GeoID) је ван граница. - - + + The Geometry Index (GeoId) provided is not a B-spline. Наведени Геометријски индеx (GeoId) није Б-сплајн крива. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Индекс чворова је ван граница. Имајте на уму да у складу са ОЦЦ напоменом, први чвор има индекс 1, а не нула. - + The multiplicity cannot be increased beyond the degree of the B-spline. Вишеструкост се не може повећати изнад степена Б-сплајн криве. - + The multiplicity cannot be decreased beyond zero. Вишеструкост не може бити мање од нуле. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC није у стању да смањи вишеструкост унутар максималне толеранције. - + Knot cannot have zero multiplicity. Чвор не може имати нулту вишеструкост. - + Knot multiplicity cannot be higher than the degree of the B-spline. Вишеструкост чворова не може бити већа од степена Б-Сплајн криве. - + Knot cannot be inserted outside the B-spline parameter range. Чвор се не може уметнути изван опсега параметара Б-Сплајна. @@ -4646,16 +4646,16 @@ However, no constraints linking to the endpoints were found. Подешавања - - - - - - - - - - + + + + + + + + + + Construction Помоћна геометрија @@ -4665,101 +4665,101 @@ However, no constraints linking to the endpoints were found. Елементи - - - - + + + + Point Тачка - - - - - - - - - - + + + + + + + + + + Internal Унутрашњи - - - - + + + + Line Дуж - - - - + + + + Arc Кружни лук - - - - + + + + Circle Круг - - - - + + + + Ellipse Елипса - - - - + + + + Elliptical Arc Елиптични Лук - - - - + + + + Hyperbolic Arc Хиперболични лук - - - - + + + + Parabolic Arc Параболични лук - - - - + + + + B-spline Б-сплајн крива - - - - + + + + Other Друго - + Extended information Проширене информације @@ -4980,112 +4980,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Измени скицу - + A dialog is already open in the task panel Дијалог је већ отворен у панелу задатака - + Do you want to close this dialog? Да ли желите да затворите овај дијалог? - + Invalid sketch Неисправна скица - + Do you want to open the sketch validation tool? Да ли желиш да отвориш алатку за проверу скице? - + The sketch is invalid and cannot be edited. Скица садржи грешке и не може бити мењана. - + Please remove the following constraint: Уклони следеће ограничење: - + Please remove at least one of the following constraints: Уклони бар једно од следећих ограничења: - + Please remove the following redundant constraint: Уклони следеће сувишно ограничење: - + Please remove the following redundant constraints: Уклони следећа сувишна ограничења: - + The following constraint is partially redundant: Следеће ограничење је сувишно: - + The following constraints are partially redundant: Следећа ограничења су сувишна: - + Please remove the following malformed constraint: Уклони следеће оштећено ограничење: - + Please remove the following malformed constraints: Уклони следеће оштећена ограничења: - + Empty sketch Празна скица - + Over-constrained: Превише ограничено: - + Malformed constraints: Оштећена ограничења: - + Redundant constraints: Сувишна ограничења: - + Partially redundant: Делимично сувишна: - + Solver failed to converge Солвер није успео да се приближи - + Under-constrained: Сувишно ограничено: - + %n DoF(s) %n Степени слободе @@ -5094,7 +5094,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Потпуно ограничена @@ -5738,7 +5738,7 @@ Eigen редак QR алгоритам је оптимизован за ретк ViewProviderSketch - + and %1 more и %1 више @@ -5956,17 +5956,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! Скица има деформисана ограничења! - + The Sketch has partially redundant constraints! Скица има делимично сувишна ограничења! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Параболе су мигрирале. Мигриране датотеке неће бити могуће отварати у претходним верзијама FreeCAD-а!! @@ -6583,32 +6583,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Угао, ширина, висина - + Center, width, height Центар, ширина, висина - + 3 corners 3 угла - + Center, 2 corners Центар, два угла - + Rounded corners (U) Заобљени углови (У) - + Create a rectangle with rounded corners. Направи правоугаоник са заобљеним угловима. @@ -6616,12 +6616,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Оквир (Ј) - + Create two rectangles with a constant offset. Направите два правоугаоника, један у другом са константним одмаком. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts index 185f7ab6e8..faa71430e1 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_sv-SE.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Rename sketch constraint - + Drag Point Dra punkt - + Drag Curve Dra kurva - + Drag Constraint Drag Constraint - + Modify sketch constraints Modify sketch constraints @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Kan inte finna skärning mellan kurvorna. Försök att lägga till en sammanfallande-begränsning mellan ändpunkterna på kurvorna du vill avrunda. - + You are requesting no change in knot multiplicity. Du efterfrågar ingen ändring i knutmultipliciteten. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Knutindex är inte giltigt. Notera att i enlighet med OCC-notation så har första knuten index 1 och inte index 0. - + The multiplicity cannot be increased beyond the degree of the B-spline. Multipliciteten kan inte ökas mer än graden av B-spline:n. - + The multiplicity cannot be decreased beyond zero. Multipliciteten kan inte minskas under 0. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC kan inte minsta multipliciteten inom den maximala toleransen. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4648,16 +4648,16 @@ Inga begränsningar länkade till slutpunkterna hittades däremot. Inställningar - - - - - - - - - - + + + + + + + + + + Construction Konstruktion @@ -4667,101 +4667,101 @@ Inga begränsningar länkade till slutpunkterna hittades däremot. Element - - - - + + + + Point Punkt - - - - - - - - - - + + + + + + + + + + Internal Intern - - - - + + + + Line Linje - - - - + + + + Arc Cirkelbåge - - - - + + + + Circle Cirkel - - - - + + + + Ellipse Ellips - - - - + + + + Elliptical Arc Elliptisk båge - - - - + + + + Hyperbolic Arc Hyperbolisk båge - - - - + + + + Parabolic Arc Parabolisk båge - - - - + + + + B-spline B-spline - - - - + + + + Other Övrigt - + Extended information Utökad information @@ -4982,112 +4982,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Redigera skiss - + A dialog is already open in the task panel En dialogruta är redan öppen i uppgiftspanelen - + Do you want to close this dialog? Vill du stänga denna dialogruta? - + Invalid sketch Ogiltig skiss - + Do you want to open the sketch validation tool? Vill du öppna verktyget för skissvalidering? - + The sketch is invalid and cannot be edited. Skissen är ogiltig och kan inte redigeras. - + Please remove the following constraint: Ta bort följande begränsning: - + Please remove at least one of the following constraints: Ta bort minst en av följande begränsningar: - + Please remove the following redundant constraint: Ta bort följande redundanta begränsningen: - + Please remove the following redundant constraints: Ta bort följande redundanta begränsningarna: - + The following constraint is partially redundant: The following constraint is partially redundant: - + The following constraints are partially redundant: The following constraints are partially redundant: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch Tom skiss - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5095,7 +5095,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fullständigt begränsad @@ -5739,7 +5739,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more och %1 till @@ -5957,17 +5957,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6584,32 +6584,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6617,12 +6617,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts index 7b8cfa4e12..e14a6926d9 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_tr.ts @@ -2055,22 +2055,22 @@ invalid constraints, degenerated geometry, etc. Eskiz kısıtlamasını yeniden adlandır - + Drag Point Noktayı Sürükle - + Drag Curve Eğriyi Sürükle - + Drag Constraint Kısıtlamayı Sürükle - + Modify sketch constraints Eskiz kısıtlamalarını değiştirin @@ -2147,59 +2147,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Eğrilerin kesişimini tahmin edemiyoruz. Dilimlemeyi planladığınız eğrilerin köşeleri arasında çakışan bir kısıtlama eklemeyi deneyin. - + You are requesting no change in knot multiplicity. Düğüm çokluğunda herhangi bir değişiklik istemiyorsunuz. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Düğüm endeksi sınırların dışındadır. OCC gösterimine göre, ilk düğümün indeks 1'i olduğunu ve sıfır olmadığını unutmayın. - + The multiplicity cannot be increased beyond the degree of the B-spline. Çeşitlilik, B-spline'nın derecesinin ötesinde artırılamaz. - + The multiplicity cannot be decreased beyond zero. Çokluk sıfırdan aşağıya düşürülemez. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC, maksimum tolerans dahilinde çokluğu azaltamıyor. - + Knot cannot have zero multiplicity. Düğümün çokluğu sıfır olamaz. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4643,16 +4643,16 @@ Ancak, uç noktalara bağlanan hiçbir kısıtlama bulunamadı. Ayarlar - - - - - - - - - - + + + + + + + + + + Construction İnşa @@ -4662,101 +4662,101 @@ Ancak, uç noktalara bağlanan hiçbir kısıtlama bulunamadı. Elementler - - - - + + + + Point Nokta - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Çizgi - - - - + + + + Arc Yay - - - - + + + + Circle Daire - - - - + + + + Ellipse Elips - - - - + + + + Elliptical Arc Eliptik Ark - - - - + + + + Hyperbolic Arc Hiperbolik yay - - - - + + + + Parabolic Arc Parabolik Ark - - - - + + + + B-spline B-Şerit - - - - + + + + Other Diğer - + Extended information Detaylı bilgi @@ -4977,112 +4977,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Taslağı düzenle - + A dialog is already open in the task panel Araç çubuğunda bir pencere zaten açık - + Do you want to close this dialog? Bu pencereyi kapatmak ister misiniz? - + Invalid sketch Geçersiz eskiz - + Do you want to open the sketch validation tool? Eskiz doğrulama aracını açmak istiyor musunuz? - + The sketch is invalid and cannot be edited. Eskiz geçersizdir ve düzenlenemez. - + Please remove the following constraint: Lütfen aşağıdaki kısıtlamayı kaldırın: - + Please remove at least one of the following constraints: Lütfen aşağıdaki kısıtlamalardan en az birini kaldırın: - + Please remove the following redundant constraint: Lütfen aşağıdaki gereksiz kısıtlamayı kaldırın: - + Please remove the following redundant constraints: Lütfen aşağıdaki gereksiz kısıtlamaları kaldırın: - + The following constraint is partially redundant: Aşağıdaki kısıtlama kısmen gereksizdir: - + The following constraints are partially redundant: Aşağıdaki kısıtlamalar kısmen gereksizdir: - + Please remove the following malformed constraint: Lütfen aşağıdaki hatalı biçimlendirilmiş kısıtlamayı kaldırın: - + Please remove the following malformed constraints: Lütfen aşağıdaki hatalı biçimlendirilmiş kısıtlamaları kaldırın: - + Empty sketch Boş eskiz - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Gereksiz kısıtlamalar: - + Partially redundant: Kısmen gereksiz: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5090,7 +5090,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5734,7 +5734,7 @@ Eigen Sparse QR algoritması seyrek matrisler için optimize edilmiştir; genell ViewProviderSketch - + and %1 more and %1 more @@ -5952,17 +5952,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6579,32 +6579,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6612,12 +6612,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts index 3f845dde72..090be2f8fe 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_uk.ts @@ -2052,22 +2052,22 @@ invalid constraints, degenerated geometry, etc. Перейменувати обмеження ескізу - + Drag Point Перетягнути точку - + Drag Curve Перетягнути криву - + Drag Constraint Перетягнути обмеження - + Modify sketch constraints Змінити обмеження ескізу @@ -2144,59 +2144,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. Не вдалося розрахувати перетин кривих. Спробуйте додати обмеження збігу між вершинами кривих, які ви хочете заокруглити. - + You are requesting no change in knot multiplicity. Ви просите не змінювати кратність вузлів. - - + + B-spline Geometry Index (GeoID) is out of bounds. Індекс геометрії B-сплайну (GeoID) знаходиться поза межами. - - + + The Geometry Index (GeoId) provided is not a B-spline. Наданий індекс геометрії (GeoId) не є B-сплайном. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. Індекс вузла виходить за межі. Зверніть увагу, що відповідно до нотації OCC перший вузол має індекс 1, а не нуль. - + The multiplicity cannot be increased beyond the degree of the B-spline. Кратність не може бути збільшена понад ступінь B-сплайну. - + The multiplicity cannot be decreased beyond zero. Кратність не може бути зменшена нижче нуля. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC нездатний зменшити кратність у межах максимального допуску. - + Knot cannot have zero multiplicity. Вузол не може мати нульову кратність. - + Knot multiplicity cannot be higher than the degree of the B-spline. Кратність вузлів не може бути вищою за степінь B-сплайна. - + Knot cannot be inserted outside the B-spline parameter range. Вузол не можна вставити за межами діапазону параметрів B-сплайна. @@ -4644,16 +4644,16 @@ However, no constraints linking to the endpoints were found. Параметри - - - - - - - - - - + + + + + + + + + + Construction Допоміжна @@ -4663,101 +4663,101 @@ However, no constraints linking to the endpoints were found. Елементи - - - - + + + + Point Точка - - - - - - - - - - + + + + + + + + + + Internal Внутрішній - - - - + + + + Line Лінія - - - - + + + + Arc Дуга - - - - + + + + Circle Коло - - - - + + + + Ellipse Еліпс - - - - + + + + Elliptical Arc Еліптична дуга - - - - + + + + Hyperbolic Arc Гіперболічна дуга - - - - + + + + Parabolic Arc Параболічна дуга - - - - + + + + B-spline B-сплайн - - - - + + + + Other Інші - + Extended information Розширена інформація @@ -4979,112 +4979,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Редагувати ескіз - + A dialog is already open in the task panel Діалогове вікно вже відкрито в панелі задач - + Do you want to close this dialog? Ви бажаєте закрити це діалогове вікно? - + Invalid sketch Неприпустимий ескіз - + Do you want to open the sketch validation tool? Відкрити інструмент перевірки ескізу? - + The sketch is invalid and cannot be edited. Ескіз містить помилки та не може бути змінений. - + Please remove the following constraint: Будь ласка, видаліть наступне обмеження: - + Please remove at least one of the following constraints: Будь ласка, видаліть принаймні одне з таких обмежень: - + Please remove the following redundant constraint: Будь ласка, видаліть наступне надлишкове обмеження: - + Please remove the following redundant constraints: Видаліть, будь ласка, наступні надлишкові обмеження: - + The following constraint is partially redundant: Наступне обмеження частково надлишкове: - + The following constraints are partially redundant: Наступні обмеження частково надлишкові: - + Please remove the following malformed constraint: Видаліть, будь ласка, наступне невірне обмеження: - + Please remove the following malformed constraints: Видаліть, будь ласка, наступні невірні обмеження: - + Empty sketch Порожній ескіз - + Over-constrained: Надлишково обмежено: - + Malformed constraints: Невірні обмеження: - + Redundant constraints: Надлишкові обмеження: - + Partially redundant: Частково надлишкові: - + Solver failed to converge Рішення не сходиться - + Under-constrained: Частково обмежений: - + %n DoF(s) %n ступінь свободи @@ -5094,7 +5094,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Повністю обмежений @@ -5738,7 +5738,7 @@ Eigen Dense QR — щільна матриця QR з повним поворот ViewProviderSketch - + and %1 more та %1 більше @@ -5956,17 +5956,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! Скетч має помилкові обмеження! - + The Sketch has partially redundant constraints! Скетч має частково надлишкові обмеження! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Перенесено параболи. Перенесені файли не відкриватимуться у попередніх версіях FreeCAD!!! @@ -6582,32 +6582,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Кут, ширина, висота - + Center, width, height Центр, ширина, висота - + 3 corners 3 кути - + Center, 2 corners По центру, 2 кути - + Rounded corners (U) Заокруглені кути (U) - + Create a rectangle with rounded corners. Створює прямокутник з закругленими кутами. @@ -6615,12 +6615,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Каркас (J) - + Create two rectangles with a constant offset. Створіть два прямокутники з постійним зміщенням. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_val-ES.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_val-ES.ts index 1b4c672579..7a41971bf9 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_val-ES.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_val-ES.ts @@ -2056,22 +2056,22 @@ invalid constraints, degenerated geometry, etc. Rename sketch constraint - + Drag Point Drag Point - + Drag Curve Drag Curve - + Drag Constraint Drag Constraint - + Modify sketch constraints Modify sketch constraints @@ -2148,59 +2148,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. No s'ha trobat la intersecció de les corbes. Intenteu afegir una restricció coincident entre els vèrtexs de les corbes que esteu intentant arrodonir. - + You are requesting no change in knot multiplicity. Se us ha demanat que no canvieu la multiplicitat del nus. - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. L'índex del nus és fora dels límits. Tingueu en compte que d'acord amb la notació d'OCC, el primer nus té l'índex 1 i no zero. - + The multiplicity cannot be increased beyond the degree of the B-spline. La multiplicitat no es pot augmentar més enllà del grau del B-spline. - + The multiplicity cannot be decreased beyond zero. La multiplicitat no es pot reduir més enllà de zero. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC no pot reduir la multiplicitat dins de la tolerància màxima. - + Knot cannot have zero multiplicity. Knot cannot have zero multiplicity. - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4633,16 +4633,16 @@ However, no constraints linking to the endpoints were found. Paràmetres - - - - - - - - - - + + + + + + + + + + Construction Construcció @@ -4652,101 +4652,101 @@ However, no constraints linking to the endpoints were found. Elements - - - - + + + + Point Punt - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line Línia - - - - + + + + Arc Arc - - - - + + + + Circle Cercle - - - - + + + + Ellipse El·lipse - - - - + + + + Elliptical Arc Arc el·líptic - - - - + + + + Hyperbolic Arc Arc hiperbòlic - - - - + + + + Parabolic Arc Arc parabòlic - - - - + + + + B-spline B-spline - - - - + + + + Other Altres - + Extended information Informació ampliada @@ -4967,112 +4967,112 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch Edit sketch - + A dialog is already open in the task panel A dialog is already open in the task panel - + Do you want to close this dialog? Do you want to close this dialog? - + Invalid sketch L'esbós no és vàlid. - + Do you want to open the sketch validation tool? Voleu obrir l'eina de validació d'esbossos? - + The sketch is invalid and cannot be edited. L'esbós no és vàlid i no es pot editar. - + Please remove the following constraint: Suprimiu la restricció següent: - + Please remove at least one of the following constraints: Suprimiu almenys una de les restriccions següents: - + Please remove the following redundant constraint: Suprimiu la restricció redundant següent: - + Please remove the following redundant constraints: Suprimiu les restriccions redundants següents: - + The following constraint is partially redundant: The following constraint is partially redundant: - + The following constraints are partially redundant: The following constraints are partially redundant: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch L'esbós és buit. - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n DoF(s) @@ -5080,7 +5080,7 @@ This is done by analyzing the sketch geometries and constraints. - + Fully constrained Fully constrained @@ -5721,7 +5721,7 @@ L'algoritme Eigen Sparse QR està optimitzat per a matrius escasses; generalment ViewProviderSketch - + and %1 more and %1 more @@ -5939,17 +5939,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6566,32 +6566,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) Rounded corners (U) - + Create a rectangle with rounded corners. Create a rectangle with rounded corners. @@ -6599,12 +6599,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts index e16dee4870..a99d9ca9c2 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-CN.ts @@ -176,7 +176,7 @@ Create an arc in the sketch - Create an arc in the sketch + 在草图中创建一个圆弧 @@ -413,7 +413,7 @@ Constrain horizontal - Constrain horizontal + 约束水平 @@ -466,7 +466,7 @@ on the selected vertex Constrain point on object - Constrain point on object + 约束点在对象上 @@ -506,7 +506,7 @@ and an edge as an interface. Constrain symmetric - Constrain symmetric + 约束对称 @@ -520,7 +520,7 @@ with respect to a line or a third point Constrain vertical - Constrain vertical + 约束垂直 @@ -559,7 +559,7 @@ with respect to a line or a third point Create arc by 3 points - Create arc by 3 points + 创建三点圆弧 @@ -572,7 +572,7 @@ with respect to a line or a third point Create circle by 3 points - Create circle by 3 points + 通过 3 个点创建圆 @@ -650,7 +650,7 @@ with respect to a line or a third point Create circle by center - Create circle by center + 通过中心创建圆 @@ -1053,16 +1053,14 @@ with respect to a line or a third point Attach sketch... - Attach sketch... + 附加草图... Set the 'AttachmentSupport' of a sketch. First select the supporting geometry, for example, a face or an edge of a solid object, then call this command, then choose the desired sketch. - Set the 'AttachmentSupport' of a sketch. -First select the supporting geometry, for example, a face or an edge of a solid object, -then call this command, then choose the desired sketch. + @@ -2053,22 +2051,22 @@ invalid constraints, degenerated geometry, etc. 重命名草图约束 - + Drag Point 拖动点 - + Drag Curve 拖动曲线 - + Drag Constraint 拖动约束 - + Modify sketch constraints 修改草图约束 @@ -2145,59 +2143,59 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. 无法猜测曲线的交叉点。尝试在你打算做圆角的曲线顶点之间添加一个重合约束。 - + You are requesting no change in knot multiplicity. 你被要求不对多重性节点做任何修改。 - - + + B-spline Geometry Index (GeoID) is out of bounds. B-spline Geometry Index (GeoID) is out of bounds. - - + + The Geometry Index (GeoId) provided is not a B-spline. The Geometry Index (GeoId) provided is not a B-spline. - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. 结指数超出界限。请注意, 按照 OCC 符号, 第一个节点的索引为1, 而不是0。 - + The multiplicity cannot be increased beyond the degree of the B-spline. 无法重复增加到超过贝塞尔曲线的自由度。 - + The multiplicity cannot be decreased beyond zero. 多重性不能小于0. - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC 无法在最大公差范围内减少多重性。 - + Knot cannot have zero multiplicity. 节点不能有零倍数。 - + Knot multiplicity cannot be higher than the degree of the B-spline. Knot multiplicity cannot be higher than the degree of the B-spline. - + Knot cannot be inserted outside the B-spline parameter range. Knot cannot be inserted outside the B-spline parameter range. @@ -4642,16 +4640,16 @@ However, no constraints linking to the endpoints were found. 设置 - - - - - - - - - - + + + + + + + + + + Construction 构造 @@ -4661,101 +4659,101 @@ However, no constraints linking to the endpoints were found. 元素 - - - - + + + + Point - - - - - - - - - - + + + + + + + + + + Internal Internal - - - - + + + + Line 线 - - - - + + + + Arc 圆弧 - - - - + + + + Circle - - - - + + + + Ellipse 椭圆 - - - - + + + + Elliptical Arc 椭圆弧 - - - - + + + + Hyperbolic Arc 双曲线弧 - - - - + + + + Parabolic Arc 抛物线弧 - - - - + + + + B-spline 贝塞尔曲线 - - - - + + + + Other 其它 - + Extended information 扩展信息 @@ -4976,119 +4974,119 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch 编辑草绘 - + A dialog is already open in the task panel 一个对话框已在任务面板打开 - + Do you want to close this dialog? 您要关闭此对话框吗? - + Invalid sketch 无效的草图 - + Do you want to open the sketch validation tool? 你想打开草图验证工具么? - + The sketch is invalid and cannot be edited. 该草图不可用并不可编辑。 - + Please remove the following constraint: 请删除以下约束: - + Please remove at least one of the following constraints: 请至少删除以下约束之一: - + Please remove the following redundant constraint: 请删除以下冗余约束: - + Please remove the following redundant constraints: 请删除以下冗余约束: - + The following constraint is partially redundant: The following constraint is partially redundant: - + The following constraints are partially redundant: The following constraints are partially redundant: - + Please remove the following malformed constraint: Please remove the following malformed constraint: - + Please remove the following malformed constraints: Please remove the following malformed constraints: - + Empty sketch 空草图 - + Over-constrained: Over-constrained: - + Malformed constraints: Malformed constraints: - + Redundant constraints: Redundant constraints: - + Partially redundant: Partially redundant: - + Solver failed to converge Solver failed to converge - + Under-constrained: Under-constrained: - + %n DoF(s) %n个自由度 - + Fully constrained Fully constrained @@ -5731,7 +5729,7 @@ Eigen Sparse QR algorithm is optimized for sparse matrices; usually faster ViewProviderSketch - + and %1 more and %1 more @@ -5949,17 +5947,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Notifications - + The Sketch has malformed constraints! The Sketch has malformed constraints! - + The Sketch has partially redundant constraints! The Sketch has partially redundant constraints! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! @@ -6576,32 +6574,32 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c1_rectangle - + Corner, width, height Corner, width, height - + Center, width, height Center, width, height - + 3 corners 3 corners - + Center, 2 corners Center, 2 corners - + Rounded corners (U) 圆角边角(U) - + Create a rectangle with rounded corners. 用四舍五入的角创建矩形。 @@ -6609,12 +6607,12 @@ Instead equal constraints are applied between the original objects and their cop TaskSketcherTool_c2_rectangle - + Frame (J) Frame (J) 框架 - + Create two rectangles with a constant offset. Create two rectangles with a constant offset. diff --git a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts index b3c95cd740..211f1a7e64 100644 --- a/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts +++ b/src/Mod/Sketcher/Gui/Resources/translations/Sketcher_zh-TW.ts @@ -176,7 +176,7 @@ Create an arc in the sketch - Create an arc in the sketch + 於草圖中建立一個弧 @@ -366,7 +366,7 @@ Fix a length of a line or the distance between a line and a vertex or between two circles - Fix a length of a line or the distance between a line and a vertex or between two circles + 修正一條線的長度,或者修正一條線與頂點之間的距離,或兩個圓之間的距離 @@ -379,7 +379,7 @@ Fix the horizontal distance between two points or line ends - 固定兩點或線段的水平距離 + 固定兩點或線終點水平距離 @@ -413,7 +413,7 @@ Constrain horizontal - Constrain horizontal + 水平拘束 @@ -466,7 +466,7 @@ on the selected vertex Constrain point on object - Constrain point on object + 拘束點於物件上 @@ -492,14 +492,13 @@ on the selected vertex Constrain refraction (Snell's law) - Constrain refraction (Snell's law) + 折射拘束(司乃耳定律) 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. + 在兩條光線的端點和一個邊作為界面之間創建折射定律(司乃耳定律)約束。 @@ -507,7 +506,7 @@ and an edge as an interface. Constrain symmetric - Constrain symmetric + 對稱拘束 @@ -521,7 +520,7 @@ with respect to a line or a third point Constrain vertical - Constrain vertical + 垂直拘束 @@ -560,7 +559,7 @@ with respect to a line or a third point Create arc by 3 points - Create arc by 3 points + 由3點建立弧 @@ -573,7 +572,7 @@ with respect to a line or a third point Create circle by 3 points - Create circle by 3 points + 由3點建立圓 @@ -651,7 +650,7 @@ with respect to a line or a third point Create circle by center - Create circle by center + 由中心點建立圓 @@ -1054,16 +1053,16 @@ with respect to a line or a third point Attach sketch... - Attach sketch... + 附加草圖... Set the 'AttachmentSupport' of a sketch. First select the supporting geometry, for example, a face or an edge of a solid object, then call this command, then choose the desired sketch. - Set the 'AttachmentSupport' of a sketch. -First select the supporting geometry, for example, a face or an edge of a solid object, -then call this command, then choose the desired sketch. + 設定草圖的「AttachmentSupport」。 +首先選擇支持幾何體,例如實體物件的面或邊, +然後調用此命令,並選擇所需的草圖。 @@ -1106,9 +1105,8 @@ then call this command, then choose the desired sketch. Creates a new mirrored sketch for each selected sketch by using the X or Y axes, or the origin point, as mirroring reference. - Creates a new mirrored sketch for each selected sketch -by using the X or Y axes, or the origin point, -as mirroring reference. + 通過使用 X 或 Y 軸,或原點作為鏡像參考, +為每個選定的草圖創建一個新的鏡像草圖。 @@ -1184,8 +1182,8 @@ as mirroring reference. Place the selected sketch on one of the global coordinate planes. This will clear the 'AttachmentSupport' property, if any. - Place the selected sketch on one of the global coordinate planes. -This will clear the 'AttachmentSupport' property, if any. + 將選定的草圖放置在全局座標平面之一上。 +這將清除「AttachmentSupport」屬性(如果有的話)。 @@ -1241,7 +1239,7 @@ This will clear the 'AttachmentSupport' property, if any. Select under-constrained elements - Select under-constrained elements + 選擇未完全約束的元件 @@ -1364,7 +1362,7 @@ This will clear the 'AttachmentSupport' property, if any. Creates symmetric of selected geometry. After starting the tool select the reference line or point. - Creates symmetric of selected geometry. After starting the tool select the reference line or point. + 創建選定幾何體的對稱體。啟動工具後,選擇參考線或參考點。 @@ -1431,8 +1429,7 @@ into driving or reference mode Validates a sketch by looking at missing coincidences, invalid constraints, degenerated geometry, etc. - Validates a sketch by looking at missing coincidences, -invalid constraints, degenerated geometry, etc. + 通過檢查缺失的重合點、無效拘束、退化幾何體等來驗證草圖。 @@ -1651,7 +1648,7 @@ invalid constraints, degenerated geometry, etc. Activate/Deactivate constraints - Activate/Deactivate constraints + 啟動/關閉拘束 @@ -1677,7 +1674,7 @@ invalid constraints, degenerated geometry, etc. Add point to circle Distance constraint - Add point to circle Distance constraint + 添加點到圓的距離拘束 @@ -1689,7 +1686,7 @@ invalid constraints, degenerated geometry, etc. Add arc length constraint - Add arc length constraint + 添加弧長度拘束 @@ -1805,7 +1802,7 @@ invalid constraints, degenerated geometry, etc. Swap point on object and tangency with point to curve tangency - Swap point on object and tangency with point to curve tangency + 將「點在物件上」和「相切」拘束替換為「點對曲線相切」拘束 @@ -2053,22 +2050,22 @@ invalid constraints, degenerated geometry, etc. 重新命名草圖拘束 - + Drag Point 拖曳點 - + Drag Curve 拖曳曲線 - + Drag Constraint 拖動拘束 - + Modify sketch constraints 修改草圖拘束 @@ -2085,7 +2082,7 @@ invalid constraints, degenerated geometry, etc. Add polygon - Add polygon + 添加多邊形 @@ -2095,12 +2092,12 @@ invalid constraints, degenerated geometry, etc. Rotate geometries - Rotate geometries + 旋轉幾何 Scale geometries - Scale geometries + 縮放幾何 @@ -2110,28 +2107,28 @@ invalid constraints, degenerated geometry, etc. Symmetry geometries - Symmetry geometries + 對稱幾何 Add sketch bSpline - Add sketch bSpline + 添加草圖 bSpline Add sketch B-spline - Add sketch B-spline + 添加草圖 B-spline Add line to sketch polyline - Add line to sketch polyline + 將線添加到草圖折線 Add arc to sketch polyline - Add arc to sketch polyline + 將弧添加到草圖折線中 @@ -2145,61 +2142,61 @@ invalid constraints, degenerated geometry, etc. Exceptions - + Unable to guess intersection of curves. Try adding a coincident constraint between the vertices of the curves you are intending to fillet. 無法猜測曲線交叉點。試著添加共點拘束在你要倒圓角的點及曲線間。 - + You are requesting no change in knot multiplicity. 您正在要求不要改變結點多重性 - - + + B-spline Geometry Index (GeoID) is out of bounds. - B-spline Geometry Index (GeoID) is out of bounds. + B-spline 幾何索引 (GeoID) 超出範圍。 - - + + The Geometry Index (GeoId) provided is not a B-spline. - The Geometry Index (GeoId) provided is not a B-spline. + 提供的幾何索引 (GeoID) 不是 B-spline。 - + The knot index is out of bounds. Note that in accordance with OCC notation, the first knot has index 1 and not zero. 結點索引超過範圍。請注意在 OCC 表示中,第一個結點的索引為 1 而不是 0。 - + The multiplicity cannot be increased beyond the degree of the B-spline. 結點多重性不能比 B 雲形線之多項式次數高 - + The multiplicity cannot be decreased beyond zero. 多重性不能減少到超過零。 - + OCC is unable to decrease the multiplicity within the maximum tolerance. OCC 無法在最大容差範圍內降低多重性。 - + Knot cannot have zero multiplicity. 結點之多重性不能為零。 - + Knot multiplicity cannot be higher than the degree of the B-spline. - Knot multiplicity cannot be higher than the degree of the B-spline. + 結點重複度不能高於 B-spline 的階數。 - + Knot cannot be inserted outside the B-spline parameter range. - Knot cannot be inserted outside the B-spline parameter range. + 結點不能在 B-spline 參數範圍外面插入 @@ -2213,42 +2210,42 @@ invalid constraints, degenerated geometry, etc. ToolWidget parameter index out of range - ToolWidget parameter index out of range + ToolWidget 參數索引超出範圍 Autoconstraint error: Unsolvable sketch while applying coincident constraints. - Autoconstraint error: Unsolvable sketch while applying coincident constraints. + 自動拘束錯誤: 套用共點拘束時無法解出此草圖。 Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. - Autoconstraint error: Unsolvable sketch while applying vertical/horizontal constraints. + 自動拘束錯誤: 套用垂直/水平拘束時無法解出此草圖。 Autoconstraint error: Unsolvable sketch while applying equality constraints. - Autoconstraint error: Unsolvable sketch while applying equality constraints. + 自動拘束錯誤: 套用相等拘束時無法解出此草圖。 Autoconstraint error: Unsolvable sketch without constraints. - Autoconstraint error: Unsolvable sketch without constraints. + 自動拘束錯誤: 無拘束時無法解出此草圖。 Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. - Autoconstraint error: Unsolvable sketch after applying horizontal and vertical constraints. + 自動拘束錯誤: 套用水平及垂直拘束後無法解出此草圖。 Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. - Autoconstraint error: Unsolvable sketch after applying point-on-point constraints. + 自動拘束錯誤: 套用點對點拘束後無法解出此草圖 Autoconstraint error: Unsolvable sketch after applying equality constraints. - Autoconstraint error: Unsolvable sketch after applying equality constraints. + 自動拘束錯誤: 套用相等拘束後無法解出此草圖。 @@ -2600,24 +2597,24 @@ invalid constraints, degenerated geometry, etc. None of the selected points were constrained onto the respective curves, because they are part of the same element, they are both external geometry, or the edge is not eligible. - None of the selected points were constrained onto the respective curves, because they are part of the same element, they are both external geometry, or the edge is not eligible. + 所選的點均未被拘束到相應的曲線上,因為它們是同一元件的一部分,它們都是外部幾何體,或者邊緣不符合條件。 Only tangent-via-point is supported with a B-spline. - Only tangent-via-point is supported with a B-spline. + 僅支援通過點的切線拘束與 B-spline 一起使用。 Select either only one or more B-spline poles or only one or more arcs or circles from the sketch, but not mixed. - Select either only one or more B-spline poles or only one or more arcs or circles from the sketch, but not mixed. + 從草圖中僅選擇一個或多個 B-spline 極點或僅選擇一個或多個圓弧或圓,但不要混合。 Select two endpoints of lines to act as rays, and an edge representing a boundary. The first selected point corresponds to index n1, second to n2, and the value sets the ratio n2/n1. Constraint_SnellsLaw - Select two endpoints of lines to act as rays, and an edge representing a boundary. The first selected point corresponds to index n1, second to n2, and the value sets the ratio n2/n1. + 選擇兩個線段的端點作為光線,並選擇一條邊作為邊界。第一個選擇的點對應於索引 n1,第二個點對應於 n2,該值設置為比率 n2/n1。 @@ -2670,7 +2667,7 @@ invalid constraints, degenerated geometry, etc. Select exactly one line or one point and one line or two points or two circles from the sketch. - Select exactly one line or one point and one line or two points or two circles from the sketch. + 從草圖中選擇正好一條線或一個點和一條線,或者兩個點,或兩個圓。 @@ -2717,22 +2714,26 @@ invalid constraints, degenerated geometry, etc. One or two point on object constraint(s) was/were deleted, since the latest constraint being applied internally applies point-on-object as well. - One or two point on object constraint(s) was/were deleted, since the latest constraint being applied internally applies point-on-object as well. + 一個或多個「點在物件上」拘束已被刪除,因為最新內部的拘束也同樣套用在「點在物件上」。 Select either several points, or several conics for concentricity. - Select either several points, or several conics for concentricity. + 選擇多個點或多個圓錐曲線以設置同心性。 Select either one point and several curves, or one curve and several points - Select either one point and several curves, or one curve and several points + 選擇一個點和多條曲線,或一條曲線和多個點。 Select either one point and several curves or one curve and several points for pointOnObject, or several points for coincidence, or several conics for concentricity. - Select either one point and several curves or one curve and several points for pointOnObject, or several points for coincidence, or several conics for concentricity. + 選擇以下之一: +一個點和多條曲線,用於「點在物件上」拘束; +一條曲線和多個點,用於「點在物件上」拘束; +多個點,用於「重合」約束; +多個圓錐曲線,用於「同心度」約束。 @@ -2742,7 +2743,7 @@ invalid constraints, degenerated geometry, etc. Cannot add a length constraint on this selection! - Cannot add a length constraint on this selection! + 無法對此選擇添加長度拘束! @@ -2988,7 +2989,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Select one dimensional constraint from the sketch. - Select one dimensional constraint from the sketch. + 從草圖中選擇一個標註尺寸拘束。 @@ -3046,22 +3047,22 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c At least one of the selected objects was not a B-spline and was ignored. - At least one of the selected objects was not a B-spline and was ignored. + 所選物件中至少有一個不是 B-spline 故被忽略 Nothing is selected. Please select a B-spline. - Nothing is selected. Please select a B-spline. + 沒有選取任何物件。請選取 B-spline。 Please select a B-spline to insert a knot (not a knot on it). If the curve is not a B-spline, please convert it into one first. - Please select a B-spline to insert a knot (not a knot on it). If the curve is not a B-spline, please convert it into one first. + 請選擇一條 B-spline 來插入結點(不是其上的結點)。如果曲線不是 B-spline,請先將其轉換。 Nothing is selected. Please select end points of curves. - Nothing is selected. Please select end points of curves. + 未選擇任何東西。請選擇曲線的端點。 @@ -3072,7 +3073,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Exactly two curves should end at the selected point to be able to join them. - Exactly two curves should end at the selected point to be able to join them. + 必須有且僅有兩條曲線在選定點處相交,才能將它們連接起來。 @@ -3082,7 +3083,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Two end points, or coincident point should be selected. - Two end points, or coincident point should be selected. + 應選擇兩個端點或重合點。 @@ -3143,13 +3144,13 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Unsupported visual layer operation - Unsupported visual layer operation + 不支持的視覺層操作 It is currently unsupported to move external geometry to another visual layer. External geometry will be omitted - It is currently unsupported to move external geometry to another visual layer. External geometry will be omitted + 目前不支持將外部幾何體移動到另一個視覺層。外部幾何體將被忽略。 @@ -3159,7 +3160,7 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Fillet/Chamfer parameters - Fillet/Chamfer parameters + 圓角/倒角參數 @@ -3219,12 +3220,12 @@ Accepted combinations: two curves; an endpoint and a curve; two endpoints; two c Symmetry parameters - Symmetry parameters + 對稱參數 B-spline parameters - B-spline parameters + B-spline 參數 @@ -3979,7 +3980,7 @@ reflected on copies Task panel widgets - Task panel widgets + 任務面板小工具 @@ -4033,12 +4034,12 @@ Requires to re-enter edit mode to take effect. Disables the shaded view when entering the sketch edit mode. - Disables the shaded view when entering the sketch edit mode. + 在進入草圖編輯模式時停用陰影視圖。 Disable shading in edit mode - Disable shading in edit mode + 在編輯模式下停用陰影 @@ -4053,12 +4054,12 @@ Requires to re-enter edit mode to take effect. Unify Coincident and PointOnObject in a single tool. - Unify Coincident and PointOnObject in a single tool. + 將「重合」和「點在物件上」合併為一個工具。 Unify Coincident and PointOnObject - Unify Coincident and PointOnObject + 統一重合和點在物件上的拘束 @@ -4068,7 +4069,7 @@ Requires to re-enter edit mode to take effect. Auto tool for Horizontal/Vertical - Auto tool for Horizontal/Vertical + 水平/垂直自動工具 @@ -4082,11 +4083,12 @@ Requires to re-enter edit mode to take effect. 'Separated tools': Individual tools for each dimensioning constraint. 'Both': You will have both the 'Dimension' tool and the separated tools. This setting is only for the toolbar. Whichever you choose, all tools are always available in the menu and through shortcuts. - Select the type of dimensioning constraints for your toolbar: -'Single tool': A single tool for all dimensioning constraints in the toolbar: Distance, Distance X / Y, Angle, Radius. (Others in dropdown) -'Separated tools': Individual tools for each dimensioning constraint. -'Both': You will have both the 'Dimension' tool and the separated tools. -This setting is only for the toolbar. Whichever you choose, all tools are always available in the menu and through shortcuts. + 選擇工具欄中標註尺寸拘束的類型: + +「單一工具」:工具欄中的所有標註尺寸拘束(距離、X / Y 距離、角度、半徑)使用一個單獨的工具。(其他選項在下拉選單中) +「分開工具」:為每個標註尺寸拘束提供單獨的工具。 +「兩者」:您將同時擁有「標註尺寸」工具和分開的工具。 +此設定僅影響工具列。無論選擇哪一個,所有工具始終可在選單中和通過快捷鍵啟用。 @@ -4094,10 +4096,10 @@ This setting is only for the toolbar. Whichever you choose, all tools are always 'Auto': The tool will apply radius to arcs and diameter to circles. 'Diameter': The tool will apply diameter to both arcs and circles. 'Radius': The tool will apply radius to both arcs and circles. - While using the Dimension tool you may choose how to handle circles and arcs: -'Auto': The tool will apply radius to arcs and diameter to circles. -'Diameter': The tool will apply diameter to both arcs and circles. -'Radius': The tool will apply radius to both arcs and circles. + 使用「標註尺寸」工具時,您可以選擇如何處理圓和弧: +「自動」:工具將對弧應用半徑,對圓套用直徑。 +「直徑」:工具將對弧和圓都套用直徑。 +「半徑」:工具將對弧和圓都套用半徑。 @@ -4169,12 +4171,12 @@ This setting is only for the toolbar. Whichever you choose, all tools are always Dimensions only - Dimensions only + 只顯示標註尺寸 Position and dimensions - Position and dimensions + 位置和標註尺寸 @@ -4212,7 +4214,7 @@ This setting is only for the toolbar. Whichever you choose, all tools are always The 3D view is scaled based on this factor. - 3D 視圖是基於此因數縮放。 + 3D 視圖是基於此係數縮放。 @@ -4301,7 +4303,7 @@ Defaults to: %N = %V Show coordinates beside cursor while editing - Show coordinates beside cursor while editing + 在編輯時顯示座標在遊標旁邊 @@ -4559,7 +4561,7 @@ However, no constraints linking to the endpoints were found. Show/hide all listed constraints from 3D view. (same as ticking/unticking all listed constraints in list below) - Show/hide all listed constraints from 3D view. (same as ticking/unticking all listed constraints in list below) + 顯示/隱藏 3D 視圖中的所有列出拘束。(與在下面的列表中勾選/取消勾選所有列出拘束相同) @@ -4589,12 +4591,12 @@ However, no constraints linking to the endpoints were found. Extended information (in widget) - Extended information (in widget) + 擴展信息(在小工具中) Hide internal alignment (in widget) - Hide internal alignment (in widget) + 隱藏內部對齊(在小工具中) @@ -4605,12 +4607,12 @@ However, no constraints linking to the endpoints were found. Impossible to update visibility tracking - Impossible to update visibility tracking + 無法更新可見性追蹤 Impossible to update visibility tracking: - Impossible to update visibility tracking: + 無法更新可見性追蹤: @@ -4636,16 +4638,16 @@ However, no constraints linking to the endpoints were found. 設定 - - - - - - - - - - + + + + + + + + + + Construction 建構 @@ -4655,101 +4657,101 @@ However, no constraints linking to the endpoints were found. 元件 - - - - + + + + Point - - - - - - - - - - + + + + + + + + + + Internal 內部 - - - - + + + + Line - - - - + + + + Arc - - - - + + + + Circle - - - - + + + + Ellipse 橢圓 - - - - + + + + Elliptical Arc 橢圓弧 - - - - + + + + Hyperbolic Arc 雙曲線弧 - - - - + + + + Parabolic Arc 拋物線弧形 - - - - + + + + B-spline B-spline 曲線 - - - - + + + + Other 其他 - + Extended information 延伸資訊 @@ -4774,27 +4776,27 @@ However, no constraints linking to the endpoints were found. Click to select these conflicting constraints. - Click to select these conflicting constraints. + 點擊以選擇相衝突拘束。 Click to select these redundant constraints. - Click to select these redundant constraints. + 點擊以選擇冗餘拘束。 The sketch has unconstrained elements giving rise to those Degrees Of Freedom. Click to select these unconstrained elements. - The sketch has unconstrained elements giving rise to those Degrees Of Freedom. Click to select these unconstrained elements. + 草圖中存在未拘束的元件,導致這些自由度。點擊以選擇這些未拘束的元件。 Click to select these malformed constraints. - Click to select these malformed constraints. + 點擊以選擇這些格式錯誤的拘束。 Some constraints in combination are partially redundant. Click to select these partially redundant constraints. - Some constraints in combination are partially redundant. Click to select these partially redundant constraints. + 某些拘束的組合是部分冗餘的。點擊以選擇這些部分冗餘的拘束。 @@ -4970,119 +4972,119 @@ This is done by analyzing the sketch geometries and constraints. SketcherGui::ViewProviderSketch - + Edit sketch 編輯草圖 - + A dialog is already open in the task panel 於工作面板已開啟對話窗 - + Do you want to close this dialog? 您確定要關閉此對話窗嗎? - + Invalid sketch 錯誤之草圖 - + Do you want to open the sketch validation tool? 您要開啟草圖驗證工具嗎? - + The sketch is invalid and cannot be edited. 此為無效且不能編輯之草圖 - + Please remove the following constraint: 請移除下列拘束: - + Please remove at least one of the following constraints: 請移除下列至少一個拘束: - + Please remove the following redundant constraint: 請移除下列多餘拘束: - + Please remove the following redundant constraints: 請移除下列多餘拘束: - + The following constraint is partially redundant: 以下拘束為部份冗餘: - + The following constraints are partially redundant: 以下拘束為部份冗餘: - + Please remove the following malformed constraint: 請移除下列格式錯誤拘束: - + Please remove the following malformed constraints: 請移除下列格式錯誤拘束: - + Empty sketch 空白草圖 - + Over-constrained: 過度拘束: - + Malformed constraints: 格式錯誤的拘束: - + Redundant constraints: 冗餘拘束: - + Partially redundant: 部份冗餘: - + Solver failed to converge 求解器無法收斂 - + Under-constrained: - Under-constrained: + 拘束不足: - + %n DoF(s) %n 自由度 - + Fully constrained 完全拘束 @@ -5211,12 +5213,12 @@ This is done by analyzing the sketch geometries and constraints. By control points - By control points + 藉由控制點 By knots - By knots + 藉由結點 @@ -5657,7 +5659,7 @@ Eigen Sparse QR 算法針對稀疏矩陣進行了優化;通常更快 Error threshold under which convergence is reached for the solving of redundant constraints - 多餘收斂求解達收斂容忍值以下即達成收斂 + 錯誤閾值低於該值時,解算冗餘拘束時將達到收斂 @@ -5723,7 +5725,7 @@ Eigen Sparse QR 算法針對稀疏矩陣進行了優化;通常更快 ViewProviderSketch - + and %1 more 還有 %1 個 @@ -5820,7 +5822,7 @@ Eigen Sparse QR 算法針對稀疏矩陣進行了優化;通常更快 Automatically adapt grid spacing based on the viewer dimensions. - Automatically adapt grid spacing based on the viewer dimensions. + 根據查看器的標註尺寸自動調整格線間距。 @@ -5836,8 +5838,7 @@ Eigen Sparse QR 算法針對稀疏矩陣進行了優化;通常更快 Distance between two subsequent grid lines. If 'Grid Auto Spacing' is enabled, will be used as base value. - Distance between two subsequent grid lines. -If 'Grid Auto Spacing' is enabled, will be used as base value. + 兩條相鄰網格線之間的距離。如果啟用了「網格自動間距」,則將用作基準值。 @@ -5848,8 +5849,7 @@ If 'Grid Auto Spacing' is enabled, will be used as base value. While using 'Grid Auto Spacing' this sets a threshold in pixel to the grid spacing. The grid spacing change if it becomes smaller than this number of pixel. - While using 'Grid Auto Spacing' this sets a threshold in pixel to the grid spacing. -The grid spacing change if it becomes smaller than this number of pixel. + 在使用「網格自動間距」時,這將為網格間距設置一個以像素為單位的臨界值。如果網格間距變小於這個像素數,則會發生變化。 @@ -5874,13 +5874,13 @@ The grid spacing change if it becomes smaller than this number of pixel. Every N lines there will be a major line. Set to 1 to disable major lines. - Every N lines there will be a major line. Set to 1 to disable major lines. + 每 N 條線將有一條主要線。設定為 1 以停用主要線。 Line pattern - 線型 + 線條樣式 @@ -5907,12 +5907,12 @@ The grid spacing change if it becomes smaller than this number of pixel. Line pattern used for grid division. - Line pattern used for grid division. + 用來當格線的線條樣式。 Distance between two subsequent division lines - Distance between two subsequent division lines + 兩條相鄰劃分線之間的距離 @@ -5925,7 +5925,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Resize grid automatically depending on zoom. - Resize grid automatically depending on zoom. + 根據縮放來自動調整網格線大小。 @@ -5935,26 +5935,26 @@ The grid spacing change if it becomes smaller than this number of pixel. Distance between two subsequent grid lines. - Distance between two subsequent grid lines. + 兩條相鄰網格線的距離. Notifications - + The Sketch has malformed constraints! 此草圖有格式錯誤的拘束! - + The Sketch has partially redundant constraints! - The Sketch has partially redundant constraints! + 此草圖有部分冗餘拘束! - + Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! - Parabolas were migrated. Migrated files won't open in previous versions of FreeCAD!! + 拋物線已被遷移。遷移的檔案將無法在 FreeCAD 的舊版本中打開! @@ -5998,12 +5998,12 @@ The grid spacing change if it becomes smaller than this number of pixel. Failed to delete all constraints - Failed to delete all constraints + 刪除所有拘束失敗 Selection has no valid geometries. B-splines and points are not supported yet. - Selection has no valid geometries. B-splines and points are not supported yet. + 選擇的內容沒有有效的幾何體。B-spline 與點還沒有支援。 @@ -6014,12 +6014,12 @@ The grid spacing change if it becomes smaller than this number of pixel. Selection has no valid geometries. - Selection has no valid geometries. + 選擇沒有有效幾何。 The constraint has invalid index information and is malformed. - The constraint has invalid index information and is malformed. + 該拘束的索引資訊無效且格式錯誤。 @@ -6034,7 +6034,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Invalid Constraint - Invalid Constraint + 無效的拘束 @@ -6069,12 +6069,12 @@ The grid spacing change if it becomes smaller than this number of pixel. Error deleting last pole/knot - Error deleting last pole/knot + 刪除最後一個極/結點時出現錯誤 Error adding B-spline pole/knot - Error adding B-spline pole/knot + 添加 B-Spline 極/結點時出現錯誤 @@ -6121,7 +6121,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Tool execution aborted - Tool execution aborted + 工具執行中斷 @@ -6163,32 +6163,32 @@ The grid spacing change if it becomes smaller than this number of pixel. Autoconstraints cause redundancy. Removing them - Autoconstraints cause redundancy. Removing them + 自動拘束造成冗餘。請刪除它們 Redundant constraint is not an autoconstraint. No autoconstraints or additional constraints were added. Please report! - Redundant constraint is not an autoconstraint. No autoconstraints or additional constraints were added. Please report! + 冗餘拘束不是自動拘束。未添加自動拘束或額外拘束。請回報! Autoconstraints cause conflicting constraints - Please report! - Autoconstraints cause conflicting constraints - Please report! + 自動拘束導致衝突拘束 - 請回報! Unexpected Redundancy/Conflicting constraint. Check the constraints and autoconstraints of this operation. - Unexpected Redundancy/Conflicting constraint. Check the constraints and autoconstraints of this operation. + 意外的冗餘/衝突拘束。請檢查此操作的拘束和自動拘束。 Invalid Value - Invalid Value + 無效數值 Offset value can't be 0. - Offset value can't be 0. + 偏移值不能為 0。 @@ -6198,17 +6198,17 @@ The grid spacing change if it becomes smaller than this number of pixel. Failed to add ellipse - Failed to add ellipse + 添加橢圓失敗 Failed to rotate - Failed to rotate + 旋轉失敗 Failed to scale - Failed to scale + 縮放失敗 @@ -6218,7 +6218,7 @@ The grid spacing change if it becomes smaller than this number of pixel. Failed to create symmetry - Failed to create symmetry + 建立對稱失敗 @@ -6304,7 +6304,7 @@ Points must be set closer than a fifth of the grid spacing to a grid line to sna Reorder the items in the list to configure rendering order. - Reorder the items in the list to configure rendering order. + 重新排序列表中的項目以配置算繪順序。 @@ -6317,7 +6317,7 @@ Points must be set closer than a fifth of the grid spacing to a grid line to sna Toggle the grid in the sketch. In the menu you can change grid settings. - Toggle the grid in the sketch. In the menu you can change grid settings. + 在草圖中切換格線。在選單中可以更改網格設定。 @@ -6371,9 +6371,7 @@ Points must be set closer than a fifth of the grid spacing to a grid line to sna Constrain contextually based on your selection. Depending on your selection you might have several constraints available. You can cycle through them using M key. Left clicking on empty space will validate the current constraint. Right clicking or pressing Esc will cancel. - Constrain contextually based on your selection. -Depending on your selection you might have several constraints available. You can cycle through them using M key. -Left clicking on empty space will validate the current constraint. Right clicking or pressing Esc will cancel. + 根據您的選擇前後文來進行拘束。根據您的選擇,您可能會有多個可用拘束。您可以使用 M 鍵進行循環選擇。左鍵單擊空白區域將確認當前拘束。右鍵單擊或按 Esc 將取消操作。 @@ -6381,12 +6379,12 @@ Left clicking on empty space will validate the current constraint. Right clickin Show/hide circular helper for arcs - Show/hide circular helper for arcs + 顯示/隱藏弧的圓形輔助工具 Switches between showing and hiding the circular helper for all arcs - Switches between showing and hiding the circular helper for all arcs + 在顯示和隱藏所有弧的圓形輔助工具之間切換。 @@ -6425,7 +6423,7 @@ Left clicking on empty space will validate the current constraint. Right clickin Mode (M) - Mode (M) + 模式(M) @@ -6436,92 +6434,92 @@ Left clicking on empty space will validate the current constraint. Right clickin Parameter 1 - Parameter 1 + 參數 1 Parameter 2 - Parameter 2 + 參數2 Parameter 3 - Parameter 3 + 參數 3 Parameter 4 - Parameter 4 + 參數 4 Parameter 5 - Parameter 5 + 參數 5 Parameter 6 - Parameter 6 + 參數 6 Parameter 7 - Parameter 7 + 參數 7 Parameter 8 - Parameter 8 + 參數 8 Parameter 9 - Parameter 9 + 參數 9 Parameter 10 - Parameter 10 + 參數 10 Checkbox 1 toolTip - Checkbox 1 toolTip + 核取方塊 1 工具提示 Checkbox 1 - Checkbox 1 + 核取方塊 1 Checkbox 2 toolTip - Checkbox 2 toolTip + 核取方塊 2 工具提示 Checkbox 2 - Checkbox 2 + 核取方塊 2 Checkbox 3 toolTip - Checkbox 3 toolTip + 核取方塊 3 工具提示 Checkbox 3 - Checkbox 3 + 核取方塊 3 Checkbox 4 toolTip - Checkbox 4 toolTip + 核取方塊 4 工具提示 Checkbox 4 - Checkbox 4 + 核取方塊 4 @@ -6529,12 +6527,12 @@ Left clicking on empty space will validate the current constraint. Right clickin Offset geometry - Offset geometry + 偏移幾何體 Offset selected geometries. A positive offset length makes the offset go outward, a negative length inward. - Offset selected geometries. A positive offset length makes the offset go outward, a negative length inward. + 偏移選定的幾何體。正的偏移長度將向外偏移,負的長度將向內偏移。 @@ -6542,19 +6540,18 @@ Left clicking on empty space will validate the current constraint. Right clickin Delete original geometries (U) - Delete original geometries (U) + 刪除原始幾何體 (U) Apply equal constraints - Apply equal constraints + 套用相同拘束 If this option is selected dimensional constraints are excluded from the operation. Instead equal constraints are applied between the original objects and their copies. - If this option is selected dimensional constraints are excluded from the operation. -Instead equal constraints are applied between the original objects and their copies. + 如果選擇了此選項,則標註尺寸拘束將被排除在操作之外。反之將在原始物件及其複製品之間應用相等拘束。 @@ -6562,53 +6559,53 @@ Instead equal constraints are applied between the original objects and their cop Add offset constraint (J) - Add offset constraint (J) + 添加偏移拘束(J) TaskSketcherTool_c1_rectangle - + Corner, width, height - Corner, width, height - - - - Center, width, height - Center, width, height - - - - 3 corners - 3 corners - - - - Center, 2 corners - Center, 2 corners - - - - Rounded corners (U) - Rounded corners (U) + 角點,寬度,高度 + Center, width, height + 中心,寬度,高度 + + + + 3 corners + 3 個角點 + + + + Center, 2 corners + 中心,2 個角點 + + + + Rounded corners (U) + 圓角 (U) + + + Create a rectangle with rounded corners. - Create a rectangle with rounded corners. + 建立有圓角的矩形。 TaskSketcherTool_c2_rectangle - + Frame (J) - Frame (J) + 框架 (J) - + Create two rectangles with a constant offset. - Create two rectangles with a constant offset. + 建立兩個具有恒定偏移的矩形。 @@ -6624,7 +6621,7 @@ Instead equal constraints are applied between the original objects and their cop Constrain horizontal/vertical - Constrain horizontal/vertical + 水平/垂直拘束 @@ -6637,7 +6634,7 @@ Instead equal constraints are applied between the original objects and their cop Constrain horizontal/vertical - Constrain horizontal/vertical + 水平/垂直拘束 @@ -6650,12 +6647,12 @@ Instead equal constraints are applied between the original objects and their cop Curve Edition - Curve Edition + 曲線編輯 Curve Edition tools. - Curve Edition tools. + 曲線編輯工具. @@ -6694,7 +6691,7 @@ Instead equal constraints are applied between the original objects and their cop Create a coincident constraint between points, or fix a point on an edge, or a concentric constraint between circles, arcs, and ellipses - Create a coincident constraint between points, or fix a point on an edge, or a concentric constraint between circles, arcs, and ellipses + 在點之間建立重合拘束,或將點固定在邊緣上,或在圓、弧和橢圓之間創建同心拘束。 @@ -6702,12 +6699,12 @@ Instead equal constraints are applied between the original objects and their cop Rotate / Polar transform - Rotate / Polar transform + 旋轉 / 極座標變換 Rotate selected geometries, making n copies, enable creation of circular patterns. - Rotate selected geometries, making n copies, enable creation of circular patterns. + 旋轉選定的幾何體,創建 n 個副本,啟用圓形樣式的生成。 @@ -6740,7 +6737,7 @@ Instead equal constraints are applied between the original objects and their cop Text color of the coordinates - 座標軸文字之色彩 + 座標軸文字之顏色 @@ -6782,42 +6779,42 @@ Instead equal constraints are applied between the original objects and their cop Color of fully constrained normal geometry in edit mode - Color of fully constrained normal geometry in edit mode + 編輯模式中完全拘束的正常幾何體的顏色 Color of normal geometry in edit mode - Color of normal geometry in edit mode + 編輯模式中正常幾何體的顏色 Color of fully constrained construction geometry in edit mode - Color of fully constrained construction geometry in edit mode + 編輯模式中完全拘束的構造幾何體的顏色 Internal alignment geometry - Internal alignment geometry + 內部對齊幾何 Color of fully constrained internal alignment geometry in edit mode - Color of fully constrained internal alignment geometry in edit mode + 編輯模式中完全拘束的內部對齊幾何體的顏色 Color of internal alignment geometry in edit mode - Color of internal alignment geometry in edit mode + 編輯模式中內部對齊幾何體的顏色 Fully constrained sketch - Fully constrained sketch + 完全拘束之草圖 Color of geometry indicating a fully constrained sketch - Color of geometry indicating a fully constrained sketch + 指示完全拘束草圖的幾何體顏色 @@ -6827,7 +6824,7 @@ Instead equal constraints are applied between the original objects and their cop Color of dimensional driving constraints in edit mode - Color of dimensional driving constraints in edit mode + 編輯模式中標註尺寸驅動拘束的顏色 @@ -6837,7 +6834,7 @@ Instead equal constraints are applied between the original objects and their cop Color of vertices outside edit mode - Color of vertices outside edit mode + 編輯模式中外部頂點之顏色 @@ -6847,7 +6844,7 @@ Instead equal constraints are applied between the original objects and their cop Color of edges outside edit mode - Color of edges outside edit mode + 編輯模式中外部邊之顏色 @@ -6857,12 +6854,12 @@ Instead equal constraints are applied between the original objects and their cop Line pattern of normal edges. - Line pattern of normal edges. + 正常邊的線條樣式。 Width of normal edges. - Width of normal edges. + 正常邊的寬度。 @@ -6872,27 +6869,27 @@ Instead equal constraints are applied between the original objects and their cop Color of construction geometry in edit mode - 編輯模式中,建構線之色彩 + 編輯模式中建構線之顏色 Line pattern of construction edges. - Line pattern of construction edges. + 建構邊的線條樣式。 Width of construction edges. - Width of construction edges. + 建構邊的寬度。 Line pattern of internal aligned edges. - Line pattern of internal aligned edges. + 內部對齊邊的線條樣式。 Width of internal aligned edges. - Width of internal aligned edges. + 內部對齊邊的寬度。 @@ -6902,22 +6899,22 @@ Instead equal constraints are applied between the original objects and their cop Color of external geometry in edit mode - 編輯模式中,外部幾何之色彩 + 編輯模式中外部幾何之顏色 Line pattern of external edges. - Line pattern of external edges. + 外部邊的線條樣式。 Width of external edges. - Width of external edges. + 外部邊的寬度。 Color of geometry indicating an invalid sketch - 標示無效草圖之幾何圖色彩 + 標示無效草圖之幾何圖顏色 @@ -6932,7 +6929,7 @@ Instead equal constraints are applied between the original objects and their cop Color of driving constraints in edit mode - 編輯模式下驅動拘束之色彩 + 編輯模式下驅動拘束之顏色 @@ -6947,7 +6944,7 @@ Instead equal constraints are applied between the original objects and their cop Color of reference constraints in edit mode - 編輯模式中,被動拘束之色彩。 + 編輯模式中參考拘束之顏色。 @@ -6957,7 +6954,7 @@ Instead equal constraints are applied between the original objects and their cop Color of expression dependent constraints in edit mode - 編輯模式下相依拘束表示式之色彩 + 編輯模式下相依拘束表示式之顏色 @@ -6967,7 +6964,7 @@ Instead equal constraints are applied between the original objects and their cop Color of deactivated constraints in edit mode - 編輯模式中,停用的拘束之色彩 + 編輯模式中停用的拘束之顏色 @@ -6980,7 +6977,7 @@ Instead equal constraints are applied between the original objects and their cop Copies (+'U'/ -'J') - Copies (+'U'/ -'J') + 複製(+'U'/-'J') @@ -6988,12 +6985,12 @@ Instead equal constraints are applied between the original objects and their cop Sides (+'U'/ -'J') - Sides (+'U'/ -'J') + 邊 (+'U'/-'J') Degree (+'U'/ -'J') - Degree (+'U'/ -'J') + 角度(+'U'/-'J') @@ -7001,7 +6998,7 @@ Instead equal constraints are applied between the original objects and their cop Keep original geometries (U) - Keep original geometries (U) + 保留原始幾何體 (U) @@ -7009,12 +7006,12 @@ Instead equal constraints are applied between the original objects and their cop Constrain - Constrain + 拘束 Constrain tools. - Constrain tools. + 拘束工具。 @@ -7027,7 +7024,7 @@ Instead equal constraints are applied between the original objects and their cop Copy selected geometries and constraints to the clipboard - Copy selected geometries and constraints to the clipboard + 將選定的幾何體和拘束複製到剪貼板。 @@ -7040,7 +7037,7 @@ Instead equal constraints are applied between the original objects and their cop Cut selected geometries and constraints to the clipboard - Cut selected geometries and constraints to the clipboard + 將選定的幾何體和拘束剪到剪貼板。 @@ -7053,7 +7050,7 @@ Instead equal constraints are applied between the original objects and their cop Paste selected geometries and constraints from the clipboard - Paste selected geometries and constraints from the clipboard + 從剪貼板貼上選定的幾何體和拘束 @@ -7061,12 +7058,12 @@ Instead equal constraints are applied between the original objects and their cop Scale transform - Scale transform + 縮放變換 Scale selected geometries. After selecting the center point you can either enter the scale factor, or select two reference points then scale factor = length(p2-center) / length(p1-center). - Scale selected geometries. After selecting the center point you can either enter the scale factor, or select two reference points then scale factor = length(p2-center) / length(p1-center). + 縮放選定的幾何體。在選擇中心點後,可以輸入縮放係數,或選擇兩個參考點,然後縮放係數 = 長度(p2-中心) / 長度(p1-中心)。 @@ -7074,7 +7071,7 @@ Instead equal constraints are applied between the original objects and their cop Move / Array transform - Move / Array transform + 移動 / 陣列變換 @@ -7121,7 +7118,7 @@ Instead equal constraints are applied between the original objects and their cop Create a chamfer between two lines or at a coincident point - Create a chamfer between two lines or at a coincident point + 在兩條線之間或在重合點處建立倒角。 @@ -7129,12 +7126,12 @@ Instead equal constraints are applied between the original objects and their cop Create fillet or chamfer - Create fillet or chamfer + 建立圓角或倒角 Create a fillet or chamfer between two lines - Create a fillet or chamfer between two lines + 在兩條線間建立圓角或倒角 @@ -7142,12 +7139,12 @@ Instead equal constraints are applied between the original objects and their cop Arc ends - Arc ends + 弧結束 Flat ends - Flat ends + 平面結束 @@ -7160,7 +7157,7 @@ Instead equal constraints are applied between the original objects and their cop Axis endpoints - Axis endpoints + 軸端點 @@ -7168,12 +7165,12 @@ Instead equal constraints are applied between the original objects and their cop Preserve corner (U) - Preserve corner (U) + 保留角 (U) Preserves intersection point and most constraints - Preserves intersection point and most constraints + 保留交點和大部分約束 @@ -7181,17 +7178,17 @@ Instead equal constraints are applied between the original objects and their cop Point, length, angle - Point, length, angle + 點,長度,角度 Point, width, height - Point, width, height + 點,寬度,高度 2 points - 2 points + 2 個點 @@ -7212,7 +7209,7 @@ Instead equal constraints are applied between the original objects and their cop Delete original geometries (U) - Delete original geometries (U) + 刪除原始幾何體 (U) @@ -7220,7 +7217,7 @@ Instead equal constraints are applied between the original objects and their cop Create Symmetry Constraints (J) - Create Symmetry Constraints (J) + 建立對稱拘束 (J) @@ -7228,12 +7225,12 @@ Instead equal constraints are applied between the original objects and their cop Constrain tangent or collinear - Constrain tangent or collinear + 相切或共線拘束 Create a tangent or collinear constraint between two entities - Create a tangent or collinear constraint between two entities + 在兩個實體之間創建相切或共線拘束 @@ -7246,7 +7243,7 @@ Instead equal constraints are applied between the original objects and their cop Change the value of a dimensional constraint - Change the value of a dimensional constraint + 更改標註尺寸拘束的值 @@ -7281,12 +7278,12 @@ Instead equal constraints are applied between the original objects and their cop Toggle constraints - Toggle constraints + 切換拘束 Toggle constrain tools. - Toggle constrain tools. + 切換拘束工具 @@ -7294,17 +7291,17 @@ Instead equal constraints are applied between the original objects and their cop Press F to undo last point. - Press F to undo last point. + 按 F 以取消最後一個點。 Periodic (R) - Periodic (R) + 周期性 (R) Create a periodic B-spline. - Create a periodic B-spline. + 建立一週期性的 B-spline。 @@ -7313,7 +7310,7 @@ Instead equal constraints are applied between the original objects and their cop Fix the radius of an arc or a circle - Fix the radius of an arc or a circle + 固定弧或圓之半徑 @@ -7322,7 +7319,7 @@ Instead equal constraints are applied between the original objects and their cop Fix the radius/diameter of an arc or a circle - Fix the radius/diameter of an arc or a circle + 固定一個弧或圓的半徑/直徑 @@ -7330,14 +7327,13 @@ Instead equal constraints are applied between the original objects and their cop Apply equal constraints - Apply equal constraints + 套用相同拘束 If this option is selected dimensional constraints are excluded from the operation. Instead equal constraints are applied between the original objects and their copies. - If this option is selected dimensional constraints are excluded from the operation. -Instead equal constraints are applied between the original objects and their copies. + 如果選中此選項,將排除尺寸拘束。相反,將在原始物件及其複製品之間套用相同拘束。 diff --git a/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp b/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp index c062242de9..914111bc8b 100644 --- a/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp +++ b/src/Mod/Sketcher/Gui/TaskSketcherElements.cpp @@ -1677,8 +1677,11 @@ void TaskSketcherElements::onListWidgetElementsItemPressed(QListWidgetItem* it) selectVertex(item->isMidPointSelected, item->MidVertex); } - if (!elementSubNames.empty()) { - Gui::Selection().addSelections(doc_name.c_str(), obj_name.c_str(), elementSubNames); + for (const auto& elementSubName : elementSubNames) { + Gui::Selection().addSelection2( + doc_name.c_str(), + obj_name.c_str(), + sketchView->getSketchObject()->convertSubName(elementSubName).c_str()); } this->blockSelection(block); diff --git a/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp b/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp index e3dc0c6994..b075bc7482 100644 --- a/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp +++ b/src/Mod/Sketcher/Gui/ViewProviderSketch.cpp @@ -3319,23 +3319,28 @@ void ViewProviderSketch::unsetEdit(int ModNum) if (sketchHandler) deactivateHandler(); - // Resets the override draw style mode when leaving the sketch edit mode. - ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath( - "User parameter:BaseApp/Preferences/Mod/Sketcher/General"); - auto disableShadedView = hGrp->GetBool("DisableShadedView", true); - if (disableShadedView) { - Gui::Document* doc = Gui::Application::Instance->activeDocument(); - Gui::MDIView* mdi = doc->getActiveView(); - Gui::View3DInventorViewer* viewer = static_cast(mdi)->getViewer(); + Gui::MDIView* mdi = getInventorView(); + // handle the override draw style mode only if there's a 3D view, otherwise SIGSEGV may + // occur as described in https://github.com/FreeCAD/FreeCAD/issues/15918 + if (mdi) { + + // Resets the override draw style mode when leaving the sketch edit mode. ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath( - "User parameter:BaseApp/Preferences/Mod/Sketcher/General"); - auto OverrideMode = hGrp->GetASCII("OverrideMode", "As Is"); + "User parameter:BaseApp/Preferences/Mod/Sketcher/General"); + auto disableShadedView = hGrp->GetBool("DisableShadedView", true); + if (disableShadedView) { + Gui::View3DInventorViewer* viewer = + static_cast(mdi)->getViewer(); - if (viewer) - { - viewer->updateOverrideMode(OverrideMode); - viewer->setOverrideMode(OverrideMode); + ParameterGrp::handle hGrp = App::GetApplication().GetParameterGroupByPath( + "User parameter:BaseApp/Preferences/Mod/Sketcher/General"); + auto OverrideMode = hGrp->GetASCII("OverrideMode", "As Is"); + + if (viewer) { + viewer->updateOverrideMode(OverrideMode); + viewer->setOverrideMode(OverrideMode); + } } } @@ -3875,7 +3880,12 @@ bool ViewProviderSketch::addSelection(const std::string& subNameSuffix, float x, bool ViewProviderSketch::addSelection2(const std::string& subNameSuffix, float x, float y, float z) { return Gui::Selection().addSelection2( - editDocName.c_str(), editObjName.c_str(), (editSubName + subNameSuffix).c_str(), x, y, z); + editDocName.c_str(), + editObjName.c_str(), + (editSubName + getSketchObject()->convertSubName(subNameSuffix)).c_str(), + x, + y, + z); } bool ViewProviderSketch::setPreselect(const std::string& subNameSuffix, float x, float y, float z) diff --git a/src/Mod/Sketcher/SketcherTests/TestSketchValidateCoincidents.py b/src/Mod/Sketcher/SketcherTests/TestSketchValidateCoincidents.py index 682206a53d..afada0404c 100644 --- a/src/Mod/Sketcher/SketcherTests/TestSketchValidateCoincidents.py +++ b/src/Mod/Sketcher/SketcherTests/TestSketchValidateCoincidents.py @@ -128,6 +128,85 @@ class TestSketchValidateCoincidents(unittest.TestCase): del geo0, geo1 del sketch, c + def testExternalGeoDeletion(self): + """Make sure that we don't remove External Geometry references to deleted geometry. + See https://github.com/FreeCAD/FreeCAD/issues/16361""" + doc = App.ActiveDocument + doc.addObject("PartDesign::Body", "Body") + doc.Body.Label = "Body" + doc.recompute() + doc.Body.newObject("Sketcher::SketchObject", "Sketch") + doc.Sketch.AttachmentSupport = (doc.XY_Plane, [""]) + doc.Sketch.MapMode = "FlatFace" + doc.recompute() + geoList = [] + geoList.append( + Part.LineSegment( + App.Vector(7.548310, 5.193216, 0.000000), App.Vector(31.461353, 5.193216, 0.000000) + ) + ) + geoList.append( + Part.LineSegment( + App.Vector(31.461353, 5.193216, 0.000000), + App.Vector(31.461353, 20.652151, 0.000000), + ) + ) + geoList.append( + Part.LineSegment( + App.Vector(31.461353, 20.652151, 0.000000), + App.Vector(7.548310, 20.652151, 0.000000), + ) + ) + geoList.append( + Part.LineSegment( + App.Vector(7.548310, 20.652151, 0.000000), App.Vector(7.548310, 5.193216, 0.000000) + ) + ) + doc.Sketch.addGeometry(geoList, False) + del geoList + constraintList = [] + constraintList.append(Sketcher.Constraint("Coincident", 0, 2, 1, 1)) + constraintList.append(Sketcher.Constraint("Coincident", 1, 2, 2, 1)) + constraintList.append(Sketcher.Constraint("Coincident", 2, 2, 3, 1)) + constraintList.append(Sketcher.Constraint("Coincident", 3, 2, 0, 1)) + constraintList.append(Sketcher.Constraint("Horizontal", 0)) + constraintList.append(Sketcher.Constraint("Horizontal", 2)) + constraintList.append(Sketcher.Constraint("Vertical", 1)) + constraintList.append(Sketcher.Constraint("Vertical", 3)) + doc.Sketch.addConstraint(constraintList) + del constraintList + constraintList = [] + doc.recompute() + doc.Body.newObject("Sketcher::SketchObject", "Sketch001") + doc.Sketch001.AttachmentSupport = (doc.XY_Plane, [""]) + doc.Sketch001.MapMode = "FlatFace" + doc.recompute() + doc.Sketch001.addExternal("Sketch", "Edge3") + geoList = [] + geoList.append( + Part.LineSegment( + App.Vector(33.192780, 22.530144, 0.000000), + App.Vector(38.493977, 32.289181, 0.000000), + ) + ) + doc.Sketch001.addGeometry(geoList, False) + del geoList + constraintList = [] + doc.Sketch001.addConstraint(Sketcher.Constraint("Coincident", 0, 1, -3, 1)) + doc.recompute() + doc.Sketch.delGeometries([1]) + doc.Sketch.delGeometries([1]) + doc.recompute() + doc.Sketch001.addConstraint(Sketcher.Constraint("Coincident", 0, 1, -3, 1)) + doc.recompute() + # Assert + self.assertEqual(len(doc.Sketch001.Constraints), 2) # Still have the constraints + self.assertEqual(len(doc.Sketch001.ExternalGeometry), 0) + self.assertEqual(len(doc.Sketch001.Geometry), 1) + self.assertEqual( + len(doc.Sketch001.ExternalGeo), 3 + ) # Two axis, plus one the reference to deleted geometry + def tearDown(self): # closing doc FreeCAD.closeDocument(self.Doc.Name) diff --git a/src/Mod/Sketcher/SketcherTests/TestSketcherSolver.py b/src/Mod/Sketcher/SketcherTests/TestSketcherSolver.py index fdf02d6477..e9936cf61e 100644 --- a/src/Mod/Sketcher/SketcherTests/TestSketcherSolver.py +++ b/src/Mod/Sketcher/SketcherTests/TestSketcherSolver.py @@ -520,7 +520,7 @@ class TestSketcherSolver(unittest.TestCase): hole.DrillForDepth = 0 hole.Tapered = 0 self.Doc.recompute() - self.assertEqual(len(hole.Shape.Edges), 12) + self.assertEqual(len(hole.Shape.Edges), 13) hole.Threaded = True hole.ModelThread = True body.addObject(hole) @@ -530,11 +530,11 @@ class TestSketcherSolver(unittest.TestCase): body.addObject(sketch2) self.Doc.recompute() sketch2.addExternal("Hole", "Edge29") # Edge29 will disappear when we stop modeling threads - self.assertEqual(len(hole.Shape.Edges), 32) + self.assertEqual(len(hole.Shape.Edges), 38) hole.ModelThread = False hole.Refine = True self.Doc.recompute() - self.assertEqual(len(hole.Shape.Edges), 32) + self.assertEqual(len(hole.Shape.Edges), 38) self.assertEqual(len(sketch2.ExternalGeometry), 1) def testSaveLoadWithExternalGeometryReference(self): diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet.ts index fe572eaa7a..86d6509c54 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet.ts @@ -716,7 +716,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 - + Spreadsheet @@ -1125,7 +1125,7 @@ Defaults to: %V = %A Py - + Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_be.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_be.ts index d49d3edbd2..b4bd0a2919 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_be.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_be.ts @@ -735,7 +735,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Аркуш.імя_псеўданіма замест Аркуш.В1 - + Spreadsheet Аркуш @@ -1176,7 +1176,7 @@ Defaults to: %V = %A Py - + Unnamed Без назвы diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ca.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ca.ts index 9dbfe00f65..7664273ea3 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ca.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ca.ts @@ -732,7 +732,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name enlloc de Spreadsheet.B1 - + Spreadsheet Full de càlcul @@ -1156,7 +1156,7 @@ Per defecte: %V = %A Py - + Unnamed Sense nom diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts index aa280143fb..4bd3efef09 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_cs.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.alias_nazev místo Spreadsheet.B1 - + Spreadsheet Tabulka @@ -1181,7 +1181,7 @@ Výchozí hodnota: %V = %A Py - + Unnamed Nepojmenovaný diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_da.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_da.ts index ac1f8639ed..d356082af7 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_da.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_da.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Regneark.mit_alias_navn i stedet for Regneark.B1 - + Spreadsheet Regneark @@ -1165,7 +1165,7 @@ Defaults to: %V = %A Py - + Unnamed Unavngivet diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts index 4143066a5c..6d3fa6ad91 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_de.ts @@ -737,7 +737,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Tabelle.mein_Alias_name anstelle von Tabelle.B1 - + Spreadsheet Spreadsheet @@ -1002,7 +1002,7 @@ Standard: %V = %A Insert %n row(s) above %n Zeile darüber einfügen - %n Zeile(n) darüber einfügen + %n Zeilen darüber einfügen @@ -1161,7 +1161,7 @@ Standard: %V = %A Py - + Unnamed Unbenannt diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts index ad4ed3f25a..a82cad4d41 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_el.ts @@ -728,7 +728,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name αντί του Spreadsheet.B1 - + Spreadsheet Υπολογιστικό Φύλλο @@ -1153,7 +1153,7 @@ Defaults to: %V = %A Py - + Unnamed Ανώνυμο diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-AR.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-AR.ts index 4b489bf946..71f94eb4d5 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-AR.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-AR.ts @@ -741,7 +741,7 @@ Spreadsheet.mi_nombre_de_alias en lugar de Spreadsheet.B1 - + Spreadsheet Hoja de cálculo @@ -1167,7 +1167,7 @@ Por defecto a: %V = %A Py - + Unnamed Sin nombre 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 27544fee18..4854618242 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_es-ES.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name en lugar de Spreadsheet.B1 - + Spreadsheet Spreadsheet @@ -1165,7 +1165,7 @@ Por defecto: %V = %A Py - + Unnamed Sin nombre diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_eu.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_eu.ts index 0205e10d4f..73218457df 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_eu.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_eu.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 'KalkuluOrria.nire_aliasa' erabili 'KalkuluOrria.B1' erabili ordez - + Spreadsheet Kalkulu-orria @@ -1165,7 +1165,7 @@ Lehenespenak: %V = %A Py - + Unnamed Izenik gabea diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts index 603423e583..021cb74c64 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fi.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name sijasta Spreadsheet.B1 - + Spreadsheet Laskentataulukko @@ -1165,7 +1165,7 @@ Defaults to: %V = %A Py - + Unnamed Nimetön diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts index e0dfbbff67..8a2a459141 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_fr.ts @@ -739,7 +739,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name au lieu de Spreadsheet.B1 - + Spreadsheet Spreadsheet @@ -1163,7 +1163,7 @@ Par défaut : %V = %A Py - + Unnamed Nouveau diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts index 597aded1f6..a17c8cb083 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hr.ts @@ -746,7 +746,7 @@ Spreadsheet.my_alias_name umjesto Spreadsheet.B1 - + Spreadsheet Proračunska tablica @@ -1180,7 +1180,7 @@ Zadano: %V = %A Py - + Unnamed Neimenovano diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts index 3623c779d5..ab77794e76 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_hu.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name helyett Spreadsheet.B1 - + Spreadsheet Számolótábla @@ -1165,7 +1165,7 @@ Alapértelmezett értéke: %V = %A Py - + Unnamed Névtelen diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts index d0fbb7bbd7..93f11eeee4 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_it.ts @@ -738,7 +738,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name invece di Spreadsheet.B1 - + Spreadsheet Foglio di calcolo @@ -1163,7 +1163,7 @@ Predefinito a: %V = %A Py - + Unnamed Senza nome diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts index 055671ac26..375ce57508 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ja.ts @@ -733,7 +733,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name のように、エイリアスでセルを参照してください。 - + Spreadsheet スプレッドシート @@ -1150,7 +1150,7 @@ Defaults to: %V = %A Py - + Unnamed Unnamed diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ka.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ka.ts index d76c7c35bd..bfdd66f0f4 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ka.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ka.ts @@ -731,7 +731,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name ნაცვლად Spreadsheet.B1 - + Spreadsheet ელცხრილი @@ -1157,7 +1157,7 @@ Defaults to: %V = %A Py - + Unnamed უსახელო diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ko.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ko.ts index 1b032f65b1..74a49e5d96 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ko.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ko.ts @@ -614,7 +614,7 @@ switch the design configuration. The property will be created if not exist. Center - 센터 + 중심 @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name instead of Spreadsheet.B1 - + Spreadsheet 스프레드시트 @@ -1109,7 +1109,7 @@ Defaults to: %V = %A Paste - Paste + 붙여넣기 @@ -1157,7 +1157,7 @@ Defaults to: %V = %A Py - + Unnamed 이름없음 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_lt.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_lt.ts index 2effaa90f9..d77d2508db 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_lt.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_lt.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name instead of Spreadsheet.B1 - + Spreadsheet Skaičiuoklė @@ -1181,7 +1181,7 @@ Defaults to: %V = %A Py - + Unnamed Be pavadinimo diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.ts index 38483fe7d3..f75ec9c517 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_nl.ts @@ -729,7 +729,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.mijn_alias_naam in plaats van Spreadsheet.B1 - + Spreadsheet Rekenblad @@ -1154,7 +1154,7 @@ waarbij: Py - + Unnamed Naamloos diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts index 2c3f58522c..22d8022c09 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pl.ts @@ -739,7 +739,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Arkusz.mój_alias zamiast Arkusz.B1 - + Spreadsheet Arkusz kalkulacyjny @@ -1180,7 +1180,7 @@ Domyślnie %V = %A Py - + Unnamed Nienazwany diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.ts index b0b00a91c0..99a33871d5 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-BR.ts @@ -732,7 +732,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Planilha.meu_nome em vez de Planilha.B1 - + Spreadsheet Planilha @@ -1036,25 +1036,25 @@ Padrão para: %V = %A Insert %n column(s) right - + Inserir %n coluna(s) à direita - Insert %n column(s) right + Insere %n coluna(s) à direita Insert %n non-contiguous columns - + Inserir %n colunas não contíguas - Insert %n non-contiguous columns + Insere %n colunas não sequenciais Remove column(s) - + Remover coluna(s) - Remove column(s) + Remove coluna(s) @@ -1157,7 +1157,7 @@ Padrão para: %V = %A Py - + Unnamed Sem nome 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 7433426572..bcfc1d599c 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_pt-PT.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name em vez de Spreadsheet.B1 - + Spreadsheet Folha de cálculo @@ -1165,7 +1165,7 @@ Defaults to: %V = %A Py - + Unnamed Sem nome diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts index 25f981e872..06578d992c 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ro.ts @@ -738,7 +738,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name în loc de Spreadsheet.B1 - + Spreadsheet Foaie de calcul @@ -1171,7 +1171,7 @@ Implicit la: %V = %A Py - + Unnamed Nedenumit diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts index bdb3cb2ffd..a4b904c6f7 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_ru.ts @@ -737,7 +737,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name вместо Spreadsheet.B1 - + Spreadsheet Электронная таблица @@ -1178,7 +1178,7 @@ Defaults to: %V = %A Py - + Unnamed Безымянный diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts index 6c38d30410..999c30b832 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sl.ts @@ -738,7 +738,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Preglednica.ime_ki_sem_ga_določil namesto Preglednica.B1 - + Spreadsheet Preglednica @@ -1179,7 +1179,7 @@ Privzeto: %V = %A Py - + Unnamed Neimenovan diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr-CS.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr-CS.ts index c0c114cff9..6393d16e9d 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr-CS.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr-CS.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.moje_alternativno_ime umesto Spreadsheet.B1 - + Spreadsheet Tabela @@ -1173,7 +1173,7 @@ Defaults to: %V = %A Py - + Unnamed Bez imena diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.ts index c3a9f9a9d1..5f2834952c 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sr.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.моје_алтернативно_име уместо Spreadsheet.B1 - + Spreadsheet Табела @@ -1173,7 +1173,7 @@ Defaults to: %V = %A Py - + Unnamed Без имена 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 7e940bcfe8..45fcd25e48 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_sv-SE.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name, istället för Spreadsheet.B1 - + Spreadsheet Kalkylark @@ -1004,24 +1004,24 @@ Defaults to: %V = %A Insert %n row(s) above - - Insert %n row(s) above - Insert %n row(s) above + + Infoga %n rad ovan + Infoga %n rader ovan Insert %n row(s) below - - Insert %n row(s) below - Insert %n row(s) below + + Infoga %n rad nedan + Infoga %n rader nedan Insert %n non-contiguous rows - Insert %n non-contiguous rows + Infoga %n ej sammanhängande rader Insert %n non-contiguous rows @@ -1036,17 +1036,17 @@ Defaults to: %V = %A Insert %n column(s) left - - Insert %n column(s) left - Insert %n column(s) left + + Infoga %n kolumn till vänster + Infoga %n kolumner till vänster Insert %n column(s) right - - Infoga %n kolumn(er) till höger - Insert %n column(s) right + + Infoga %n kolumn till höger + Infoga %n kolumner till höger @@ -1165,7 +1165,7 @@ Defaults to: %V = %A Py - + Unnamed Namnlös diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts index edd13d1156..12b86c9629 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_tr.ts @@ -739,7 +739,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Hücreye alias'lı bir isim atayın, örneğin Spreadsheet.B1 yerine Spreadsheet.my_alias_name - + Spreadsheet Hesap Tablosu @@ -1163,7 +1163,7 @@ Defaults to: %V = %A Py - + Unnamed İsimsiz diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts index 90409ab4c7..3f0ef51245 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_uk.ts @@ -739,7 +739,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name замість Spreadsheet.B1 - + Spreadsheet Таблиця @@ -1180,7 +1180,7 @@ Defaults to: %V = %A Py - + Unnamed Без назви diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_val-ES.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_val-ES.ts index ac767c2ed5..f0587f71db 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_val-ES.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_val-ES.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name instead of Spreadsheet.B1 - + Spreadsheet Full de càlcul @@ -1165,7 +1165,7 @@ Defaults to: %V = %A Py - + Unnamed Sense nom diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.ts index 00f1c451ee..0f51541695 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-CN.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name代替Spreadsheet.B1 - + Spreadsheet 电子表格 @@ -1157,7 +1157,7 @@ Defaults to: %V = %A Py - + Unnamed 未命名 diff --git a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.ts b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.ts index 74c9a1f348..12b6d2bec5 100644 --- a/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.ts +++ b/src/Mod/Spreadsheet/Gui/Resources/translations/Spreadsheet_zh-TW.ts @@ -740,7 +740,7 @@ Spreadsheet.my_alias_name instead of Spreadsheet.B1 Spreadsheet.my_alias_name取代Spreadsheet.B1 - + Spreadsheet 試算表 @@ -1157,7 +1157,7 @@ Defaults to: %V = %A Py - + Unnamed 未命名 diff --git a/src/Mod/Spreadsheet/Gui/ViewProviderSpreadsheet.cpp b/src/Mod/Spreadsheet/Gui/ViewProviderSpreadsheet.cpp index c0bc26ee90..4e63578c57 100644 --- a/src/Mod/Spreadsheet/Gui/ViewProviderSpreadsheet.cpp +++ b/src/Mod/Spreadsheet/Gui/ViewProviderSpreadsheet.cpp @@ -73,31 +73,7 @@ std::vector ViewProviderSheet::getDisplayModes() const QIcon ViewProviderSheet::getIcon() const { - // clang-format off - static const char* const Points_Feature_xpm[] = { - "16 16 3 1", - " c None", - ". c #000000", - "+ c #FFFFFF", - " ", - " ", - "................", - ".++++.++++.++++.", - ".++++.++++.++++.", - "................", - ".++++.++++.++++.", - ".++++.++++.++++.", - "................", - ".++++.++++.++++.", - ".++++.++++.++++.", - "................", - ".++++.++++.++++.", - ".++++.++++.++++.", - "................", - " "}; - QPixmap px(Points_Feature_xpm); - return px; - // clang-format on + return QIcon(QLatin1String(":icons/Spreadsheet.svg")); } bool ViewProviderSheet::setEdit(int ModNum) diff --git a/src/Mod/Spreadsheet/importXLSX.py b/src/Mod/Spreadsheet/importXLSX.py index d7c15cdf9e..eecdb3a859 100644 --- a/src/Mod/Spreadsheet/importXLSX.py +++ b/src/Mod/Spreadsheet/importXLSX.py @@ -329,7 +329,7 @@ def handleCells(cellList, actCellSheet, sList): if refType: cellType = getText(refType.childNodes) else: - cellType = "n" # FIXME: some cells don't have t and s attributes + cellType = "n" # print("reference: ", ref, ' Cell type: ', cellType) diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage.ts b/src/Mod/Start/Gui/Resources/translations/StartPage.ts index c3b1a25015..108be32d13 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file - + Create a new empty FreeCAD file - + Open File - + Open an existing CAD file or 3D model - + Parametric Part - + Create a part with the Part Design workbench - + Assembly - + Create an assembly project - + 2D Draft - + Create a 2D Draft with the Draft workbench - + BIM/Architecture - + Create an architectural project - + New File - + Examples - + Recent Files - + Open first start setup - + Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_be.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_be.ts index 396f5bd13d..537ef08cf2 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_be.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_be.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Пусты файл - + Create a new empty FreeCAD file Стварыць новы пусты файл FreeCAD - + Open File Адчыніць файл - + Open an existing CAD file or 3D model Адчыніць файл CAD, які існуе, ці трохмерную мадэль - + Parametric Part Параметрычная дэталь - + Create a part with the Part Design workbench Стварыць дэталь з дапамогай варштату Праектавання дэталі - + Assembly Зборка - + Create an assembly project Стварыць праект зборкі - + 2D Draft Двухмерны чарнавік - + Create a 2D Draft with the Draft workbench Стварыць двухмерны чарнавік з дапамогай варштату Чарнавік - + BIM/Architecture BIM/Архітэктура - + Create an architectural project Стварыць архітэктурны праект - + New File Новы файл - + Examples Прыклады - + Recent Files Апошнія файлы - + Open first start setup Адчыніць налады пры першым запуску - + Don't show this Start page again (start with blank screen) Больш не паказваць гэтую стартавую старонку (пачаць з пустога экрану) @@ -147,7 +147,7 @@ Workbench - + Start Пачаць diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ca.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ca.ts index fc688bd8c8..6c41834d79 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ca.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ca.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Fitxer buit - + Create a new empty FreeCAD file Crear un nou fitxer buit de FreeCAD - + Open File Obrir fitxer - + Open an existing CAD file or 3D model Obrir un model 3D o fitxer CAD existent - + Parametric Part Peça Paramètrica - + Create a part with the Part Design workbench Crea una peça amb el banc de treball PartDesign - + Assembly Muntatge - + Create an assembly project Crear un projecte de muntatge - + 2D Draft Esbós 2D - + Create a 2D Draft with the Draft workbench Crea un esbós 2D amb el banc de treball d'Esbós - + BIM/Architecture BIM/Arquitectura - + Create an architectural project Crea un projecte d'arquitectura - + New File Fitxer nou - + Examples Exemples - + Recent Files Fitxers recents - + Open first start setup Obre la configuració del primer inici - + Don't show this Start page again (start with blank screen) No mostris més aquesta pàgina d'inici (començar amb una pantalla en blanc) @@ -147,7 +147,7 @@ Workbench - + Start Inicia diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts index 49470cf85a..90560ef43d 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_cs.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Prázdný soubor - + Create a new empty FreeCAD file Vytvořit prázdný soubor FreeCADu - + Open File Otevřít soubor - + Open an existing CAD file or 3D model Otevřít existující CAD soubor nebo 3D model - + Parametric Part Parametrický díl - + Create a part with the Part Design workbench Vytvořit díl v prostředí návrhu dílu - + Assembly Sestava - + Create an assembly project Vytvořit projekt sestavy - + 2D Draft 2D návrh - + Create a 2D Draft with the Draft workbench Vytvořit 2D návrh v prostředí návrhu - + BIM/Architecture BIM/Architektura - + Create an architectural project Vytvořit projekt architektury - + New File Nový soubor - + Examples Příklady - + Recent Files Nedávné soubory - + Open first start setup Otevřít nastavení prvního spuštění - + Don't show this Start page again (start with blank screen) Nezobrazovat příště tuto úvodní stránku (začít s prázdnou obrazovkou) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_da.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_da.ts index 2f867b2f88..9c42bdabc5 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_da.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_da.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Tom fil - + Create a new empty FreeCAD file Opret en ny tom FreeCAD-fil - + Open File Åbn fil - + Open an existing CAD file or 3D model Åbn en eksisterende CAD-fil eller 3D-model - + Parametric Part Parametrisk komponent - + Create a part with the Part Design workbench Opret en ny komponent eller åbn en eksisterende - + Assembly Samling - + Create an assembly project Opret en samling af komponenter - + 2D Draft 2D Udkast - + Create a 2D Draft with the Draft workbench Opret eller rediger et udkast i 2D - + BIM/Architecture BIM/Arkitektur - + Create an architectural project Opret et arkitekturprojekt - + New File Ny Fil - + Examples Eksempler - + Recent Files Seneste filer - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Vis ikke startsiden igen (start med tom skærm) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts index 59c42f9e93..29ae7ce149 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_de.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Leere Datei - + Create a new empty FreeCAD file Erstellt eine neue, leere FreeCAD-Datei - + Open File Datei öffnen - + Open an existing CAD file or 3D model Öffnet eine vorhandene CAD-Datei oder ein 3D-Modell - + Parametric Part Parametrisches Bauteil - + Create a part with the Part Design workbench Erstellt ein Bauteil mit dem Arbeitsbereich Part Design - + Assembly Baugruppe - + Create an assembly project Erstellt ein Baugruppenprojekt - + 2D Draft 2D-Zeichnen - + Create a 2D Draft with the Draft workbench Erstellt eine 2D-Zeichnung mit dem Arbeitsbereich Draft - + BIM/Architecture BIM/Architektur - + Create an architectural project Erstellt ein Architekturprojekt - + New File Neue Datei - + Examples Beispiele - + Recent Files Zuletzt verwendete Dateien - + Open first start setup Ersteinrichtung öffnen - + Don't show this Start page again (start with blank screen) Diese Startseite nicht mehr anzeigen (mit leerem Bildschirm beginnen) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_el.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_el.ts index 6eb2396601..36e188a1c2 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_el.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_el.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Κενό αρχείο - + Create a new empty FreeCAD file Δημιουργήστε ένα κενό αρχείο FreeCAD - + Open File Άνοιγμα Αρχείου - + Open an existing CAD file or 3D model Άνοιγμα ενός υπάρχοντος αρχείου CAD ή 3D μοντέλου - + Parametric Part Παραμετρικό Μέρος - + Create a part with the Part Design workbench Δημιουργήστε ένα τμήμα με τον πάγκο εργασίας Σχεδίου Εξαρτήματος - + Assembly Συγκρότημα - + Create an assembly project Δημιουργία έργου συναρμολόγησης - + 2D Draft 2D Σχέδιο - + Create a 2D Draft with the Draft workbench Δημιουργήστε ένα 2D σχέδιο με τον πάγκο εργασίας του Σχέδια - + BIM/Architecture BIM/Αρχιτεκτονική - + Create an architectural project Δημιουργήστε ένα έργο αρχιτεκτονικής - + New File Νέο αρχείο - + Examples Παραδείγματα - + Recent Files Πρόσφατα αρχεία - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Να μην εμφανιστεί ξανά αυτή η αρχική σελίδα (έναρξη με κενή οθόνη) @@ -147,7 +147,7 @@ Workbench - + Start Εκκίνηση diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_es-AR.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_es-AR.ts index cbd98ebad2..5b715342c0 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_es-AR.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_es-AR.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Archivo vacío - + Create a new empty FreeCAD file Crear un nuevo archivo FreeCAD vacío - + Open File Abrir archivo - + Open an existing CAD file or 3D model Abrir un archivo CAD existente o modelo 3D - + Parametric Part Parte paramétrica - + Create a part with the Part Design workbench Crear una pieza con el banco de trabajo Part Design - + Assembly Ensamblaje - + Create an assembly project Crea un proyecto de ensamblado - + 2D Draft Dibujo 2D - + Create a 2D Draft with the Draft workbench Crear un borrador 2D con el banco de trabajo Draft - + BIM/Architecture BIM/Arquitectura - + Create an architectural project Crear un proyecto arquitectónico - + New File Nuevo archivo - + Examples Ejemplos - + Recent Files Archivos recientes - + Open first start setup Abrir configuración de primer inicio - + Don't show this Start page again (start with blank screen) No volver a mostrar esta página de inicio (empezar con la pantalla en blanco) @@ -147,7 +147,7 @@ Workbench - + Start Inicio 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 22189f294c..f559922938 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_es-ES.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Archivo vacío - + Create a new empty FreeCAD file Crear un nuevo archivo de FreeCAD vacío - + Open File Abrir archivo - + Open an existing CAD file or 3D model Abrir un archivo CAD existente o un modelo 3D - + Parametric Part Parte paramétrica - + Create a part with the Part Design workbench Crear una pieza con el banco de trabajo Part Design - + Assembly Ensamblaje - + Create an assembly project Crear un proyecto de ensamblaje - + 2D Draft Dibujo 2D - + Create a 2D Draft with the Draft workbench Crear un borrador 2D con el banco de trabajo Draft - + BIM/Architecture BIM/Arquitectura - + Create an architectural project Crear un proyecto de arquitectura - + New File Archivo nuevo - + Examples Ejemplos - + Recent Files Archivos recientes - + Open first start setup Abrir configuración de primer inicio - + Don't show this Start page again (start with blank screen) No volver a mostrar esta página de inicio (empezar con la pantalla en blanco) @@ -147,7 +147,7 @@ Workbench - + Start Inicio diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_eu.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_eu.ts index 2543ce32fb..91d445c667 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_eu.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_eu.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Fitxategi hutsa - + Create a new empty FreeCAD file Sortu FreeCAD fitxategi huts berri bat - + Open File Ireki fitxategia - + Open an existing CAD file or 3D model Ireki lehendik dagoen CAD fitxategi bat edo 3D eredu bat - + Parametric Part Pieza parametrikoa - + Create a part with the Part Design workbench Sortu pieza bat Piezen Diseinua laneko mahaiarekin - + Assembly Muntaketa - + Create an assembly project Muntaia proiektu bat sortu - + 2D Draft 2D zirriborroa - + Create a 2D Draft with the Draft workbench Sortu 2D zirriborroa Zirriborroa lan mahaiarekin - + BIM/Architecture BIM/Arkitektura - + Create an architectural project Proiektu arkitektoniko bat sortu - + New File Fitxategi berria - + Examples Adibideak - + Recent Files Azken fitxategiak - + Open first start setup - Open first start setup + Ireki hasierako lehen konfigurazioa - + Don't show this Start page again (start with blank screen) Ez erakutsi hasierako orri hau berriro (hasi pantaila hutsarekin) @@ -147,7 +147,7 @@ Workbench - + Start Hasi diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts index 5b3f530a01..59d21554af 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_fi.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Tyhjä tiedosto - + Create a new empty FreeCAD file Luo uusi tyhjä FreeCAD tiedosto - + Open File Avaa tiedosto - + Open an existing CAD file or 3D model Avaa olemassa oleva CAD-tiedosto tai 3D-malli - + Parametric Part Parametrinen osa - + Create a part with the Part Design workbench Luo osa Part Design työpöydällä - + Assembly Kokoonpano - + Create an assembly project Luo kokoonpanoprojekti - + 2D Draft 2D-piirustus - + Create a 2D Draft with the Draft workbench Luo 2D-piirustus Draft-työpöydällä - + BIM/Architecture BIM/Arkkitehtuuri - + Create an architectural project Luo arkkitehtoninen projekti - + New File Uusi tiedosto - + Examples Esimerkit - + Recent Files Viimeisimmät tiedostot - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Älä näytä tätä aloitussivua uudelleen (aloita tyhjältä näytöltä) @@ -147,7 +147,7 @@ Workbench - + Start Aloita diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts index f7056cc727..e61eddfc0d 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_fr.ts @@ -16,12 +16,12 @@ To get started, set your basic configuration options below. - Pour commencer, définissez vos paramètres de configuration de base ci-dessous. + Commencer par définir votre configuration de base ci-dessous. These options (and many more) can be changed later in Preferences. - Ces paramètres (et bien d'autres) peuvent être modifiés ultérieurement dans les préférences. + Ces paramètres (et bien d'autres) peuvent être modifiés plus tard dans les préférences. @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Fichier vide - + Create a new empty FreeCAD file Créer un nouveau fichier FreeCAD vide - + Open File Ouvrir un fichier - + Open an existing CAD file or 3D model Ouvrir un fichier de CAO existant ou un modèle 3D - + Parametric Part Objet paramétrique - + Create a part with the Part Design workbench Créer un objet avec l'atelier PartDesign - + Assembly Assemblage - + Create an assembly project Créer un projet d'assemblage - + 2D Draft Dessin 2D - + Create a 2D Draft with the Draft workbench Créer un dessin 2D avec l'atelier Draft - + BIM/Architecture BIM/Architecture - + Create an architectural project Créer un projet d'architecture - + New File Nouveau fichier - + Examples Exemples - + Recent Files Fichiers récents - + Open first start setup - Ouvrir la fenêtre de configuration au démarrage + Configuration de base au démarrage - + Don't show this Start page again (start with blank screen) Ne plus afficher cette page de démarrage (commencer par un écran vierge) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts index f9ef5127dd..489b5c59e3 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hr.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Open File - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Montaža - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File New File - + Examples Examples - + Recent Files Recent Files - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Počni diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts index 92e6c95943..4f65e9101b 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_hu.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Üres fájl - + Create a new empty FreeCAD file Egy új FreeCAD fájl létrehozás - + Open File Fájl megnyitás - + Open an existing CAD file or 3D model Meglévő CAD fájl vagy 3D modell megnyitása - + Parametric Part Változós rész - + Create a part with the Part Design workbench Alkatrész létrehozása az Alkatrész tervezés munkafelülettel - + Assembly Összeállítás - + Create an assembly project Összeszerelési terv létrehozása - + 2D Draft 2D tervrajz - + Create a 2D Draft with the Draft workbench 2D vázlat létrehozása a Vázlat munkafelülettel - + BIM/Architecture BIM/Építészet - + Create an architectural project Építészeti terv létrehozása - + New File Új fájl - + Examples Példák - + Recent Files Legutóbbi fájlok - + Open first start setup Első indítási beállítás megnyitása - + Don't show this Start page again (start with blank screen) Ne jelenítse meg újra ezt a kezdőlapot (üres képernyővel kezdje) @@ -147,7 +147,7 @@ Workbench - + Start Kezdő időpont diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts index aafd2f421b..2759653982 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_it.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file File vuoto - + Create a new empty FreeCAD file Crea un nuovo file FreeCAD vuoto - + Open File Apri File - + Open an existing CAD file or 3D model Apri un file CAD o modello 3D esistente - + Parametric Part Parte parametrica - + Create a part with the Part Design workbench Crea una parte con l'ambiente di lavoro Part Design - + Assembly Assieme - + Create an assembly project Crea un progetto di assieme - + 2D Draft Bozza 2D - + Create a 2D Draft with the Draft workbench Crea una bozza 2D con l'ambiente di lavoro Draft - + BIM/Architecture BIM/Architettura - + Create an architectural project Crea un progetto di architettura - + New File Nuovo File - + Examples Esempi - + Recent Files File recenti - + Open first start setup Apri la configurazione del primo avvio - + Don't show this Start page again (start with blank screen) Non mostrare più questa pagina di avvio (inizia con una schermata vuota) @@ -147,7 +147,7 @@ Workbench - + Start Inizio diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts index a9d9fda0dd..e6c9e35d34 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ja.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file 空ファイル - + Create a new empty FreeCAD file 新しいFreeCADファイルを作成 - + Open File ファイルを開く - + Open an existing CAD file or 3D model 既存のCADファイルまたは3Dモデルを開く - + Parametric Part パラメトリックパーツ - + Create a part with the Part Design workbench パートデザインワークベンチでパーツを作成 - + Assembly アセンブリ - + Create an assembly project アセンブリプロジェクトを作成 - + 2D Draft 2D基本設計(下書き) - + Create a 2D Draft with the Draft workbench 基本設計ワークベンチで2D基本設計を作成 - + BIM/Architecture BIM/アーキテクチャ(建築) - + Create an architectural project アーキテクチャ(建築)のプロジェクトを作成 - + New File 新規ファイル - + Examples サンプル - + Recent Files 最近使用したファイル - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) 今後このスタートページを表示しない (空白の画面で開始) @@ -147,7 +147,7 @@ Workbench - + Start 開始 diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ka.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ka.ts index 94dc5779ac..87e2ba38e1 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ka.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ka.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file ცარიელი ფაილი - + Create a new empty FreeCAD file ცარიელი FreeCAD-ის ფაილის შექმნა - + Open File ფაილის გახსნა - + Open an existing CAD file or 3D model არსებული CAD ფაილის ან 3D მოდელის გახსნა - + Parametric Part პარამეტრული ნაწილი - + Create a part with the Part Design workbench ნაწილის შექმნა ნაწილის დიზაინის სამუშაო მაგიდით - + Assembly აწყობა - + Create an assembly project აწყობის პროექტის შექმნა - + 2D Draft 2D მონახაზი - + Create a 2D Draft with the Draft workbench 2D ნახაზის შექმნა Draft სამუშაო მაგიდით - + BIM/Architecture BIM/არქიტექტურა - + Create an architectural project არქიტექტურული პროექტის შექმნა - + New File ახალი ფაილი - + Examples მაგალითები - + Recent Files ბოლო ფაილები - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) აღარ მაჩვენო საწყისი გვერდი (დაწყება ცარიელი ეკრანით) @@ -147,7 +147,7 @@ Workbench - + Start დაწყება diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ko.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ko.ts index b2531f513a..2dfd0bfd94 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ko.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ko.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file 빈 파일 - + Create a new empty FreeCAD file 새로운 빈 프리캐드 파일을 생성하세요 - + Open File 파일 열기 - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part 매개변수 부품 - + Create a part with the Part Design workbench 부품설계 작업대에서 부품 만들기 - + Assembly 조립 - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/건축 - + Create an architectural project Create an architectural project - + New File 새 파일 - + Examples 예제 - + Recent Files 최근 파일 - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start 시작 diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_lt.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_lt.ts index f52a884087..d0b5c11714 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_lt.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_lt.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Tuščias failas - + Create a new empty FreeCAD file Sukurti tuščią FreeCad failą - + Open File Atidaryti failą - + Open an existing CAD file or 3D model Atverti esamą CAD failą arba 3D modelį - + Parametric Part Parametrinė detalė - + Create a part with the Part Design workbench Sukurkite detalę naudodami Detalių projektavimo darbastalį - + Assembly Surinkimas - + Create an assembly project Sukurti surinkimo projektą - + 2D Draft Plokščias juodraštis - + Create a 2D Draft with the Draft workbench Sukurkite brėžinio juodraštį naudodami Juodraščio darbastalį - + BIM/Architecture BIM/Architektūra - + Create an architectural project Sukurkite architektūrinį projektą - + New File Naujas failas - + Examples Pavyzdžiai - + Recent Files Paskiausiai naudoti failai - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Pakartotinai neberodyti šio pradžios puslapio @@ -147,7 +147,7 @@ Workbench - + Start Pradėti diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts index 66b7e4019c..4e09b450ba 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_nl.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Leeg bestand - + Create a new empty FreeCAD file Maak een nieuw leeg FreeCAD-bestand - + Open File Bestand openen - + Open an existing CAD file or 3D model Open een bestaand CAD-bestand of 3D-model - + Parametric Part Parametrisch onderdeel - + Create a part with the Part Design workbench Maak een onderdeel aan met de Part Design werkbank - + Assembly Samenstelling - + Create an assembly project Start een samenstelling project - + 2D Draft 2D schets - + Create a 2D Draft with the Draft workbench Maak een 2D schets met de Draft werkbank - + BIM/Architecture BIM/Architectuur - + Create an architectural project Maak een bouwkundig project - + New File Nieuw bestand - + Examples Voorbeelden - + Recent Files Recente bestanden - + Open first start setup Stel de eerste start set-up in - + Don't show this Start page again (start with blank screen) Laat deze startpagina niet meer zien (start met een leeg scherm) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts index 2c122ab039..9021fb9997 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pl.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Pusty plik - + Create a new empty FreeCAD file Utwórz pusty plik FreeCAD - + Open File Otwórz plik - + Open an existing CAD file or 3D model Otwórz plik CAD lub model 3D - + Parametric Part Część parametryczna - + Create a part with the Part Design workbench Utwórz część w środowisku pracy Projekt Części - + Assembly Złożenie - + Create an assembly project Utwórz projekt złożenia - + 2D Draft Rysunek roboczy 2D - + Create a 2D Draft with the Draft workbench Utwórz rysunek 2D w środowisku Rysunek Roboczy - + BIM/Architecture BIM / Architektura - + Create an architectural project Utwórz projekt architektoniczny - + New File Nowy plik - + Examples Przykłady - + Recent Files Ostatnio używane pliki - + Open first start setup Otwórz ustawienia pierwszego uruchomienia - + Don't show this Start page again (start with blank screen) Nie pokazuj ponownie tej strony startowej (uruchom z pustym ekranem) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts index 7c3eb7f231..8817ebc595 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-BR.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Arquivo vazio - + Create a new empty FreeCAD file Criar um novo arquivo FreeCAD vazio - + Open File Abrir arquivo - + Open an existing CAD file or 3D model Abrir um arquivo CAD existente ou modelo 3D - + Parametric Part Peça paramétrica - + Create a part with the Part Design workbench Crie uma peça com a bancada de trabalho Part Design - + Assembly Assemblagem - + Create an assembly project Criar um projeto de montagem - + 2D Draft Desenho 2D - + Create a 2D Draft with the Draft workbench Crie um desenho 2D com a bancada de trabalho Draft - + BIM/Architecture BIM/Arquitetura - + Create an architectural project Criar um projeto arquitetônico - + New File Novo arquivo - + Examples Exemplos - + Recent Files Arquivos Recentes - + Open first start setup Abrir a configuração inicial - + Don't show this Start page again (start with blank screen) Não mostrar esta página inicial novamente (começar com tela em branco) @@ -147,7 +147,7 @@ Workbench - + Start Começar 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 0c626b1160..a701ae8e6f 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_pt-PT.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Open File - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Montagem - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File New File - + Examples Examples - + Recent Files Recent Files - + Open first start setup Abrir a configuração inicial - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Começar diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts index 589fb33d37..2d3a728d31 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ro.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Open File - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Ansamblu - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File New File - + Examples Examples - + Recent Files Recent Files - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts index 9a091dc707..9f0ceee366 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_ru.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Пустой файл - + Create a new empty FreeCAD file Создать пустой файл FreeCAD - + Open File Открыть файл - + Open an existing CAD file or 3D model Открыть существующий CAD файл или 3D модель - + Parametric Part Параметрическая деталь - + Create a part with the Part Design workbench Создать деталь на верстаке для проектирования деталей - + Assembly Сборка - + Create an assembly project Создать сборку проекта - + 2D Draft 2D эскиз - + Create a 2D Draft with the Draft workbench Создать 2D эскиз на верстаке эскизов - + BIM/Architecture BIM/Архитектура - + Create an architectural project Создать архитектурный проект - + New File Новый файл - + Examples Примеры - + Recent Files Недавние файлы - + Open first start setup - Open first start setup + Открыть первую настройку запуска - + Don't show this Start page again (start with blank screen) Не показывать эту начальную страницу снова (начните с пустого экрана) @@ -147,7 +147,7 @@ Workbench - + Start Запустить diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts index ab20920dbc..7dcea843ff 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sl.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Open File - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Assembly - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File New File - + Examples Examples - + Recent Files Recent Files - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Začni diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sr-CS.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sr-CS.ts index 14fe04e87e..f0a15b9def 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sr-CS.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sr-CS.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Prazna datoteka - + Create a new empty FreeCAD file Napravi novu praznu FreeCAD datoteku - + Open File Otvori datoteku - + Open an existing CAD file or 3D model Otvori postojeću CAD datoteku ili 3D model - + Parametric Part Deo - + Create a part with the Part Design workbench Napravi deo u okruženju Konstruisanje delova - + Assembly Sklop - + Create an assembly project Napravi sklop - + 2D Draft 2D crtež - + Create a 2D Draft with the Draft workbench Napravi 2D crtež u okruženju Crtanje - + BIM/Architecture BIM/Arhitektura - + Create an architectural project Napravi arhitektonski projekat - + New File Nova datoteka - + Examples Primeri - + Recent Files Nedavne datoteke - + Open first start setup Otvori početna podešavanja - + Don't show this Start page again (start with blank screen) Ne prikazuj ponovo ovu početnu stranu (počni sa praznim ekranom) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts index a662228044..3d66f32319 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sr.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Празна датотека - + Create a new empty FreeCAD file Направи нову празну FreeCAD датотеку - + Open File Отвори датотеку - + Open an existing CAD file or 3D model Отвори постојећу CAD датотеку или 3D модел - + Parametric Part Део - + Create a part with the Part Design workbench Направи део у окружењу Конструисање делова - + Assembly Склоп - + Create an assembly project Направи склоп - + 2D Draft 2D цртеж - + Create a 2D Draft with the Draft workbench Направи 2D цртеж у окружењу Цртање - + BIM/Architecture БИМ/Архитектура - + Create an architectural project Направи архитектонски пројекат - + New File Нова датотека - + Examples Примери - + Recent Files Недавне датотеке - + Open first start setup Отвори почетна подешавања - + Don't show this Start page again (start with blank screen) Не приказуј поново ову почетну страну (почни са празним екраном) @@ -147,7 +147,7 @@ Workbench - + Start Старт diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts index 8154c02569..af15810eef 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_sv-SE.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Öppna fil - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Ihopsättning - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File Ny fil - + Examples Exempel - + Recent Files Senaste filer - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Start diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts index 116d268dcc..052376980b 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_tr.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Boş dosya - + Create a new empty FreeCAD file Boş bir FreeCAD dosyası oluştur - + Open File Dosya Aç - + Open an existing CAD file or 3D model Mevcut bir CAD dosyası veya 3D model aç - + Parametric Part Değişkenli Parça - + Create a part with the Part Design workbench Parça Tasarımı tezgahı ile parça oluştur - + Assembly Montaj - + Create an assembly project Montaj projesi oluştur - + 2D Draft 2D Taslak - + Create a 2D Draft with the Draft workbench Taslak tezgahı ile 2D taslak oluştur - + BIM/Architecture BIM/Mimari - + Create an architectural project Mimari yapı projesi oluştur - + New File Yeni Dosya - + Examples Örnekler - + Recent Files Son kullanılan dosyalar - + Open first start setup İlk kurulumu aç - + Don't show this Start page again (start with blank screen) Açılış ekranını tekrar gösterme (boş pencere ile başlat) @@ -147,7 +147,7 @@ Workbench - + Start Başla diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts index 4b063eaab8..e82622e52b 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_uk.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Порожній файл - + Create a new empty FreeCAD file Створити новий порожній файл FreeCAD - + Open File Відкрити файл - + Open an existing CAD file or 3D model Відкрити файл CAD або 3D модель, що вже існує - + Parametric Part Параметрична деталь - + Create a part with the Part Design workbench Створіть деталь за допомогою робочої області Part Design - + Assembly Збірка - + Create an assembly project Створити проект збірки - + 2D Draft 2D креслення - + Create a 2D Draft with the Draft workbench Створити 2D-креслення за допомогою робочої області Draft - + BIM/Architecture BIM/Архітектура - + Create an architectural project Створити архітектурний проект - + New File Новий файл - + Examples Приклади - + Recent Files Останні файли - + Open first start setup Відкрийте перше налаштування запуску - + Don't show this Start page again (start with blank screen) Не показувати цю початкову сторінку знову (почати з чистого екрану) @@ -147,7 +147,7 @@ Workbench - + Start Початок diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_val-ES.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_val-ES.ts index da3bce823d..e839450887 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_val-ES.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_val-ES.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file Empty file - + Create a new empty FreeCAD file Create a new empty FreeCAD file - + Open File Open File - + Open an existing CAD file or 3D model Open an existing CAD file or 3D model - + Parametric Part Parametric Part - + Create a part with the Part Design workbench Create a part with the Part Design workbench - + Assembly Assembly - + Create an assembly project Create an assembly project - + 2D Draft 2D Draft - + Create a 2D Draft with the Draft workbench Create a 2D Draft with the Draft workbench - + BIM/Architecture BIM/Architecture - + Create an architectural project Create an architectural project - + New File New File - + Examples Examples - + Recent Files Recent Files - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) Don't show this Start page again (start with blank screen) @@ -147,7 +147,7 @@ Workbench - + Start Inicia diff --git a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts index 26f7102b4a..4f48d92599 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-CN.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file 空文件 - + Create a new empty FreeCAD file 新建一个空白FreeCAD文件 - + Open File 打开文件 - + Open an existing CAD file or 3D model 打开现有的 CAD 文件或 3D 模型 - + Parametric Part 参数视图 - + Create a part with the Part Design workbench 使用零件设计工作台创建一个零件 - + Assembly 装配 - + Create an assembly project 创建装配项目 - + 2D Draft 2D草图 - + Create a 2D Draft with the Draft workbench 使用草图工作台创建 2D 草图 - + BIM/Architecture BIM/结构 - + Create an architectural project 创建一个建筑项目 - + New File 新建文件 - + Examples 示例 - + Recent Files 最近打开的文件 - + Open first start setup Open first start setup - + Don't show this Start page again (start with blank screen) 不再显示此开始页 (将以空白开头) @@ -147,7 +147,7 @@ Workbench - + Start 开始 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 35fbbd163f..058f478a4b 100644 --- a/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts +++ b/src/Mod/Start/Gui/Resources/translations/StartPage_zh-TW.ts @@ -59,87 +59,87 @@ StartGui::StartView - + Empty file 空的檔案 - + Create a new empty FreeCAD file 建立一個新的空的 FreeCAD 檔案 - + Open File 開啟檔案 - + Open an existing CAD file or 3D model 開啟現有 CAD 檔案或 3D 模型 - + Parametric Part Parametric Part - + Create a part with the Part Design workbench 使用零件設計工作台建立零件 - + Assembly 組裝 - + Create an assembly project 建立一個組裝專案 - + 2D Draft 2D 草圖 - + Create a 2D Draft with the Draft workbench 使用草圖工作台建立 2D 草圖 - + BIM/Architecture BIM/Architecture - + Create an architectural project 建立一個建築專案 - + New File 新的檔案 - + Examples 範例 - + Recent Files 最近的檔案 - + Open first start setup - Open first start setup + 打開首次啟動設定 - + Don't show this Start page again (start with blank screen) 不再顯示此開始頁 (從空白畫面開始) @@ -147,7 +147,7 @@ Workbench - + Start 開始 @@ -157,17 +157,17 @@ FreeCAD Classic - FreeCAD Classic + FreeCAD 經典主題 FreeCAD Dark - FreeCAD Dark + FreeCAD 深色主題 FreeCAD Light - FreeCAD Light + FreeCAD 淺色主題 @@ -177,25 +177,25 @@ Looking for more themes? You can obtain them using <a href="freecad:Std_AddonMgr">Addon Manager</a>. - Looking for more themes? You can obtain them using <a href="freecad:Std_AddonMgr">Addon Manager</a>. + 尋找更多主題?您可以使用 <a href="freecad:Std_AddonMgr">附加元件管理員</a> 以獲取它們 FreeCAD Dark Visual theme name - FreeCAD Dark + FreeCAD 深色主題 FreeCAD Light Visual theme name - FreeCAD Light + FreeCAD 淺色主題 FreeCAD Classic Visual theme name - FreeCAD Classic + FreeCAD 經典主題 diff --git a/src/Mod/Start/Gui/StartView.cpp b/src/Mod/Start/Gui/StartView.cpp index 086cec7c35..9094369eb7 100644 --- a/src/Mod/Start/Gui/StartView.cpp +++ b/src/Mod/Start/Gui/StartView.cpp @@ -360,6 +360,7 @@ void StartView::openExistingFile() const { auto originalDocument = Gui::Application::Instance->activeDocument(); Gui::Application::Instance->commandManager().runCommandByName("Std_Open"); + Gui::Application::checkForRecomputes(); if (Gui::Application::Instance->activeDocument() != originalDocument) { // Only run this if the user chose a new document to open (that is, they didn't cancel the // open file dialog) @@ -436,6 +437,7 @@ void StartView::fileCardSelected(const QModelIndex& index) auto command = std::string("FreeCAD.loadFile('") + escapedstr + "')"; try { Base::Interpreter().runString(command.c_str()); + Gui::Application::checkForRecomputes(); postStart(PostStartBehavior::doNotSwitchWorkbench); } catch (Base::PyException& e) { diff --git a/src/Mod/Surface/Gui/TaskSections.cpp b/src/Mod/Surface/Gui/TaskSections.cpp index b8f6d856f7..c91a0fad96 100644 --- a/src/Mod/Surface/Gui/TaskSections.cpp +++ b/src/Mod/Surface/Gui/TaskSections.cpp @@ -279,7 +279,11 @@ SectionsPanel::SectionsPanel(ViewProviderSections* vp, Surface::Sections* obj) // Create context menu QAction* action = new QAction(tr("Remove"), this); - action->setShortcut(QKeySequence::Delete); + { + auto& rcCmdMgr = Gui::Application::Instance->commandManager(); + auto shortcut = rcCmdMgr.getCommandByName("Std_Delete")->getShortcut(); + action->setShortcut(QKeySequence(shortcut)); + } ui->listSections->addAction(action); connect(action, &QAction::triggered, this, &SectionsPanel::onDeleteEdge); ui->listSections->setContextMenuPolicy(Qt::ActionsContextMenu); diff --git a/src/Mod/TechDraw/App/DrawUtil.cpp b/src/Mod/TechDraw/App/DrawUtil.cpp index ed9a047200..e6c97702c2 100644 --- a/src/Mod/TechDraw/App/DrawUtil.cpp +++ b/src/Mod/TechDraw/App/DrawUtil.cpp @@ -1899,6 +1899,18 @@ bool DrawUtil::isCenterLine(App::DocumentObject* owner, std::string element) return false; } +//! convert a filespec (string) containing '\' to only use '/'. +//! prevents situation where '\' is interpreted as an escape of the next character in Python +//! commands. +std::string DrawUtil::cleanFilespecBackslash(const std::string& filespec) +{ + std::string forwardSlash{"/"}; + boost::regex rxBackslash("\\\\"); //this rx really means match to a single '\' + std::string noBackslash = boost::regex_replace(filespec, rxBackslash, forwardSlash); + return noBackslash; +} + + //============================ // various debugging routines. void DrawUtil::dumpVertexes(const char* text, const TopoDS_Shape& s) diff --git a/src/Mod/TechDraw/App/DrawUtil.h b/src/Mod/TechDraw/App/DrawUtil.h index c2cb7e3a10..bea3539b95 100644 --- a/src/Mod/TechDraw/App/DrawUtil.h +++ b/src/Mod/TechDraw/App/DrawUtil.h @@ -277,6 +277,8 @@ public: static bool isWithinRange(double actualAngleIn, double targetAngleIn, double allowableError); + static std::string cleanFilespecBackslash(const std::string& filespec); + //debugging routines static void dumpVertexes(const char* text, const TopoDS_Shape& s); diff --git a/src/Mod/TechDraw/App/Geometry.cpp b/src/Mod/TechDraw/App/Geometry.cpp index eb677d77d0..568e6bed4f 100644 --- a/src/Mod/TechDraw/App/Geometry.cpp +++ b/src/Mod/TechDraw/App/Geometry.cpp @@ -1644,19 +1644,24 @@ TopoDS_Edge GeometryUtils::asCircle(TopoDS_Edge splineEdge, bool& arc) gp_Pnt endPoint = curveAdapt.Value(lastParam); arc = true; - if (startPoint.IsEqual(endPoint, 0.001)) { //more reliable than IsClosed flag - arc = false; - } double midRange = (lastParam + firstParam) / 2; gp_Pnt midPoint = curveAdapt.Value(midRange); - Handle(Geom_Circle) circle3Points = GC_MakeCircle(startPoint, midPoint, endPoint); + if (startPoint.IsEqual(endPoint, 0.001)) { //more reliable than IsClosed flag + arc = false; + // can not use the start and end points since they are the same and that will give us only + // 2 of the 3 points we need. Q: why did this work sometimes? + // Q: do we need to account for reversed parameter range? we don't use reversed edges much. + auto parmRange = lastParam - firstParam; + auto lowParm = parmRange * 0.25; + auto lowPoint = curveAdapt.Value(lowParm); + auto highParm = parmRange* 0.75; + auto highPoint = curveAdapt.Value(highParm); + Handle(Geom_Circle) circle3Points = GC_MakeCircle(lowPoint, midPoint, highPoint); - if (circle3Points.IsNull()) { - return {}; - } + if (circle3Points.IsNull()) { + return {}; + } - if (!arc) { - // whole circle return BRepBuilderAPI_MakeEdge(circle3Points); } diff --git a/src/Mod/TechDraw/Gui/Command.cpp b/src/Mod/TechDraw/Gui/Command.cpp index 0e0823bd89..3ae16501c4 100644 --- a/src/Mod/TechDraw/Gui/Command.cpp +++ b/src/Mod/TechDraw/Gui/Command.cpp @@ -88,10 +88,13 @@ void getSelectedShapes(Gui::Command* cmd, App::DocumentObject* faceObj, std::string& faceName); +std::pair faceFromSelection(); +std::pair viewDirection(); class Vertex; using namespace TechDrawGui; using namespace TechDraw; +using DU = DrawUtil; //=========================================================================== // TechDraw_PageDefault @@ -135,7 +138,8 @@ void CmdTechDrawPageDefault::activated(int iMsg) svgTemplate->translateLabel("DrawSVGTemplate", "Template", svgTemplate->getNameInDocument()); page->Template.setValue(svgTemplate); - svgTemplate->Template.setValue(templateFileName.toStdString()); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(templateFileName)); + svgTemplate->Template.setValue(filespec); updateActive(); commitCommand(); @@ -205,7 +209,8 @@ void CmdTechDrawPageTemplate::activated(int iMsg) svgTemplate->translateLabel("DrawSVGTemplate", "Template", svgTemplate->getNameInDocument()); page->Template.setValue(svgTemplate); - svgTemplate->Template.setValue(templateFileName.toStdString()); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(templateFileName)); + svgTemplate->Template.setValue(filespec); updateActive(); commitCommand(); @@ -446,8 +451,9 @@ void CmdTechDrawView::activated(int iMsg) || filename.endsWith(QString::fromLatin1(".svgz"), Qt::CaseInsensitive)) { std::string FeatName = getUniqueObjectName("Symbol"); filename = Base::Tools::escapeEncodeFilename(filename); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(filename)); openCommand(QT_TRANSLATE_NOOP("Command", "Create Symbol")); - doCommand(Doc, "f = open(\"%s\", 'r')", (const char*)filename.toUtf8()); + doCommand(Doc, "f = open(\"%s\", 'r')", filespec.c_str()); doCommand(Doc, "svg = f.read()"); doCommand(Doc, "f.close()"); doCommand(Doc, "App.activeDocument().addObject('TechDraw::DrawViewSymbol', '%s')", @@ -461,11 +467,12 @@ void CmdTechDrawView::activated(int iMsg) else { std::string FeatName = getUniqueObjectName("Image"); filename = Base::Tools::escapeEncodeFilename(filename); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(filename)); openCommand(QT_TRANSLATE_NOOP("Command", "Create Image")); doCommand(Doc, "App.activeDocument().addObject('TechDraw::DrawViewImage', '%s')", FeatName.c_str()); doCommand(Doc, "App.activeDocument().%s.translateLabel('DrawViewImage', 'Image', '%s')", FeatName.c_str(), FeatName.c_str()); - doCommand(Doc, "App.activeDocument().%s.ImageFile = '%s'", FeatName.c_str(), filename.toUtf8().constData()); + doCommand(Doc, "App.activeDocument().%s.ImageFile = '%s'", FeatName.c_str(), filespec.c_str()); doCommand(Doc, "App.activeDocument().%s.addView(App.activeDocument().%s)", PageName.c_str(), FeatName.c_str()); updateActive(); commitCommand(); @@ -497,12 +504,17 @@ void CmdTechDrawView::activated(int iMsg) dvp->XSource.setValues(xShapes); getDocument()->setStatus(App::Document::Status::SkipRecompute, true); - doCommand(Doc, "App.activeDocument().%s.Direction = FreeCAD.Vector(0.0, -1.0, 0.0)", - FeatName.c_str()); - doCommand(Doc, "App.activeDocument().%s.RotationVector = FreeCAD.Vector(1.0, 0.0, 0.0)", - FeatName.c_str()); - doCommand(Doc, "App.activeDocument().%s.XDirection = FreeCAD.Vector(1.0, 0.0, 0.0)", - FeatName.c_str()); + auto dirs = viewDirection(); + doCommand(Doc, + "App.activeDocument().%s.Direction = FreeCAD.Vector(%.12f, %.12f, %.12f)", + FeatName.c_str(), dirs.first.x, dirs.first.y, dirs.first.z); + doCommand(Doc, + "App.activeDocument().%s.RotationVector = FreeCAD.Vector(%.12f, %.12f, %.12f)", + FeatName.c_str(), dirs.second.x, dirs.second.y, dirs.second.z); + doCommand(Doc, + "App.activeDocument().%s.XDirection = FreeCAD.Vector(%.12f, %.12f, %.12f)", + FeatName.c_str(), dirs.second.x, dirs.second.y, dirs.second.z); + getDocument()->setStatus(App::Document::Status::SkipRecompute, false); doCommand(Doc, "App.activeDocument().%s.recompute()", FeatName.c_str()); commitCommand(); @@ -552,6 +564,10 @@ void CmdTechDrawBrokenView::activated(int iMsg) xShapesFromBase = dvp->XSource.getValues(); } + auto doc = getDocument(); + if (dvp) { + doc = dvp->getDocument(); + } // get the shape objects from the selection std::vector shapes; @@ -559,16 +575,17 @@ void CmdTechDrawBrokenView::activated(int iMsg) App::DocumentObject* faceObj = nullptr; std::string faceName; getSelectedShapes(this, shapes, xShapes, faceObj, faceName); - shapes.insert(shapes.end(), shapesFromBase.begin(), shapesFromBase.end()); - shapes.insert(xShapes.end(), xShapesFromBase.begin(), xShapesFromBase.end()); - if (!dvp || (shapes.empty() && xShapes.empty())) { + // we need either a base view (dvp) or some shape objects in the selection + if (!dvp && (shapes.empty() && xShapes.empty())) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Empty selection"), QObject::tr("Please select objects to break or a base view and break definition objects.")); return; } - auto doc = dvp->getDocument(); + shapes.insert(shapes.end(), shapesFromBase.begin(), shapesFromBase.end()); + shapes.insert(xShapes.end(), xShapesFromBase.begin(), xShapesFromBase.end()); + // pick the Break objects out of the selected pile std::vector selection = getSelection().getSelectionEx( @@ -641,9 +658,9 @@ void CmdTechDrawBrokenView::activated(int iMsg) } Base::Vector3d projDir = dirs.first; - doCommand(Doc, "App.activeDocument().%s.Direction = FreeCAD.Vector(%.3f,%.3f,%.3f)", + doCommand(Doc, "App.activeDocument().%s.Direction = FreeCAD.Vector(%.6f,%.6f,%.6f)", FeatName.c_str(), projDir.x, projDir.y, projDir.z); - doCommand(Doc, "App.activeDocument().%s.XDirection = FreeCAD.Vector(%.3f,%.3f,%.3f)", + doCommand(Doc, "App.activeDocument().%s.XDirection = FreeCAD.Vector(%.6f,%.6f,%.6f)", FeatName.c_str(), dirs.second.x, dirs.second.y, dirs.second.z); getDocument()->setStatus(App::Document::Status::SkipRecompute, true); @@ -1529,8 +1546,9 @@ void CmdTechDrawSymbol::activated(int iMsg) if (!filename.isEmpty()) { std::string FeatName = getUniqueObjectName("Symbol"); filename = Base::Tools::escapeEncodeFilename(filename); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(filename)); openCommand(QT_TRANSLATE_NOOP("Command", "Create Symbol")); - doCommand(Doc, "f = open(\"%s\", 'r')", (const char*)filename.toUtf8()); + doCommand(Doc, "f = open(\"%s\", 'r')", (const char*)filespec.c_str()); doCommand(Doc, "svg = f.read()"); doCommand(Doc, "f.close()"); doCommand(Doc, "App.activeDocument().addObject('TechDraw::DrawViewSymbol', '%s')", @@ -1841,8 +1859,9 @@ void CmdTechDrawExportPageDXF::activated(int iMsg) openCommand(QT_TRANSLATE_NOOP("Command", "Save page to DXF")); doCommand(Doc, "import TechDraw"); fileName = Base::Tools::escapeEncodeFilename(fileName); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(fileName)); doCommand(Doc, "TechDraw.writeDXFPage(App.activeDocument().%s, u\"%s\")", PageName.c_str(), - (const char*)fileName.toUtf8()); + filespec.c_str()); commitCommand(); } @@ -1972,3 +1991,39 @@ void getSelectedShapes(Gui::Command* cmd, } } } + +std::pair viewDirection() +{ + if (!Preferences::useCameraDirection()) { + return { Base::Vector3d(0, -1, 0), Base::Vector3d(1, 0, 0) }; + } + + auto faceInfo = faceFromSelection(); + if (faceInfo.first) { + return DrawGuiUtil::getProjDirFromFace(faceInfo.first, faceInfo.second); + } + + return DrawGuiUtil::get3DDirAndRot(); +} + +std::pair faceFromSelection() +{ + auto selection = Gui::Selection().getSelectionEx( + nullptr, App::DocumentObject::getClassTypeId(), Gui::ResolveMode::NoResolve); + + if (selection.empty()) { + return { nullptr, "" }; + } + + for (auto& sel : selection) { + for (auto& sub : sel.getSubNames()) { + if (TechDraw::DrawUtil::getGeomTypeFromName(sub) == "Face") { + return { sel.getObject(), sub }; + } + } + } + + return { nullptr, "" }; +} + + diff --git a/src/Mod/TechDraw/Gui/CommandAnnotate.cpp b/src/Mod/TechDraw/Gui/CommandAnnotate.cpp index 62aea8fcc2..949ea63dce 100644 --- a/src/Mod/TechDraw/Gui/CommandAnnotate.cpp +++ b/src/Mod/TechDraw/Gui/CommandAnnotate.cpp @@ -1633,8 +1633,9 @@ void CmdTechDrawSurfaceFinishSymbols::activated(int iMsg) } else { auto objFeat = dynamic_cast(selection.front().getObject()); - if (!objFeat->isDerivedFrom(TechDraw::DrawViewPart::getClassTypeId()) - && !objFeat->isDerivedFrom(TechDraw::DrawLeaderLine::getClassTypeId())) { + if ( !objFeat || + !(objFeat->isDerivedFrom(TechDraw::DrawViewPart::getClassTypeId()) || + objFeat->isDerivedFrom(TechDraw::DrawLeaderLine::getClassTypeId())) ) { QMessageBox::warning(Gui::getMainWindow(), QObject::tr("SurfaceFinishSymbols"), QObject::tr("Selected object is not a part view, nor a leader line")); return; diff --git a/src/Mod/TechDraw/Gui/CommandDecorate.cpp b/src/Mod/TechDraw/Gui/CommandDecorate.cpp index a78615f150..f60c5bbd1d 100644 --- a/src/Mod/TechDraw/Gui/CommandDecorate.cpp +++ b/src/Mod/TechDraw/Gui/CommandDecorate.cpp @@ -57,6 +57,7 @@ using namespace TechDrawGui; using namespace TechDraw; +using DU = DrawUtil; //internal functions bool _checkSelectionHatch(Gui::Command* cmd); @@ -266,11 +267,12 @@ void CmdTechDrawImage::activated(int iMsg) std::string FeatName = getUniqueObjectName("Image"); fileName = Base::Tools::escapeEncodeFilename(fileName); + auto filespec = DU::cleanFilespecBackslash(Base::Tools::toStdString(fileName)); openCommand(QT_TRANSLATE_NOOP("Command", "Create Image")); doCommand(Doc, "App.activeDocument().addObject('TechDraw::DrawViewImage', '%s')", FeatName.c_str()); doCommand(Doc, "App.activeDocument().%s.translateLabel('DrawViewImage', 'Image', '%s')", FeatName.c_str(), FeatName.c_str()); - doCommand(Doc, "App.activeDocument().%s.ImageFile = '%s'", FeatName.c_str(), fileName.toUtf8().constData()); + doCommand(Doc, "App.activeDocument().%s.ImageFile = '%s'", FeatName.c_str(), filespec.c_str()); doCommand(Doc, "App.activeDocument().%s.addView(App.activeDocument().%s)", PageName.c_str(), FeatName.c_str()); updateActive(); commitCommand(); diff --git a/src/Mod/TechDraw/Gui/MDIViewPage.cpp b/src/Mod/TechDraw/Gui/MDIViewPage.cpp index 3b364991e5..11c599db24 100644 --- a/src/Mod/TechDraw/Gui/MDIViewPage.cpp +++ b/src/Mod/TechDraw/Gui/MDIViewPage.cpp @@ -62,19 +62,15 @@ #include #include -#include "DrawGuiUtil.h" #include "MDIViewPage.h" #include "QGIEdge.h" #include "QGIFace.h" -#include "QGITemplate.h" #include "QGIVertex.h" #include "QGIView.h" -#include "QGIViewBalloon.h" #include "QGIViewDimension.h" #include "QGMText.h" #include "QGSPage.h" #include "QGVPage.h" -#include "Rez.h" #include "ViewProviderPage.h" #include "PagePrinter.h" @@ -204,6 +200,10 @@ bool MDIViewPage::onMsg(const char* pMsg, const char**) doc->saveAs(); return true; } + else if (strcmp("SaveCopy", pMsg) == 0) { + doc->saveCopy(); + return true; + } else if (strcmp("Undo", pMsg) == 0) { doc->undo(1); Gui::Command::updateActive(); @@ -253,6 +253,9 @@ bool MDIViewPage::onHasMsg(const char* pMsg) const else if (strcmp("SaveAs", pMsg) == 0) { return true; } + else if (strcmp("SaveCopy", pMsg) == 0) { + return true; + } else if (strcmp("PrintPreview", pMsg) == 0) { return true; } @@ -426,19 +429,6 @@ void MDIViewPage::print(QPrinter* printer) } } - QPainter p(printer); - // why use a QPainter to determine if we can write to a file? - if (!p.isActive() && !printer->outputFileName().isEmpty()) { - qApp->setOverrideCursor(Qt::ArrowCursor); - QMessageBox::critical( - this, tr("Opening file failed"), - tr("Can not open file %1 for writing.").arg(printer->outputFileName())); - qApp->restoreOverrideCursor(); - return; - } - // free the printer from the painter - p.end(); - if (m_pagePrinter) { m_pagePrinter->print(printer); } diff --git a/src/Mod/TechDraw/Gui/PagePrinter.cpp b/src/Mod/TechDraw/Gui/PagePrinter.cpp index cb1dc293f6..208195d129 100644 --- a/src/Mod/TechDraw/Gui/PagePrinter.cpp +++ b/src/Mod/TechDraw/Gui/PagePrinter.cpp @@ -49,6 +49,7 @@ #include #include #include +#include #include #include "PagePrinter.h" @@ -58,6 +59,7 @@ using namespace TechDrawGui; using namespace TechDraw; +using DU = DrawUtil; constexpr double A4Heightmm = 297.0; constexpr double A4Widthmm = 210.0; @@ -148,7 +150,9 @@ void PagePrinter::printPdf(std::string file) } // set up the pdfwriter - QString outputFile = QString::fromUtf8(file.data(), file.size()); + auto filespec = Base::Tools::escapeEncodeFilename(file); + filespec = DU::cleanFilespecBackslash(file); + QString outputFile = Base::Tools::fromStdString(filespec); QPdfWriter pdfWriter(outputFile); QPageLayout pageLayout = pdfWriter.pageLayout(); auto marginsdb = pageLayout.margins(QPageLayout::Millimeter); @@ -375,22 +379,25 @@ void PagePrinter::saveSVG(std::string file) Base::Console().Warning("PagePrinter - no file specified\n"); return; } - QString filename = QString::fromUtf8(file.data(), file.size()); + auto filespec = Base::Tools::escapeEncodeFilename(file); + filespec = DU::cleanFilespecBackslash(file); + QString filename = Base::Tools::fromStdString(filespec); if (m_scene) { m_scene->saveSvg(filename); } } -void PagePrinter::saveDXF(std::string fileName) +void PagePrinter::saveDXF(std::string inFileName) { TechDraw::DrawPage* page = m_vpPage->getDrawPage(); std::string PageName = page->getNameInDocument(); - fileName = Base::Tools::escapeEncodeFilename(fileName); + auto filespec = Base::Tools::escapeEncodeFilename(inFileName); + filespec = DU::cleanFilespecBackslash(filespec); Gui::Command::openCommand(QT_TRANSLATE_NOOP("Command", "Save page to dxf")); Gui::Command::doCommand(Gui::Command::Doc, "import TechDraw"); Gui::Command::doCommand(Gui::Command::Doc, "TechDraw.writeDXFPage(App.activeDocument().%s, u\"%s\")", - PageName.c_str(), (const char*)fileName.c_str()); + PageName.c_str(), filespec.c_str()); Gui::Command::commitCommand(); } diff --git a/src/Mod/TechDraw/Gui/QGVPage.cpp b/src/Mod/TechDraw/Gui/QGVPage.cpp index 29bdcc7cff..fb2d85a176 100644 --- a/src/Mod/TechDraw/Gui/QGVPage.cpp +++ b/src/Mod/TechDraw/Gui/QGVPage.cpp @@ -683,24 +683,36 @@ Base::Type QGVPage::getStyleType(std::string model) return type; } +static QCursor createCursor(QBitmap &bitmap, QBitmap &mask, int hotX, int hotY, double dpr) +{ +#if defined(Q_OS_WIN32) + bitmap.setDevicePixelRatio(dpr); + mask.setDevicePixelRatio(dpr); +#else + Q_UNUSED(dpr) +#endif +#if defined(Q_OS_LINUX) && QT_VERSION < QT_VERSION_CHECK(6,6,0) && QT_VERSION >= QT_VERSION_CHECK(5,13,0) + if (qGuiApp->platformName() == QLatin1String("wayland")) { + QImage img = bitmap.toImage(); + img.convertTo(QImage::Format_ARGB32); + QPixmap pixmap = QPixmap::fromImage(img); + pixmap.setMask(mask); + return QCursor(pixmap, hotX, hotY); + } +#endif + + return QCursor(bitmap, mask, hotX, hotY); +} + void QGVPage::createStandardCursors(double dpr) { - (void)dpr;//avoid clang warning re unused parameter QBitmap cursor = QBitmap::fromData(QSize(PAN_WIDTH, PAN_HEIGHT), pan_bitmap); QBitmap mask = QBitmap::fromData(QSize(PAN_WIDTH, PAN_HEIGHT), pan_mask_bitmap); -#if defined(Q_OS_WIN32) - cursor.setDevicePixelRatio(dpr); - mask.setDevicePixelRatio(dpr); -#endif - panCursor = QCursor(cursor, mask, PAN_HOT_X, PAN_HOT_Y); + panCursor = createCursor(cursor, mask, PAN_HOT_X, PAN_HOT_Y, dpr); cursor = QBitmap::fromData(QSize(ZOOM_WIDTH, ZOOM_HEIGHT), zoom_bitmap); mask = QBitmap::fromData(QSize(ZOOM_WIDTH, ZOOM_HEIGHT), zoom_mask_bitmap); -#if defined(Q_OS_WIN32) - cursor.setDevicePixelRatio(dpr); - mask.setDevicePixelRatio(dpr); -#endif - zoomCursor = QCursor(cursor, mask, ZOOM_HOT_X, ZOOM_HOT_Y); + zoomCursor = createCursor(cursor, mask, ZOOM_HOT_X, ZOOM_HOT_Y, dpr); } #include diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw.ts index 946964f22c..864e0a5d5e 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw - + Insert Active View (3D View) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw - + Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw - + Insert Balloon Annotation @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw - + Insert Clip Group @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw - + Add View to Clip Group @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw - + Remove View from Clip Group @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw - + Insert Complex Section View - + Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw - + Insert Detail View @@ -341,17 +341,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw - + Insert Draft Workbench Object - + Insert a View of a Draft Workbench object @@ -359,22 +359,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File - + Export Page as DXF - + Save DXF file - + DXF (*.dxf) @@ -382,12 +382,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File - + Export Page as SVG @@ -1415,12 +1415,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw - + Apply Geometric Hatch to Face @@ -1428,12 +1428,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw - + Hatch a Face using Image File @@ -1467,28 +1467,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw - + Insert Bitmap Image - - + + Insert Bitmap from a file into a page - + Select an Image File - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1561,12 +1561,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw - + Insert Default Page @@ -1574,22 +1574,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw - + Insert Page using Template - + Select a Template File - + Template (*.svg) @@ -1597,12 +1597,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw - + Print All Pages @@ -1610,12 +1610,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw - + Project shape... @@ -1623,17 +1623,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw - + Insert Projection Group - + Insert multiple linked views of drawable object(s) @@ -1667,12 +1667,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw - + Redraw Page @@ -1693,22 +1693,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw - + Insert a simple or complex Section View - + Section View - + Complex Section @@ -1716,12 +1716,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw - + Insert Section View @@ -1742,17 +1742,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw - + Insert Spreadsheet View - + Insert View to a spreadsheet @@ -1863,17 +1863,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw - + Insert SVG Symbol - + Insert symbol from an SVG file @@ -1881,13 +1881,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw - - + + Turn View Frames On/Off @@ -1921,29 +1921,29 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw - + Insert View - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again @@ -1964,75 +1964,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page - + Create BIM View - + Create view - + Create broken view - + Create Projection Group - + Create Clip - + ClipGroupAdd - + ClipGroupRemove - + Save page to DXF - - + + Create Symbol - + Create DraftView - + Create ArchView - - + + Create spreadsheet view - + Save page to dxf @@ -2232,33 +2232,33 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Hatch - + Update Hatch - + Remove old Hatch - + Create GeomHatch - - + + Create Image - + Drag Balloon @@ -2268,12 +2268,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Balloon - + Create ActiveView @@ -2905,103 +2905,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection - - + + No Shapes, Groups or Links in this selection - + Empty selection - + Select a SVG or Image file to open - + SVG or Image files - + Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. - + I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection - + Please select only 1 BIM Section. - + No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3009,102 +3009,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first - + Too many objects selected - + Create a page first. - + No View of a Part in selection. - + Select one Clip group and one View. - + Select exactly one View to add to group. - + Select exactly one Clip group. - + Clip and View must be from same Page. - + Select exactly one View to remove from Group. - + View does not belong to a Clip - + Choose an SVG file to open - + Scalable Vector Graphic - - + + All Files - + Select at least one object. - + Select exactly one Spreadsheet object. - + No Drawing View - + Open Drawing View before attempting export to SVG. - + Can not export selection - + Page contains DrawViewArch which will not be exported. Continue? @@ -3119,8 +3119,8 @@ Without a selection, a file browser lets you select a SVG or image file. - - + + @@ -3245,9 +3245,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3296,9 +3296,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3488,43 +3488,43 @@ Without a selection, a file browser lets you select a SVG or image file. - + Replace Hatch? - + Some Faces in selection are already hatched. Replace? - + No TechDraw Page - + Need a TechDraw Page for this command - + Select a Face first - + No TechDraw object in selection - + Create a page to insert. - - + + No Faces to hatch in this selection @@ -3545,28 +3545,28 @@ Without a selection, a file browser lets you select a SVG or image file. - + PDF (*.pdf) - - + + All Files (*.*) - + Export Page As PDF - + SVG (*.svg) - + Export page as SVG @@ -3625,27 +3625,27 @@ Without a selection, a file browser lets you select a SVG or image file. - + ActiveView to TD View - + No Main Window - + Can not find the main window - + No 3D Viewer - + Can not find a 3D viewer @@ -3920,12 +3920,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch - + Edit Face Hatch @@ -4011,7 +4011,7 @@ Without a selection, a file browser lets you select a SVG or image file. - + Document Name: @@ -4592,6 +4592,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + + Broken View Break Type @@ -4697,11 +4702,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - - Length of balloon leader line kink @@ -5803,89 +5803,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated - + Toggle &Frames - + &Export SVG - + Export DXF - + Export PDF - + Print All Pages - + Different orientation - + The printer uses a different orientation than the drawing. Do you want to continue? - + Different paper size - + The printer uses a different paper size than the drawing. Do you want to continue? - - Opening file failed - - - - - Can not open file %1 for writing. - - - - + Save DXF file - + DXF (*.dxf) - + Save PDF file - + PDF (*.pdf) - + Selected: @@ -8421,7 +8411,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View @@ -8482,7 +8472,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View @@ -9715,13 +9705,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw - - + + Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_be.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_be.ts index 715fdb08ef..6d4eea76d1 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_be.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_be.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Тэхнічны чарцёж - + Insert Active View (3D View) Уставіць бягучы выгляд (трохмернае прадстаўленне) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Тэхнічны чарцёж - + Insert BIM Workbench Object Уставіць аб'ект варштату BIM - + Insert a View of a Section Plane from BIM Workbench Уставіць выгляд плоскасці перасеку з варштату BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Тэхнічны чарцёж - + Insert Balloon Annotation Уставіць заметку ў пазіцыйную зноску @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Тэхнічны чарцёж - + Insert Clip Group Уставіць суполку выразак @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Тэхнічны чарцёж - + Add View to Clip Group Дадаць выгляд у суполку выразак @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Тэхнічны чарцёж - + Remove View from Clip Group Выдаліць выгляд з суполкі выразак @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Тэхнічны чарцёж - + Insert Complex Section View Уставіць складовы выгляд перасеку - + Insert a Complex Section View Уставіць складовы выгляд перасеку @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Тэхнічны чарцёж - + Insert Detail View Уставіць вынасны элемент @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Тэхнічны чарцёж - + Insert Draft Workbench Object Уставіць аб'ект варштату Чарнавік - + Insert a View of a Draft Workbench object Уставіць выгляд аб'ект з варштату Чарнавік @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Файл - + Export Page as DXF Экспартаваць старонку ў DXF - + Save DXF file Захаваць файл DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Файл - + Export Page as SVG Экспартаваць старонку ў SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Тэхнічны чарцёж - + Apply Geometric Hatch to Face Прымяніць геаметрычную штрыхоўку на грані @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Тэхнічны чарцёж - + Hatch a Face using Image File Штрыхаваць грань з дапамогай файла выявы @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Тэхнічны чарцёж - + Insert Bitmap Image Уставіць растравую выяву - - + + Insert Bitmap from a file into a page Уставіць растравую выяву з файла на старонку - + Select an Image File Абраць файл выявы - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Файлы выяў (*.jpg *.jpeg *.png *.bmp);;Усе файлы (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Тэхнічны чарцёж - + Insert Default Page Уставіць першапачатковую старонку @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Тэхнічны чарцёж - + Insert Page using Template Уставіць старонку, з ужываннем шаблону - + Select a Template File Абраць файл шаблону - + Template (*.svg) Шаблон (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Тэхнічны чарцёж - + Print All Pages Надрукаваць усе старонкі @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Тэхнічны чарцёж - + Project shape... Праекцыя фігуры... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Тэхнічны чарцёж - + Insert Projection Group Уставіць суполку праекцый - + Insert multiple linked views of drawable object(s) Уставіць некалькі звязаных выглядаў аб'ектаў чарцяжа @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Тэхнічны чарцёж - + Redraw Page Абнавіць старонку @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Тэхнічны чарцёж - + Insert a simple or complex Section View Устаўка простага ці складовага выгляду перасеку - + Section View Выгляд перасеку - + Complex Section Складовы перасек @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Тэхнічны чарцёж - + Insert Section View Уставіць выгляд перасеку @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Тэхнічны чарцёж - + Insert Spreadsheet View Уставіць выгляд аркуша - + Insert View to a spreadsheet Уставіць выгляд аркуша @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Тэхнічны чарцёж - + Insert SVG Symbol Уставіць знак SVG - + Insert symbol from an SVG file Уставіць знак з файла SVG @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Тэхнічны чарцёж - - + + Turn View Frames On/Off Уключыць/адключыць рамку для змены чарцяжа @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Тэхнічны чарцёж - + Insert View Уставіць выгляд - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,13 +1942,13 @@ Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Калі вы жадаеце ўставіць выгляд з існуючых аб'ектаў, калі ласка, абярыце іх перад запускам гэтага інструмента. Без выбару адчыніцца акно прагляду файлаў для ўстаўкі файла SVG ці файла выявы. - + Do not show this message again Больш не паказваць гэтае паведамленне @@ -1969,75 +1969,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Стварэнне старонкі чарцяжа - + Create BIM View Стварыць выгляд BIM - + Create view Стварыць выгляд - + Create broken view Стварыць выгляд разбіўкі - + Create Projection Group Стварыць суполку праекцыі - + Create Clip Стварыць зрэз - + ClipGroupAdd Дадаць выразку ў суполку - + ClipGroupRemove Выдаліць выразак з суполкі - + Save page to DXF Захаваць старонку ў файл DXF - - + + Create Symbol Стварыць знак - + Create DraftView Стварыць выгляд Чарнавіка - + Create ArchView Стварыць выгляд Архітэктуры - - + + Create spreadsheet view Стварыць выгляд Аркуша - + Save page to dxf Захаваць старонку ў файл dxf @@ -2237,33 +2237,33 @@ Without a selection, a file browser lets you select a SVG or image file.Стварыць вымярэнне - + Create Hatch Стварыць штрыхоўку - + Update Hatch Абнавіць штрыхоўку - + Remove old Hatch Выдаліць старую штрыхоўку - + Create GeomHatch Стварыць геаметрычную штрыхоўку - - + + Create Image Стварыць выяву - + Drag Balloon Перацягнуць пазіцыйную зноску @@ -2273,12 +2273,12 @@ Without a selection, a file browser lets you select a SVG or image file.Перацягнуць вымярэнне - + Create Balloon Стварыць пазіцыйную зноску - + Create ActiveView Стварыць бягучы выгляд @@ -2910,103 +2910,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Няправільны выбар - - + + No Shapes, Groups or Links in this selection Без фігур, суполак і сувязяў у абраным - + Empty selection Пусты выбар - + Select a SVG or Image file to open Абярыце файл SVG ці файл выявы, каб адчыніць - + SVG or Image files Файл SVG ці файл выявы - + Please select objects to break or a base view and break definition objects. Калі ласка, абярыце аб'екты для разбіўкі ці асноўны выгляд і аб'екты вызначэння разбіўкі. - + No Break objects found in this selection У гэтай выбарцы не знойдзена аб'ектаў разбіўкі - - + + Select at least 1 DrawViewPart object as Base. Абярыце хаця б адзін аб'ект выгляду дэталі як асноўны. - + I do not know what base view to use. Я не ведаю, які асноўны выгляд патрэбна ўжываць. - + No Base View, Shapes, Groups or Links in this selection Без асноўнага выгляду, суполак і сувязяў у абраным - + No profile object found in selection Аб'ект профілю не знойдзены ў абраным - + Please select only 1 BIM Section. Калі ласка, абярыце толькі адзін перасек BIM. - + No BIM Sections in selection. Без перасек BIM у абраным. - - - + + + - - - - + + + + Incorrect selection @@ -3014,102 +3014,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Спачатку абярыце аб'ект - + Too many objects selected Абрана зашмат аб'ектаў - + Create a page first. Спачатку стварыць старонку. - + No View of a Part in selection. Без выгляду дэталі ў абраным. - + Select one Clip group and one View. Абярыце адну суполку выразак і адзін выгляд. - + Select exactly one View to add to group. Абярыце толькі адзін выгляд, каб дадаць яго ў суполку. - + Select exactly one Clip group. Абярыце толькі адну суполку выразак. - + Clip and View must be from same Page. Зрэз і выгляд павінны быць на адной старонцы. - + Select exactly one View to remove from Group. Абярыце толькі адзін выгляд, каб выдаліць яго з суполкі. - + View does not belong to a Clip Выгляд не належыць да зрэзу - + Choose an SVG file to open Абраць файл SVG, каб адчыніць - + Scalable Vector Graphic Маштабаваная вектарная графіка (SVG) - - + + All Files Усе файлы - + Select at least one object. Абярыце хаця б адзін аб'ект. - + Select exactly one Spreadsheet object. Абярыце толькі адзін аб'ект Аркуша. - + No Drawing View Без выгляду чарцяжоў - + Open Drawing View before attempting export to SVG. Адчыніце выгляд чарцяжа перад экспартаваннем у SVG. - + Can not export selection Не атрымалася экспартаваць абранае - + Page contains DrawViewArch which will not be exported. Continue? Старонка ўтрымлівае DrawViewArch, які не будзе экспартаваны. Ці працягнуць? @@ -3124,8 +3124,8 @@ Without a selection, a file browser lets you select a SVG or image file.Папярэджанне крывой B-сплайна - - + + @@ -3254,9 +3254,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3305,9 +3305,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3497,43 +3497,43 @@ Without a selection, a file browser lets you select a SVG or image file.Без %1 у абраным - + Replace Hatch? Замяніць штрыхоўку? - + Some Faces in selection are already hatched. Replace? Некаторыя грані ў абраным ужо заштрыхаваныя. Замяніць? - + No TechDraw Page Без старонкі Тэхнічнага чарцяжа - + Need a TechDraw Page for this command Для каманды патрэбна старонка Тэхнічнага чарцяжа - + Select a Face first Спачатку абярыце грань - + No TechDraw object in selection Без аб'екту Тэхнічнага чарцяжа ў абраным - + Create a page to insert. Стварыць старонку каб уставіць. - - + + No Faces to hatch in this selection Без граняў для штрыхоўкі ў абраным @@ -3554,28 +3554,28 @@ Without a selection, a file browser lets you select a SVG or image file.Без старонак Аркуша чарцяжа ў дакуменце. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Усе файлы (*.*) - + Export Page As PDF Экспартаваць старонку ў DXF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Экспартаваць старонку ў SVG @@ -3634,27 +3634,27 @@ Without a selection, a file browser lets you select a SVG or image file.Абрярыце знак - + ActiveView to TD View Бягучы выгляд на старонку Тэхнічнага чарцяжа - + No Main Window Без галоўнага акна - + Can not find the main window Не атрымалася знайсці галоўнае акно - + No 3D Viewer Без трохмернага прадстаўлення - + Can not find a 3D viewer Не атрымалася знайсці сродак трохмернага прадстаўлення @@ -3934,12 +3934,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Стварыць штрыхоўку грані - + Edit Face Hatch Змяніць штрыхоўку грані @@ -4025,7 +4025,7 @@ Without a selection, a file browser lets you select a SVG or image file.Памылка налады - + Document Name: Назва дакументу: @@ -4623,6 +4623,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Уключыць лінію разрэзу ў заметку перасеку + + + Balloon Leader Kink Length + Даўжыня залому пазіцыйнай зноскі + Broken View Break Type @@ -4728,11 +4733,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Даўжыня гарызантальнай часткі пазіцыйнай зноскі - - - Ballon Leader Kink Length - Даўжыня залому пазіцыйнай зноскі - Length of balloon leader line kink @@ -5619,22 +5619,22 @@ for ProjectionGroups Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Птушка, калі вы жадаеце, каб выгляды прывязваліся адзін да аднаго пры перацягванні. Snap View Alignment - Snap View Alignment + Прывязка выгляду пры выраўноўванні View Snapping Factor - View Snapping Factor + Каэфіцыент прывязкі да выгляду When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Пры перацягванні выгляду, калі ён знаходзіцца ў межах гэтай долі памеру выгляду ад правільнага выраўноўвання, ён будзе выраўнаваны з прывязкай. @@ -5863,91 +5863,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Пераключыць &абнаўленне - + Toggle &Frames Пераключыць &рамку - + &Export SVG &Экспартаваць у CSV - + Export DXF Экспартаваць у DXF - + Export PDF Экспартаваць у PDF - + Print All Pages Надрукаваць усе старонкі - + Different orientation Адрозная арыентацыя - + The printer uses a different orientation than the drawing. Do you want to continue? Друкарка ўжывае арыентацыю, якая выдатная ад арыентацыі чарцяжа. Ці жадаеце в вы працягнуць? - + Different paper size Адрозны памер паперы - + The printer uses a different paper size than the drawing. Do you want to continue? Друкарка ўжывае памер паперы, які адрозны ад чарцяжа. Ці жадаеце вы працягнуць? - - Opening file failed - Немагчыма адчыніць файл - - - - Can not open file %1 for writing. - Не атрымалася адчыніць файл %1 для запісу. - - - + Save DXF file Захаваць файл у DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Захаваць файл PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Абрана: @@ -8495,7 +8485,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Уставіць складовы выгляд перасеку @@ -8556,7 +8546,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Уставіць просты выгляд перасеку @@ -9806,13 +9796,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Тэхнічны чарцёж - - + + Insert Broken View Уставіць выгляд разбіўкі diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ca.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ca.ts index ea3f9b945f..241a02eafc 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ca.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ca.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Insereix una vista activa (vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insereix un objecte del banc de treball de BIM - + Insert a View of a Section Plane from BIM Workbench Insereix una vista d'un pla de secció des d'un banc de treball de BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Insereix una anotació en un globus @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Insereix un grup clip @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Afegeix una vista al grup clip @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Lleva una vista del ClipGroup @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insereix una vista de secció complexa - + Insert a Complex Section View Insereix una vista de secció complexa @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Insereix una vista de detall @@ -343,17 +343,17 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Insereix un objecte del banc de treball d'Esbós - + Insert a View of a Draft Workbench object Insereix una vista d'un objecte del banc de treball d'esbós @@ -361,22 +361,22 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawExportPageDXF - + File Fitxer - + Export Page as DXF Exporta la pàgina com a DXF - + Save DXF file Desa el fitxer DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawExportPageSVG - + File Fitxer - + Export Page as SVG Exportar una pàgina com a SVG @@ -1566,12 +1566,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Aplica trama geomètrica a la cara @@ -1579,12 +1579,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Tramat d'una cara utilitzant un fitxer d'imatge @@ -1618,28 +1618,28 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Insereix una imatge de mapa de bits - - + + Insert Bitmap from a file into a page Insereix una imatge de mapa de bits d'un fitxer en una pàgina - + Select an Image File Selecciona un fitxer d'imatge - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Fitxers d'imatge (*.jpg *.jpeg *.png *.bmp);;Tots els fitxers (*) @@ -1712,12 +1712,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Insereix una pàgina per defecte @@ -1725,22 +1725,22 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Insereix una pàgina utilitzant una plantilla - + Select a Template File Selecciona un fitxer de plantilla - + Template (*.svg) Plantilla (*.svg) @@ -1748,12 +1748,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Imprimir totes les pàgines @@ -1761,12 +1761,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projecta la forma... @@ -1774,17 +1774,17 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Insereix un grup de projeccions - + Insert multiple linked views of drawable object(s) Insereix diverses vistes enllaçades d'objectes dibuixables @@ -1818,12 +1818,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Torna a dibuixar una pàgina @@ -1844,22 +1844,22 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insereix una vista de secció simple o complexa - + Section View Vista de secció - + Complex Section Secció complexa @@ -1867,12 +1867,12 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Insereix una vista de secció @@ -1893,17 +1893,17 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Insereix una vista de full de càlcul - + Insert View to a spreadsheet Insereix vista a un full de càlcul @@ -2014,17 +2014,17 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Insereix un símbol SVG - + Insert symbol from an SVG file Insereix un símbol des d'un fitxer SGV @@ -2032,13 +2032,13 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Activa o desactiva els marcs de la vista @@ -2072,17 +2072,17 @@ En fer clic esquerre en un espai en blanc, validarà la cota actual. En fer clic CmdTechDrawView - + TechDraw TechDraw - + Insert View Insereix vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -2091,12 +2091,12 @@ S'afegiran objectes, fulls de càlcul o plans de secció del banc d'Arquitectura Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'imatge o SVG. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Si voleu inserir una vista d'objectes existents, seleccioneu-los abans d'invocar aquesta eina. Sense una selecció, s'obrirà un navegador de fitxers per inserir un fitxer SVG o d'imatge. - + Do not show this message again No tornis a mostrar aquest missatge @@ -2117,75 +2117,75 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Command - - + + Drawing create page Crea una pàgina de dibuix - + Create BIM View Crear una vista BIM - + Create view Crear vista - + Create broken view Crear una vista trencada - + Create Projection Group Crear un grup de projeccions - + Create Clip Crea un salt - + ClipGroupAdd Afegir al grup de retall - + ClipGroupRemove Eliminar del grup de retall - + Save page to DXF Desar pàgina com a DXF - - + + Create Symbol Crear Símbol - + Create DraftView Crea una vista d'Esbós - + Create ArchView Crea una vista d'Arquitectura - - + + Create spreadsheet view Crea una vista de full de càlcul - + Save page to dxf Guardar pàgina com dxf @@ -2385,33 +2385,33 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Crea una cota - + Create Hatch Crear trama - + Update Hatch Actualitzar tramat - + Remove old Hatch Eliminar tramat antic - + Create GeomHatch Crear TramaGeom - - + + Create Image Crear imatge - + Drag Balloon Arrossegar Globus @@ -2421,12 +2421,12 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Arrossegar Dimensió - + Create Balloon Crea un globus - + Create ActiveView Crea una Vista Activa @@ -3058,103 +3058,103 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selecció incorrecta - - + + No Shapes, Groups or Links in this selection No hi ha cap forma, grup ni enllaç en aquesta selecció - + Empty selection Selecció buida - + Select a SVG or Image file to open Selecciona un fitxer SVG o d'Imatge per a obrir - + SVG or Image files Fitxers SVG o d'Imatge - + Please select objects to break or a base view and break definition objects. Si us plau, seleccioneu objectes per trencar o una vista base i objectes de definició del trencament. - + No Break objects found in this selection No s'ha trobat cap objecte de trencament en aquesta selecció - - + + Select at least 1 DrawViewPart object as Base. Seleccioneu com a mínim 1 objecte DrawViewPart com a base. - + I do not know what base view to use. No sé quina vista base utilitzar. - + No Base View, Shapes, Groups or Links in this selection No s'ha seleccionat cap vista base, figura, grup o enllaç - + No profile object found in selection No s'ha trobat cap objecte de perfil en aquesta selecció - + Please select only 1 BIM Section. Seleccioneu només 1 secció BIM. - + No BIM Sections in selection. No hi ha cap secció BIM en la selecció. - - - + + + - - - - + + + + Incorrect selection @@ -3162,102 +3162,102 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i - + Select an object first Seleccioneu primer un objecte - + Too many objects selected Hi ha masses objectes seleccionats - + Create a page first. Crear una pàgina primer. - + No View of a Part in selection. No hi ha cap vista d'una peça en la selecció. - + Select one Clip group and one View. Seleccioneu un grup clip i una vista. - + Select exactly one View to add to group. Seleccioneu exactament una vista per a afegir al grup. - + Select exactly one Clip group. Seleccioneu exactament un grup clip. - + Clip and View must be from same Page. Clip i Vista han de ser de la mateixa pàgina. - + Select exactly one View to remove from Group. Seleccioneu exactament una vista per a eliminar del grup. - + View does not belong to a Clip La Vista no pertany a un Clip - + Choose an SVG file to open Triar un fitxer SVG per obrir - + Scalable Vector Graphic Vector grafic escalable - - + + All Files Tots els fitxers - + Select at least one object. Selecciona com a mínim un objecte. - + Select exactly one Spreadsheet object. Selecciona exactament un objecte de full de càlcul. - + No Drawing View Sense vistes de dibuix - + Open Drawing View before attempting export to SVG. Obri les vistes de dibuix abans d'intentar l'exportació a SVG. - + Can not export selection No es pot exportar la selecció - + Page contains DrawViewArch which will not be exported. Continue? La pàgina conté DrawViewArch que no s'exportaran. Voleu continuar? @@ -3272,8 +3272,8 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Advertència de corba BSpline - - + + @@ -3398,9 +3398,9 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i - - - + + + @@ -3449,9 +3449,9 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i - - - + + + @@ -3641,43 +3641,43 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i No hi ha cap %1 a la selecció - + Replace Hatch? Voleu reemplaçar la trama? - + Some Faces in selection are already hatched. Replace? Algunes cares en la selecció ja tenen trama. Voleu reemplaçar-les? - + No TechDraw Page No hi ha cap pàgina TechDraw - + Need a TechDraw Page for this command Es necessita una pàgina TechDraw per a aquesta ordre - + Select a Face first Seleccioneu primer una cara - + No TechDraw object in selection No hi ha cap objecte TechDraw en la selecció - + Create a page to insert. Creeu una pàgina per a inserir. - - + + No Faces to hatch in this selection No hi ha cares on aplicar el tramat en aquesta selecció @@ -3698,28 +3698,28 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i No hi ha cap pàgina de dibuix en el document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Tots els arxius (*.*) - + Export Page As PDF Exporta la Pàgina com a PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exporta la Pàgina com a SVG @@ -3778,27 +3778,27 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Seleccioneu un símbol - + ActiveView to TD View VistaActiva en Vista TD - + No Main Window No hi ha cap finestra principal - + Can not find the main window No s'ha pogut trobar la finestra principal - + No 3D Viewer No hi ha cap visor 3D - + Can not find a 3D viewer No s'ha pogut trobar cap visor 3D @@ -4076,12 +4076,12 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i gruixut: %4 - + Create Face Hatch Crear tramat de cara - + Edit Face Hatch Editar tramat de cara @@ -4167,7 +4167,7 @@ Sense una selecció, un navegador de fitxers us permet seleccionar un fitxer d'i Error de paràmetre - + Document Name: Nom del document: @@ -4764,6 +4764,11 @@ Per consegüent, heu d'augmentar el límit de mosaics. Include Cut Line in Section Annotation Incloure línia de tall a l'anotació de secció + + + Balloon Leader Kink Length + Longitud del plec de la línia guia del globus + Broken View Break Type @@ -4869,11 +4874,6 @@ Per consegüent, heu d'augmentar el límit de mosaics. Length of horizontal portion of Balloon leader Longitud de la part horitzontal de la línia guia del globus - - - Ballon Leader Kink Length - Llargària del plec de la línia guia del globus - Length of balloon leader line kink @@ -5744,27 +5744,27 @@ for ProjectionGroups Snapping - Snapping + Ajust Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Marqueu aquesta casella si voleu que les vistes s'ajustin a l'alineament en ser arrossegades. Snap View Alignment - Snap View Alignment + Ajustar alineament de la vista View Snapping Factor - View Snapping Factor + Factor d'ajustament de la vista When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + En arrossegar una vista, si està dins d'aquesta fracció de la mida de la vista de l'alineament correcta, s'ajustarà a l'alineament. @@ -5992,89 +5992,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Activa/desactiva l'&actualització automàtica - + Toggle &Frames Activa/desactiva els &marcs - + &Export SVG &Exporta SVG - + Export DXF Exporta DXF - + Export PDF Exporta a PDF - + Print All Pages Imprimir totes les pàgines - + Different orientation Orientació diferent - + The printer uses a different orientation than the drawing. Do you want to continue? La impressora utilitza una orientació diferent que la del dibuix. Voleu continuar? - + Different paper size Mida de paper diferent - + The printer uses a different paper size than the drawing. Do you want to continue? La impressora utilitza una mida de paper diferent que la del dibuix. Voleu continuar? - - Opening file failed - No s'ha pogut obrir el fitxer - - - - Can not open file %1 for writing. - No s'ha pogut obrir el fitxer %1 per a escriure-hi. - - - + Save DXF file Desa el fitxer DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Desa el fitxer PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Seleccionat: @@ -6450,7 +6440,7 @@ Do you want to continue? Offset - Equidistancia (ofset) + Equidistància @@ -8624,7 +8614,7 @@ usant l'espaiat X/Y donat TechDraw_ComplexSection - + Insert complex Section View Insereix una vista de secció complexa @@ -8687,7 +8677,7 @@ usant l'espaiat X/Y donat TechDraw_SectionView - + Insert simple Section View Insereix una vista de secció simple @@ -9937,13 +9927,13 @@ hi ha un diàleg de tasca obert. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insereix vista trencada diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_cs.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_cs.ts index ba053cda6d..78b287cab7 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_cs.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_cs.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Vložit aktivní pohled (3D zobrazení) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Vloží balonovou poznámku @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Vložit sepnutou skupinu pohledů @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Přidat pohled do sepnuté skupiny @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Odebrat pohled ze sepnuté skupiny @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Vložit detail pohledu @@ -343,17 +343,17 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Vložit objekt pracovního prostředí návrhu - + Insert a View of a Draft Workbench object Vloží pohled na objekt z pracovního prostředí návrhu @@ -361,22 +361,22 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawExportPageDXF - + File Soubor - + Export Page as DXF Exportovat stránku do DXF - + Save DXF file Uložit soubor DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawExportPageSVG - + File Soubor - + Export Page as SVG Exportovat stránku do SVG @@ -1417,12 +1417,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Použít geometrické šrafování na plochu @@ -1430,12 +1430,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Šrafovat plochu použitím obrazového souboru @@ -1469,28 +1469,28 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Vložit bitmapový obrázek - - + + Insert Bitmap from a file into a page Vložit bitmapu ze souboru na stránku - + Select an Image File Vyberte soubor obrázku - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Obrázkové soubory (*.jpg *.jpeg *.png *.bmp);;Všechny soubory (*) @@ -1563,12 +1563,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Vložit výchozí stránku @@ -1576,22 +1576,22 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Vložit stránku pomocí šablony - + Select a Template File Vybrat šablonu - + Template (*.svg) Šablona (*.svg) @@ -1599,12 +1599,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Tisknout všechny stránky @@ -1612,12 +1612,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projekce tvaru... @@ -1625,17 +1625,17 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Vložit skupinu promítnutí - + Insert multiple linked views of drawable object(s) Vložit několik propojených pohledů zobrazitelného objektu/ů @@ -1669,12 +1669,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Překreslit stránku @@ -1695,22 +1695,22 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Vložení jednoduchého nebo složitého zobrazení oddílu - + Section View Pohled řezu - + Complex Section Komplexní sekce @@ -1718,12 +1718,12 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Vložit pohled řezu @@ -1744,17 +1744,17 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Vložit zobrazení tabulky - + Insert View to a spreadsheet Vložit pohled do tabulky @@ -1865,17 +1865,17 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Vložit SVG Symbol - + Insert symbol from an SVG file Vložit symbol z SVG souboru @@ -1883,13 +1883,13 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Zapnout nebo vypnout zobrazení rámců @@ -1923,17 +1923,17 @@ Levé kliknutí na prázdné místo ověří aktuální rozměr. Pravým kliknut CmdTechDrawView - + TechDraw TechDraw - + Insert View Vložit zobrazení - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Přidají se vybrané objekty, tabulky nebo roviny sekce Arch WB. Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Pokud chcete vložit pohled z existujících objektů, vyberte je před vyvoláním tohoto nástroje. Bez výběru se otevře prohlížeč souborů pro vložení souboru SVG nebo obrázku. - + Do not show this message again Tuto zprávu již nezobrazovat @@ -1968,75 +1968,75 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. Command - - + + Drawing create page Vytvořit stránku - + Create BIM View Create BIM View - + Create view Vytvořit pohled - + Create broken view Vytvoření nefunkčního zobrazení - + Create Projection Group Vytvořit skupinu promítání - + Create Clip Vytvořit výřez - + ClipGroupAdd Přidat do skupiny výřezu - + ClipGroupRemove Odebrat ze skupiny výřezu - + Save page to DXF - Save page to DXF + Uložit stránku do DXF - - + + Create Symbol Vytvořit symbol - + Create DraftView Vytvořit pohled návrhu - + Create ArchView Vytvořit Arch pohled - - + + Create spreadsheet view Vytvořit pohled tabulky - + Save page to dxf Uložit stránku do dxf @@ -2071,158 +2071,158 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. Add Extent dimension - Add Extent dimension + Add Area dimension - Add Area dimension + Vytvoř kótu velikosti plochy Add Distance dimension - Add Distance dimension + Vytvoř kótu vzdálenosti Add DistanceX Chamfer dimension - Add DistanceX Chamfer dimension + Vytvoř kótu X-rozměru sražené hrany Add horizontal chain dimensions - Add horizontal chain dimensions + Vytvoř horizontální řetězovou kótu Add horizontal coordinate dimensions - Add horizontal coordinate dimensions + Vytvoř horizontální souřadnicovou kótu Add 3-points angle dimension - Add 3-points angle dimension + Vytvoř kótu úhlu ze tří bodů Add horizontal chain dimension - Add horizontal chain dimension + Vytvoř horizontální řetězovou kótu Add point to line Distance dimension - Add point to line Distance dimension + Vytvoř kótu od čáry k bodu Add length dimension - Add length dimension + Vytvoř délkovou kótu Add Angle dimension - Add Angle dimension + Vytvoř úhlovou kótu Add circle to line Distance dimension - Add circle to line Distance dimension + Vytvoř kótu mezi kružnicí a čárou Add ellipse to line Distance dimension - Add ellipse to line Distance dimension + Vytvoř kótu mezi elipsou a čárou Add Radius dimension - Add Radius dimension + Vytvoř kótu poloměru Add Arc Length dimension - Add Arc Length dimension + Vytvoř kótu délky oblouku Add circle to circle Distance dimension - Add circle to circle Distance dimension + Vytvoř kótu vzdálenosti mezi dvěma kružnicemi Add ellipse to ellipse Distance dimension - Add ellipse to ellipse Distance dimension + Vytvoř kótu vzdálenosti mezi dvěma elipsami Add edge length dimension - Add edge length dimension + Vytvoř kótu délky okraje Add Diameter dimension - Add Diameter dimension + Vytvoř kótu průměru Add DistanceX dimension - Add DistanceX dimension + Vytvoř kótu horizontální vzdálenosti Add DistanceY Chamfer dimension - Add DistanceY Chamfer dimension + Vytvoř kótu Y-rozměru sražené hrany Add DistanceY dimension - Add DistanceY dimension + Vytvoř kótu vertikální vzdálenosti Add DistanceX extent dimension - Add DistanceX extent dimension + Vytvoř X-rozsah kóty Add DistanceY extent dimension - Add DistanceY extent dimension + Vytvoř Y-rozsah kóty Add horizontal coord dimensions - Add horizontal coord dimensions + Vytvoř horizontální souřadnice Add vertical chain dimensions - Add vertical chain dimensions + Vytvoř vertikální řetězovou kótu Add vertical coord dimensions - Add vertical coord dimensions + Vytvoř vertikální souřadnice Add oblique chain dimensions - Add oblique chain dimensions + Vytvoř šikmou řetězovou kótu Add oblique coord dimensions - Add oblique coord dimensions + Vytvoř šikmou souřadnicovou kótu @@ -2236,33 +2236,33 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Vytvořit kótu - + Create Hatch Vytvoří šrafování - + Update Hatch Aktualizace šrafování - + Remove old Hatch Odstranění starého šrafování - + Create GeomHatch Vytvořit geometrické šrafy - - + + Create Image Vytvořit obrázek - + Drag Balloon Táhnout balon @@ -2272,12 +2272,12 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Táhnout kótu - + Create Balloon Vytvořit balon - + Create ActiveView Vytvořit aktivní pohled @@ -2289,7 +2289,7 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. Create Cosmetic Circle - Create Cosmetic Circle + Vytvoř kosmetickou kružnici @@ -2420,67 +2420,67 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. Create Horiz Chain Dim - Create Horiz Chain Dim + Vytvoř rozměr v horizontální řetětové kótě Create Vert Chain Dim - Create Vert Chain Dim + Vytvoř rozměr ve vertikální řetězové kótě Create Oblique Chain Dim - Create Oblique Chain Dim + Vytvoř rozměr v šikmé řetězové kótě Create Horiz Coord Dim - Create Horiz Coord Dim + Vytvoř horizontální rozměr pro souřadnicovou kótu Create Vert Coord Dim - Create Vert Coord Dim + Vytvoř vertikální rozměr pro vertikální souřadnicovou kótu Create Oblique Coord Dim - Create Oblique Coord Dim + Vytvoř rozměr pro šikmou souřadnicovou kótu Create Horiz Chamfer Dim - Create Horiz Chamfer Dim + Vytvoř horizontální rozměr pro sraženou hranu Create Vert Chamfer Dim - Create Vert Chamfer Dim + Vytvoř vertikální rozměr pro sraženou hranu Create Arc Length Dim - Create Arc Length Dim + Vytvoř rozměr délky oblouku TechDraw Hole Circle - TechDraw Hole Circle + TechDraw kružnice díry Bolt Circle Centerlines - Bolt Circle Centerlines + Osová kružnice šroubů TechDraw Circle Centerlines - TechDraw Circle Centerlines + Osová kružnice Circle Centerlines - Circle Centerlines + Osová kružnice @@ -2909,103 +2909,103 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Neplatný výběr - - + + No Shapes, Groups or Links in this selection Žádné Tvary, Skupiny ani Odkazy v tomto výběru - + Empty selection Prázdný výběr - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Vyberte alespoň 1 objekt zobrazení části jako základnu. - + I do not know what base view to use. Nevím, jaký základní pohled se má použít. - + No Base View, Shapes, Groups or Links in this selection Žádné základní zobrazení, tvary, skupiny nebo odkazy v tomto výběru - + No profile object found in selection Ve výběru nebyl nalezen žádný objekt profilu - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - + Select an object first Nejprve vyberte objekt - + Too many objects selected Příliš mnoho vybraných objektů - + Create a page first. Vytvořte nejprve stránku. - + No View of a Part in selection. Ve výběru není zobrazení součásti. - + Select one Clip group and one View. Vyberte jednu Sepnutou skupinu a jeden Pohled. - + Select exactly one View to add to group. Vyberte právě jedno zobrazení pro přidání do skupiny. - + Select exactly one Clip group. Vyberte právě jedno zobrazení sepnuté skupiny. - + Clip and View must be from same Page. Sepnutí a Zobrazení musí být na společné stránce. - + Select exactly one View to remove from Group. Vyberte právě jedno zobrazení pro odstranění ze skupiny. - + View does not belong to a Clip Zobrazení není součástí Sepnutí - + Choose an SVG file to open Zvolte soubor SVG pro otevření - + Scalable Vector Graphic Škálovatelná vektorová grafika - - + + All Files Všechny soubory - + Select at least one object. Vyberte alespoň jeden objekt. - + Select exactly one Spreadsheet object. Vyberte právě jeden objekt Tabulky. - + No Drawing View Žádné zobrazení výkresu - + Open Drawing View before attempting export to SVG. Otevřete zobrazení výkresu před exportem do SVG. - + Can not export selection Nelze exportovat výběr - + Page contains DrawViewArch which will not be exported. Continue? Stránka obsahuje pohled kresby z prostředí Arch, který nebude exportován. Pokračovat? @@ -3123,8 +3123,8 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Varování BSpline křivky - - + + @@ -3249,9 +3249,9 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - - - + + + @@ -3300,9 +3300,9 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - - - + + + @@ -3492,43 +3492,43 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Žádný %1 ve výběru - + Replace Hatch? Nahradit šrafování? - + Some Faces in selection are already hatched. Replace? Některé plochy ve výběru jsou již šrafované. Nahradit? - + No TechDraw Page Žádná stránka TechDraw - + Need a TechDraw Page for this command Pro tento příkaz je potřeba TechDraw stránka - + Select a Face first Nejprve vyberte plochu - + No TechDraw object in selection Ve výběru není objekt z TechDraw - + Create a page to insert. Vytvoření stránky pro vložení. - - + + No Faces to hatch in this selection V tomto výběru nejsou plochy pro šrafování @@ -3549,28 +3549,28 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.V dokumentu nejsou žádné stránky s výkresy. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Všechny soubory (*.*) - + Export Page As PDF Exportovat stránku do PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportovat stránku do SVG @@ -3629,27 +3629,27 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Vyberte symbol - + ActiveView to TD View Aktivní pohled do TD pohledu - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Bez výběru umožňuje prohlížeč souborů vybrat soubor SVG nebo obrázek.Parameter Error - + Document Name: Document Name: @@ -4618,6 +4618,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4723,11 +4728,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5849,91 +5849,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Přepnout průběžné aktualizace - + Toggle &Frames Přepnout rámce - + &Export SVG &Exportovat SVG - + Export DXF Exportovat DXF - + Export PDF Export PDF - + Print All Pages Tisknout všechny stránky - + Different orientation Jiná orientace - + The printer uses a different orientation than the drawing. Do you want to continue? Tiskárna používá jinou orientaci než výkres. Chcete pokračovat? - + Different paper size Jiný formát papíru - + The printer uses a different paper size than the drawing. Do you want to continue? Tiskárna používá jiný formát papíru než výkres. Chcete pokračovat? - - Opening file failed - Otevření souboru selhalo - - - - Can not open file %1 for writing. - Soubor %1 nelze otevřít pro zápis. - - - + Save DXF file Uložit soubor DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Vybráno: @@ -6527,7 +6517,7 @@ Chcete pokračovat? Straightness - Straightness + Přímost @@ -8486,7 +8476,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_da.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_da.ts index de038ae1b8..7fb6806d05 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_da.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_da.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Indsæt aktiv visning (3D-visning) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Indsæt BIM-arbejdsbænkobjekt - + Insert a View of a Section Plane from BIM Workbench Indsæt tegning af tværsnit fra BIM-arbejdsbænk @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Indsæt ballonannotering @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Indsæt udsnitsgruppe @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Tilføj tegning til udsnitsgruppe @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Fjern tegning fra udsnitsgruppe @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Indsæt tegning af komplekst tværsnit - + Insert a Complex Section View Indsæt visning af komplekst tværsnit @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Indsæt detaljevisning @@ -343,40 +343,40 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object - Insert Draft Workbench Object + Indsæt objekt fra Draft-arbejdsbænk - + Insert a View of a Draft Workbench object - Insert a View of a Draft Workbench object + Indsæt visning af objekt fra Draft-arbejdsbænk CmdTechDrawExportPageDXF - + File Fil - + Export Page as DXF Eksporter side som DXF - + Save DXF file Gem som DXF-fil - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Fil - + Export Page as SVG Eksporter side som SVG @@ -445,7 +445,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Evenly space horizontal dimensions:<br>- Specify the cascade spacing (optional)<br>- Select two or more horizontal dimensions<br>- The first dimension defines the position<br>- Click this tool - Evenly space horizontal dimensions:<br>- Specify the cascade spacing (optional)<br>- Select two or more horizontal dimensions<br>- The first dimension defines the position<br>- Click this tool + Fordel horisontale dimensioner jævnt:<br>- Angiv kaskadeafstand (valgfrit)<br>- Vælg 2 eller flere horisontale dimensioner<br>- Den første dimension definerer placeringen<br>- Tryk på dette værktøj @@ -465,7 +465,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Evenly space horizontal dimensions:<br>- Specify the cascade spacing (optional)<br>- Select two or more horizontal dimensions<br>- The first dimension defines the position<br>- Click this tool - Evenly space horizontal dimensions:<br>- Specify the cascade spacing (optional)<br>- Select two or more horizontal dimensions<br>- The first dimension defines the position<br>- Click this tool + Fordel horisontale dimensioner jævnt:<br>- Angiv kaskadeafstand (valgfrit)<br>- Vælg 2 eller flere horisontale dimensioner<br>- Den første dimension definerer placeringen<br>- Tryk på dette værktøj @@ -787,7 +787,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Create Vertical Coordinate Dimensions - Create Vertical Coordinate Dimensions + Lav vertikale koordinatdimensioner @@ -806,7 +806,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Customize Format Label - Customize Format Label + Definér labelformat @@ -1043,7 +1043,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Insert '□' Prefix - Insert '□' Prefix + Indsæt '□'-præfiks @@ -1138,7 +1138,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Position Horizontal Chain Dimensions - Position Horizontal Chain Dimensions + Placér horisontale kædedimensioner @@ -1157,7 +1157,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Position Horizontal Chain Dimensions - Position Horizontal Chain Dimensions + Placér horisontale kædedimensioner @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Anvend geometrisk skravering til flade @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Skravér en flade med billedfil @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Indsæt bitmap-billede - - + + Insert Bitmap from a file into a page Indsæt bitmap på siden fra en fil - + Select an Image File Vælg en billedfil - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Billedfiler (*.jpg *.jpeg *.png *.bmp);;Alle filer (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Indsæt standard side @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Indsæt side med skabelon - + Select a Template File Vælg skabelonfil - + Template (*.svg) Skabelon (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Print alle sider @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projekter form... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Indsæt afbildningsgruppe - + Insert multiple linked views of drawable object(s) Indsæt flere forbundne visninger af tegnbare objekt(er) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Genoptegn side @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Indsæt simpelt eller komplekst tværsnit - + Section View Tværsnittegning - + Complex Section Komplekst tværsnit @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Indsæt tværsnit visning @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Indsæt regnearksvisning - + Insert View to a spreadsheet Insert View to a spreadsheet @@ -1800,22 +1800,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking Stack Top - Stack Top + Flyt øverst Stack Bottom - Stack Bottom + Flyt nederst Stack Up - Stack Up + Flyt op Stack Down - Stack Down + Flyt ned @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Indsæt SVG-symbol - + Insert symbol from an SVG file Indsæt symbol fra en SVG-fil @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Slå visningsrammer til/fra @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View Indsæt visning - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Vis ikke denne besked igen @@ -1968,77 +1968,77 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Lav BIM-visning - + Create view Lav visning - + Create broken view Create broken view - + Create Projection Group Lav afbildningsgruppe - + Create Clip Lav udsnit - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Gem side til DXF - - + + Create Symbol Lav symbol - + Create DraftView - Create DraftView + Lav Draft-visning - + Create ArchView - Create ArchView + Lav Arch-visning - - + + Create spreadsheet view - Create spreadsheet view + Lav Spreadsheet-visning - + Save page to dxf - Save page to dxf + Gem side som DXF @@ -2076,7 +2076,7 @@ Without a selection, a file browser lets you select a SVG or image file. Add Area dimension - Add Area dimension + Tilføj arealdimension @@ -2090,13 +2090,13 @@ Without a selection, a file browser lets you select a SVG or image file. Add DistanceX Chamfer dimension - Add DistanceX Chamfer dimension + Tilføj X-dimension for rejfning Add horizontal chain dimensions - Add horizontal chain dimensions + Tilføj horisontale kædedimensioner @@ -2109,12 +2109,12 @@ Without a selection, a file browser lets you select a SVG or image file. Add 3-points angle dimension - Add 3-points angle dimension + Tilføj 3-punkts vinkeldimension Add horizontal chain dimension - Add horizontal chain dimension + Tilføj horisontal kædedimension @@ -2167,7 +2167,7 @@ Without a selection, a file browser lets you select a SVG or image file. Add edge length dimension - Add edge length dimension + Tilføj linjelængdedimension @@ -2182,7 +2182,7 @@ Without a selection, a file browser lets you select a SVG or image file. Add DistanceY Chamfer dimension - Add DistanceY Chamfer dimension + Tilføj Y-dimension for rejfning @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Lav dimension - + Create Hatch Lav skravering - + Update Hatch Opdater skravering - + Remove old Hatch Fjern gammel skravering - + Create GeomHatch Create GeomHatch - - + + Create Image Lav billede - + Drag Balloon Flyt ballon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Lav ballon - + Create ActiveView Tilføj aktiv visning @@ -2304,7 +2304,7 @@ Without a selection, a file browser lets you select a SVG or image file. Create Detail View - Create Detail View + Lav detaljevisning @@ -2385,7 +2385,7 @@ Without a selection, a file browser lets you select a SVG or image file. Increase/Decrease Decimal - Increase/Decrease Decimal + Forøg/formindsk decimal @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Forkert markering - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Ingen markering - + Select a SVG or Image file to open Vælg SVG- eller billedfil til åbning - + SVG or Image files SVG- eller billedfiler - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Select at least 1 DrawViewPart object as Base. - + I do not know what base view to use. Ved ikke hvilken grundvisning, der skal bruges. - + No Base View, Shapes, Groups or Links in this selection Ingen grundvisning, former, grupper eller forbindelser i markeringen - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Vælg et objekt først - + Too many objects selected For mange objekter valgt - + Create a page first. Lav en side først. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Vælg en udsnitsgruppe og en visning. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Vælg præcis én udsnitsgruppe. - + Clip and View must be from same Page. Udsnit og visning skal være fra samme side. - + Select exactly one View to remove from Group. Vælg præcis én visning til fjerning fra gruppe. - + View does not belong to a Clip Visning hører ikke til noget udsnit - + Choose an SVG file to open Vælg en SVG-fil for at åbne - + Scalable Vector Graphic Scalable Vector Graphic - - + + All Files Alle filer - + Select at least one object. Vælg mindst et objekt. - + Select exactly one Spreadsheet object. Vælg præcis en Spreadsheet-objekt. - + No Drawing View No Drawing View - + Open Drawing View before attempting export to SVG. Open Drawing View before attempting export to SVG. - + Can not export selection Kan ikke eksportere markering - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-spline-kurveadvarsel - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Ingen %1 i markering - + Replace Hatch? Erstat skravering? - + Some Faces in selection are already hatched. Replace? Nogle flader i markering er allerede skraveret. Erstat? - + No TechDraw Page Ingen TechDraw-side - + Need a TechDraw Page for this command Kræver en TechDraw-side til denne kommando - + Select a Face first Vælg en flade først - + No TechDraw object in selection Ingen TechDraw-objekter blandt markerede - + Create a page to insert. Lav en side til indsætning. - - + + No Faces to hatch in this selection Ingen flader blandt markerede @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Alle filer (*.*) - + Export Page As PDF Eksportér side som PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Eksportér sider som SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Vælg et symbol - + ActiveView to TD View ActiveView to TD View - + No Main Window Intet hovedvindue - + Can not find the main window Kan ikke finde hovedvindue - + No 3D Viewer Ingen 3D-visning - + Can not find a 3D viewer Kan ikke finde nogen 3D-visning @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Lav fladeskravering - + Edit Face Hatch Redigér skravering @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameterfejl - + Document Name: Dokumentnavn: @@ -4563,12 +4563,12 @@ Then you need to increase the tile limit. Section Cut Surface - Section Cut Surface + Tværsnitskåret flade Default appearance of cut surface in section view - Default appearance of cut surface in section view + Standard udseende af skåret flade i tværsnitvisning @@ -4578,7 +4578,7 @@ Then you need to increase the tile limit. Solid Color - Solid Color + Enkel farve @@ -4598,7 +4598,7 @@ Then you need to increase the tile limit. Show Section Line in Source View - Show Section Line in Source View + Vis tværsnitlinje på kildevisning @@ -4620,6 +4620,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4663,12 +4668,12 @@ Then you need to increase the tile limit. Detail View Outline Shape - Detail View Outline Shape + Detaljevisningsomridsform Outline shape for detail views - Outline shape for detail views + Omridsform for detaljevisning @@ -4678,12 +4683,12 @@ Then you need to increase the tile limit. Line style of detail highlight on base view - Line style of detail highlight on base view + Linjetype for detaljemarkering på grundvisning Detail Highlight Style - Detail Highlight Style + Detaljemarkeringstype @@ -4718,18 +4723,13 @@ Then you need to increase the tile limit. Style for balloon leader line ends - Style for balloon leader line ends + Type for ballonledelinjeende Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5018,7 +5018,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. Object faces will be transparent - Object faces will be transparent + Objektflader vil være transperante @@ -5038,7 +5038,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. Template Underline - Template Underline + Skabelonunderlinje @@ -5057,7 +5057,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. Standard and Style - Standard and Style + Standard og type @@ -5376,7 +5376,7 @@ for ProjectionGroups Label Font* - Label Font* + Labelskrifttype* @@ -5441,7 +5441,7 @@ for ProjectionGroups Preferred SVG or bitmap file for hatching. This value will also control the initial directory for choosing hatch patterns. You can use this to get hatch files from a local directory. - Preferred SVG or bitmap file for hatching. This value will also control the initial directory for choosing hatch patterns. You can use this to get hatch files from a local directory. + Foretrukken SVG- eller bitmapfil for skravering. Denne værdi vil også angive mappen ved valg af skraveringsmønster. Du kan bruge dette til at finde skraveringfiler i en lokal mappe. @@ -5486,7 +5486,7 @@ for ProjectionGroups Default directory for welding symbols - Default directory for welding symbols + Standard mappe for svejsesymboler @@ -5496,7 +5496,7 @@ for ProjectionGroups Default PAT pattern definition file for geometric hatching - Default PAT pattern definition file for geometric hatching + Standard PAT-mønsterdefineringsfil for geometrisk skravering @@ -5601,7 +5601,7 @@ for ProjectionGroups Snapping - Snapping + Sammenklikning @@ -5611,7 +5611,7 @@ for ProjectionGroups Snap View Alignment - Snap View Alignment + Sammenklik flugtning af visninger @@ -5759,7 +5759,7 @@ Fast, but result is a collection of short straight lines. Default scale for new pages - Default scale for new pages + Standard skalering for nye sider @@ -5769,7 +5769,7 @@ Fast, but result is a collection of short straight lines. Default scale for new views - Default scale for new views + Standard skalering for nye visninger @@ -5850,89 +5850,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Toggle &Keep Updated - + Toggle &Frames Toggle &Frames - + &Export SVG &Eksportér SVG - + Export DXF Eksportér DXF - + Export PDF Eksporter PDF - + Print All Pages Print alle sider - + Different orientation Forskellig orientering - + The printer uses a different orientation than the drawing. Do you want to continue? Denne printer bruger en anden orientering end tegningen. Vil du gerne fortsætte? - + Different paper size Forskellig papirstørrelse - + The printer uses a different paper size than the drawing. Do you want to continue? Denne printer bruger en anden sidestørrelse end tegningen. Vil du gerne fortsætte? - - Opening file failed - Åbning af fil fejlede - - - - Can not open file %1 for writing. - Kan ikke åbne filen %1 for skrivning. - - - + Save DXF file Gem som DXF-fil - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Gem PDF-fil - + PDF (*.pdf) PDF (*.pdf) - + Selected: Valgt: @@ -6268,7 +6258,7 @@ Do you want to continue? Section Parameters - Section Parameters + Tværsnitsparametre @@ -6374,7 +6364,7 @@ Do you want to continue? Live Update - Live Update + Løbende opdatering @@ -6450,7 +6440,7 @@ Do you want to continue? Pick a point for cosmetic vertex - Pick a point for cosmetic vertex + Vælg en placering for kosmetisk punkt @@ -6526,7 +6516,7 @@ Do you want to continue? Straightness - Straightness + Retlinjehed @@ -6536,27 +6526,27 @@ Do you want to continue? Circularity - Circularity + Cirkulæritet Cylindricity - Cylindricity + Cylindricitet Parallelism - Parallelism + Parallelitet Perpendicularity - Perpendicularity + Perpendikulæritet Angularity - Angularity + Vinkelstilling @@ -6974,7 +6964,7 @@ Brugerdefineret: indtastet skaleringsfaktor bliver brugt Assign same value to over and under tolerance - Assign same value to over and under tolerance + Angiv samme værdi til over- og undertolerance @@ -6986,9 +6976,8 @@ Brugerdefineret: indtastet skaleringsfaktor bliver brugt Overtolerance value If 'Equal Tolerance' is checked this is also the negated value for 'Under Tolerance'. - Overtolerance value -If 'Equal Tolerance' is checked this is also -the negated value for 'Under Tolerance'. + Overtoleranceværdi +Hvis 'samme tolerance' er afkrydset, så er dette også en virkningsløs værdi for 'undertolerance'. @@ -7574,22 +7563,22 @@ Du kan vælge yderligere punkter for at få linjesegmenter. Feature1: - Feature1: + Objekt1: Geometry1: - Geometry1: + Geometri1: Feature2: - Feature2: + Objekt2: Geometry2: - Geometry2: + Geometri2: @@ -7658,7 +7647,7 @@ Du kan vælge yderligere punkter for at få linjesegmenter. Scale Page/Auto/Custom - Scale Page/Auto/Custom + Skalering side/auto/brugerdefineret @@ -7698,7 +7687,7 @@ Du kan vælge yderligere punkter for at få linjesegmenter. Current primary view direction - Current primary view direction + Nuværende primære visningsretning @@ -7804,12 +7793,12 @@ using the given X/Y Spacing Horizontal space between borders of projections - Horizontal space between borders of projections + Horisontal afstand mellem rammer i projektioner Vertical space between borders of projections - Vertical space between borders of projections + Vertikal afstand mellem rammer i projektioner @@ -7962,7 +7951,7 @@ using the given X/Y Spacing Base Feature - Base Feature + Grundobjekt @@ -8085,7 +8074,7 @@ using the given X/Y Spacing Scale Page/Auto/Custom - Scale Page/Auto/Custom + Skalering side/auto/brugerdefineret @@ -8160,7 +8149,7 @@ using the given X/Y Spacing Live Update - Live Update + Løbende opdatering @@ -8170,7 +8159,7 @@ using the given X/Y Spacing Section Plane Location - Section Plane Location + Tværsnitsplanplacering @@ -8191,14 +8180,14 @@ using the given X/Y Spacing %n update(s) pending - %n update(s) pending + %n opdatering(er) venter %n update(s) pending Nothing to apply. No section direction picked yet - Nothing to apply. No section direction picked yet + Intet at anvende. Ingen tværsnitsretning valgt endnu @@ -8211,12 +8200,12 @@ using the given X/Y Spacing Line attributes - Line attributes + Linjeattributter Line style: - Line style: + Linjetype: @@ -8246,7 +8235,7 @@ using the given X/Y Spacing Cascade spacing - Cascade spacing + Kaskadeafstand @@ -8295,7 +8284,7 @@ using the given X/Y Spacing Any method allowed - Any method allowed + Enhver metode tilladt @@ -8456,12 +8445,12 @@ using the given X/Y Spacing Autofill - Autofill + Auto-udfyldning The autofill replacement value. - The autofill replacement value. + Erstatningsværdien for autoudfyldning. @@ -8469,7 +8458,7 @@ using the given X/Y Spacing Adds a Centerline between 2 Lines - Adds a Centerline between 2 Lines + Tilføjer en centerlinje mellem 2 linjer @@ -8477,13 +8466,13 @@ using the given X/Y Spacing Adds a Centerline between 2 Points - Adds a Centerline between 2 Points + Tilføjer en centerlinje mellem 2 punkter TechDraw_ComplexSection - + Insert complex Section View Indsæt kompleks tværsnitvisning @@ -8544,7 +8533,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -8835,7 +8824,7 @@ using the given X/Y Spacing Label - Label + Label @@ -8986,7 +8975,7 @@ using the given X/Y Spacing press fit - press fit + prespasning @@ -9019,7 +9008,7 @@ using the given X/Y Spacing Open Circle - Open Circle + Åben cirkel @@ -9096,13 +9085,12 @@ using the given X/Y Spacing You cannot delete this balloon now because there is an open task dialog. - You cannot delete this balloon now because -there is an open task dialog. + Du kan ikke slette denne ballon nu, da der er en åben opgavedialog. Can Not Delete - Can Not Delete + Kan ikke slette @@ -9142,7 +9130,7 @@ there is an open task dialog. Section - Section + Tvæsnit @@ -9150,7 +9138,7 @@ there is an open task dialog. Section - Section + Tværsnit @@ -9166,7 +9154,7 @@ there is an open task dialog. ActiveView - ActiveView + Aktiv visining @@ -9198,7 +9186,7 @@ there is an open task dialog. Arch - Arch + Arch @@ -9214,7 +9202,7 @@ there is an open task dialog. LeaderLine - LeaderLine + Ledelinje @@ -9254,7 +9242,7 @@ there is an open task dialog. GeomHatch - GeomHatch + Geometrisk skravering @@ -9396,7 +9384,7 @@ there is an open task dialog. Position from the view center - Position from the view center + Placering fra visningscentrum @@ -9432,15 +9420,15 @@ there is an open task dialog. - select one vertex<br> - start the tool<br> - enter offset values in panel - Create an offset vertex<br> - - select one vertex<br> - - start the tool<br> - - enter offset values in panel + Lav et forskudt punkt <br> + - vælg et punkt<br> + - start værktøjet<br> + - indtast forskydningen i panelet Add offset vertex - Add offset vertex + Tilføj forskudt punkt @@ -9448,7 +9436,7 @@ there is an open task dialog. Update template fields - Update template fields + Opdatér skabelonfelter @@ -9458,7 +9446,7 @@ there is an open task dialog. Fill Template Fields in - Fill Template Fields in + Udfyld skabelonfelter @@ -9476,22 +9464,22 @@ there is an open task dialog. file does not contain the correct field names therefore exiting - file does not contain the correct field names therefore exiting + fil har ikke de korrekte feltnavne, afslutter derfor file has not been found therefore exiting - file has not been found therefore exiting + fil blev ikke fundet, afslutter derfor View or Projection Group missing - View or Projection Group missing + Visning eller projektionsgruppe mangler Corresponding template fields missing - Corresponding template fields missing + Korresponderende skabelonfelter mangler @@ -9499,7 +9487,7 @@ there is an open task dialog. No vertex selected - No vertex selected + Intet punkt markeret @@ -9679,7 +9667,7 @@ there is an open task dialog. Leader - Leader + Leder @@ -9699,32 +9687,32 @@ there is an open task dialog. Break1 - Break1 + Opdeling 1 Break2 - Break2 + Opdeling 2 Phantom - Phantom + Fantom Stitch1 - Stitch1 + Syning1 Stitch2 - Stitch2 + Syning2 Chain - Chain + Kæde @@ -9732,7 +9720,7 @@ there is an open task dialog. Position Section View - Position Section View + Placér tværsnitsvisning @@ -9741,11 +9729,11 @@ there is an open task dialog. - Click this tool<br> - optional: select one edge in the section view and it's corresponding vertex in the base view<br> Click this tool - Orthogonally align a section view with its source view:<br> - - Select a single section view<br> - - Click this tool<br> - - optional: select one edge in the section view and it's corresponding vertex in the base view<br> - Click this tool + Ortogonal flugtning af tværsnitsvisning med kildevisning<br> + - Vælg et enkelt tværsnit<br> + - Tryk på dette værktøj<br> + - valgfrit: vælg en linje i tværsnitsvisningen og dets korresponderende punkt i en grundvisning<br> + Tryk på dette værktøj @@ -9759,7 +9747,7 @@ there is an open task dialog. Insert 'n×' Prefix - Insert 'n×' Prefix + Indsæt 'n×'-præfiks @@ -9793,15 +9781,15 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View - Insert Broken View + Indsæt opdelt visning diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_de.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_de.ts index 589a3926a9..ef11805ce7 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_de.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_de.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Aktive (3D-)Ansicht einfügen @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Objekt des Arbeitsbereichs BIM einfügen - + Insert a View of a Section Plane from BIM Workbench Fügt die Ansicht einer Schnittebene aus dem Arbeitsbereich BIM ein @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Hinweisfeld einfügen @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Ausschnittsgruppe einfügen @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Ansicht zu Ausschnittsgruppe hinzufügen @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Ansicht aus Ausschnittsgruppe entfernen @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Komplexe Schnittansicht einfügen - + Insert a Complex Section View Eine komplexe Schnittansicht einfügen @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Detailansicht einfügen @@ -343,17 +343,17 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Objekt des Arbeitsbereichs Draft einfügen - + Insert a View of a Draft Workbench object Fügt die Ansicht eines Objekts des Arbeitsbereichs Draft ein @@ -361,22 +361,22 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawExportPageDXF - + File Datei - + Export Page as DXF - Seite als DXF-Datei exportieren + Blatt als DXF-Datei exportieren - + Save DXF file DXF-Datei speichern - + DXF (*.dxf) DXF (*.dxf) @@ -384,14 +384,14 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawExportPageSVG - + File Datei - + Export Page as SVG - Seite als SVG-Datei exportieren + Blatt als SVG-Datei exportieren @@ -1475,12 +1475,12 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Fläche mit einer geometrischen Schraffur versehen @@ -1488,12 +1488,12 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Fläche mit Muster aus einer Bilddatei schraffieren @@ -1527,28 +1527,28 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Bitmap-Grafik einfügen - - + + Insert Bitmap from a file into a page Grafik aus einer Bitmap-Datei in eine Seite einfügen - + Select an Image File Eine Bilddatei auswählen - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Bilddateien (*.jpg *.jpeg *.png *.bmp);;Alle Dateien (*) @@ -1621,12 +1621,12 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Neues Zeichnungsblatt aus der Standardvorlage erstellen @@ -1634,22 +1634,22 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Neues Zeichnungsblatt aus einer Vorlage erstellen - + Select a Template File Wähle eine Vorlagendatei - + Template (*.svg) Vorlage (*.svg) @@ -1657,25 +1657,25 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages - Alle Seiten drucken + Alle Blätter drucken CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Form projizieren... @@ -1683,17 +1683,17 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Ansichtengruppe einfügen - + Insert multiple linked views of drawable object(s) Mehrere verbundene Ansichten der ausgewählten Bauteile einfügen @@ -1727,14 +1727,14 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page - Seite neu zeichnen + Blatt neu zeichnen @@ -1753,22 +1753,22 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Eine einfache oder komplexe Schnittansicht einfügen - + Section View Schnittansicht - + Complex Section Komplexe Schnittansicht @@ -1776,12 +1776,12 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Schnittansicht einfügen @@ -1802,17 +1802,17 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Tabellenansicht einfügen - + Insert View to a spreadsheet Ansicht in eine Tabelle einfügen @@ -1923,17 +1923,17 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol SVG-Zeichnungselement einfügen - + Insert symbol from an SVG file Zeichnungselement aus einer SVG-Datei einfügen @@ -1941,13 +1941,13 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Ansichtsrahmen ein- oder ausschalten @@ -1981,31 +1981,31 @@ Ein Linksklick auf einen leeren Bereich bestätigt das aktuelle Maß. Ein Rechts CmdTechDrawView - + TechDraw TechDraw - + Insert View Ansicht einfügen - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - Fügt eine Ansicht in die aktuelle Seite ein. + Fügt eine Ansicht auf dem aktuellen Zeichnungsblatt ein. Ausgewählte Objekte, Tabellen oder Schnittebenen des Arbeitsbereichs Arch werden hinzugefügt. Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddatei. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Soll eine Ansicht von vorhandenen Objekten eingefügt werden, müssen diese vor dem Aufruf dieses Werkzeugs ausgewählt werden. Ohne Auswahl öffnet sich ein Datei-Browser zum Einfügen einer SVG- oder Bilddatei. - + Do not show this message again Diese Nachricht nicht erneut anzeigen @@ -2026,77 +2026,77 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Command - - + + Drawing create page Zeichnungsseite erstellen - + Create BIM View BIM-Ansicht erstellen - + Create view Ansicht erstellen - + Create broken view Erzeuge eine unterbrochene Ansicht - + Create Projection Group Ansichtengruppe erstellen - + Create Clip Ausschnitt erstellen - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF - Seite als DXF speichern + Zeichnungsblatt als DXF speichern - - + + Create Symbol Symbol erstellen - + Create DraftView Draft Ansicht erstellen - + Create ArchView BIM-Ansicht erstellen - - + + Create spreadsheet view Kalkulationstabellenansicht erstellen - + Save page to dxf - Seite als dxf speichern + Zeichnungsblatt als dxf speichern @@ -2294,33 +2294,33 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Maß erstellen - + Create Hatch Schraffur erstellen - + Update Hatch Schraffur aktualisieren - + Remove old Hatch Alte Schraffur entfernen - + Create GeomHatch Geometrische Schraffur erstellen - - + + Create Image Bild erstellen - + Drag Balloon Hinweisfeld ziehen @@ -2330,12 +2330,12 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Maß ziehen - + Create Balloon Hinweisfeld erstellen - + Create ActiveView Aktuelle Ansicht erstellen @@ -2967,103 +2967,103 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Falsche Auswahl - - + + No Shapes, Groups or Links in this selection Keine Formen, Gruppen oder Link-Objekte in dieser Auswahl - + Empty selection Leere Auswahl - + Select a SVG or Image file to open SVG oder Bilddatei zum Öffnen auswählen - + SVG or Image files SVG- oder Bilddateien - + Please select objects to break or a base view and break definition objects. Bitte Objekte auswählen, die unterbrochen werden sollen, oder eine Basis-Ansicht und definierende Unterbrechungs-Objekte. - + No Break objects found in this selection Kein Unterbrechungs-Objekt in der Auswahl gefunden - - + + Select at least 1 DrawViewPart object as Base. Mindestens 1 DrawViewPart-Objekt als Basis auswählen. - + I do not know what base view to use. Ich weiß nicht, welche Basisansicht verwendet werden soll. - + No Base View, Shapes, Groups or Links in this selection Diese Auswahl enthält keine Basisansicht, Formen, Gruppen oder Link-Objekte - + No profile object found in selection Kein Profilobjekt in der Auswahl gefunden - + Please select only 1 BIM Section. Bitte nur einen Schnitt aus dem Arbeitsbereich BIM auswählen. - + No BIM Sections in selection. Es wurde kein Schnitt aus dem Arbeitsbereich BIM ausgewählt. - - - + + + - - - - + + + + Incorrect selection @@ -3071,104 +3071,104 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate - + Select an object first Zuerst ein Objekt auswählen - + Too many objects selected Zu viele Objekte ausgewählt - + Create a page first. - Zuerst eine Seite erstellen. + Zuerst ein Zeichnungsblatt erstellen. - + No View of a Part in selection. Keine Teileansicht in der Auswahl. - + Select one Clip group and one View. Wähle eine Ausschnittsgruppe und eine Ansicht. - + Select exactly one View to add to group. Genau eine Ansicht auswählen, die zur Gruppe hinzugefügt werden soll. - + Select exactly one Clip group. Genau eine Ausschnittsgruppe auswählen. - + Clip and View must be from same Page. - Ausschnitt und Ansicht müssen von der selben Seite sein. + Ausschnitt und Ansicht müssen von demselben Zeichnungsblatt sein. - + Select exactly one View to remove from Group. Genau eine Ansicht auswählen, die aus der Gruppe entfernt werden soll. - + View does not belong to a Clip Ansicht gehört nicht zu einem Ausschnitt - + Choose an SVG file to open Eine SVG-Datei zum Öffnen auswählen - + Scalable Vector Graphic Skalierbare Vektorgrafik - - + + All Files Alle Dateien - + Select at least one object. Mindestens ein Objekt auswählen. - + Select exactly one Spreadsheet object. Genau ein Tabellen-Objekt auswählen. - + No Drawing View Keine Zeichnungsansicht - + Open Drawing View before attempting export to SVG. Zeichnungsansicht vor dem Export als SVG öffnen. - + Can not export selection Kann die Auswahl nicht exportieren - + Page contains DrawViewArch which will not be exported. Continue? - Seite enthält DrawViewArch, die nicht exportiert werden wird. Fortfahren? + Zeichnungsblatt enthält ein DrawViewArch-Objekt, das nicht exportiert wird. Fortfahren? @@ -3181,8 +3181,8 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate B-Spline Warnung - - + + @@ -3307,9 +3307,9 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate - - - + + + @@ -3358,9 +3358,9 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate - - - + + + @@ -3550,43 +3550,43 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Kein %1 in der Auswahl - + Replace Hatch? Schraffur ersetzen? - + Some Faces in selection are already hatched. Replace? Einige Flächen in der Auswahl sind bereits schraffiert. Ersetzen? - + No TechDraw Page - Keine TechDraw-Seite + Kein TechDraw-Zeichnungsblatt - + Need a TechDraw Page for this command - Benötige eine TechDraw-Seite für diesen Befehl + Dieser Befehl benötigt ein TechDraw-Zeichnungsblatt - + Select a Face first Zuerst eine Fläche auswählen - + No TechDraw object in selection Diese Auswahl enthält kein TechDraw-Objekt - + Create a page to insert. Ein Zeichnungsblatt zum Einfügen erstellen. - - + + No Faces to hatch in this selection Diese Auswahl enthält keine zu schraffierende Flächen @@ -3594,7 +3594,7 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate No page found - Keine Seite gefunden + Kein Zeichnungsblatt gefunden @@ -3607,28 +3607,28 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Das Dokument enthält keine Zeichnungsblätter. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Alle Dateien (*.*) - + Export Page As PDF Seite als PDF-Datei exportieren - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Seite als SVG exportieren @@ -3687,27 +3687,27 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Ein Symbol auswählen - + ActiveView to TD View Aktive Ansicht wird TD-Ansicht - + No Main Window Kein Hautpfenster - + Can not find the main window Kann das Hauptfenster nicht finden - + No 3D Viewer Kein 3D-Viewer - + Can not find a 3D viewer Kann keinen 3D-Viewer finden @@ -3985,12 +3985,12 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Breit: %4 - + Create Face Hatch Flächenschraffur erstellen - + Edit Face Hatch Flächenschraffur bearbeiten @@ -4076,7 +4076,7 @@ Ohne Auswahl öffnet sich ein Datei-Browser zur Auswahl einer SVG- oder Bilddate Parameterfehler - + Document Name: Dokumentname: @@ -4143,7 +4143,7 @@ it has a weld symbol that would become broken. The page is not empty, therefore the following referencing objects might be lost: - Die Seite ist nicht leer, deshalb könnten die + Das Zeichnungsblatt ist nicht leer, deshalb könnten die folgenden Referenzobjekte verloren gehen: @@ -4243,12 +4243,12 @@ it has a tile weld that would become broken. From Page - Ausgangsseite + Ausgangsblatt To Page - Zielseite + Zielblatt @@ -4419,7 +4419,7 @@ Dieses Verzeichnis wird für die Symbolauswahl verwendet. Page Chooser - Seitenauswahl + Blattauswahl @@ -4673,6 +4673,11 @@ Dann muss das Kachellimit erhöht werden. Include Cut Line in Section Annotation Schnittlinie in die Beschriftung des Schnittes einbeziehen + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4778,11 +4783,6 @@ Dann muss das Kachellimit erhöht werden. Length of horizontal portion of Balloon leader Länge des horizontalen Anteils der Linie des Hinweisfeldes - - - Ballon Leader Kink Length - Knicklänge der Linie des Hinweisfeldes - Length of balloon leader line kink @@ -5402,7 +5402,7 @@ Dies kann die Reaktionszeit verlangsamen. Keep Page Up To Date - Seite aktuell halten + Zeichnungsblatt aktuell halten @@ -5466,7 +5466,7 @@ für Ansichtengruppen verteilen Page - Seite + Blatt @@ -5596,7 +5596,7 @@ für Ansichtengruppen verteilen Set ShowGrid property to true on new Pages. - Setzt die Eigenschaft ShowGrid für neue Seiten auf true. + Setzt die Eigenschaft ShowGrid für neue Zeichnungsblätter auf true. @@ -5611,7 +5611,7 @@ für Ansichtengruppen verteilen Distance between Page grid lines. - Abstand zwischen den Rasterlinien der Seite. + Abstand zwischen den Rasterlinien des Zeichnungsblattes. @@ -5661,22 +5661,22 @@ für Ansichtengruppen verteilen Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Aktivieren, wenn Ansichten während des Ziehens in der richtigen Lage einrasten sollen. Snap View Alignment - Snap View Alignment + Ausrichtung der Ansichten einrasten View Snapping Factor - View Snapping Factor + Einrastfaktor für Ansichten When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Während des Ziehens einer Ansicht, wird sie in der richtigen Lage einrasten, wenn sie sich innerhalb dieses Bruchteils der Ansichtsgröße der korrekten Ausrichtung befindet. @@ -5809,7 +5809,7 @@ Schnell, aber das Ergebnis ist eine Sammlung von kurzen geraden Linien. Page Scale - Seitenmaßstab + Blattmaßstab @@ -5905,90 +5905,80 @@ Schnell, aber das Ergebnis ist eine Sammlung von kurzen geraden Linien. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Automatisches Aktualisieren umschalten - + Toggle &Frames Rahmen umschalten - + &Export SVG &Exportiere SVG - + Export DXF Export nach DXF - + Export PDF PDF exportieren - + Print All Pages - Alle Seiten drucken + Alle Blätter drucken - + Different orientation Andere Ausrichtung - + The printer uses a different orientation than the drawing. Do you want to continue? Der Drucker verwendet eine andere Ausrichtung als die Zeichnung. Trotzdem fortfahren? - + Different paper size Anderes Papierformat - + The printer uses a different paper size than the drawing. Do you want to continue? Der Drucker verwendet eine andere Papiergröße als die Zeichnung. Möchten Sie fortfahren? - - Opening file failed - Fehler beim Öffnen der Datei - - - - Can not open file %1 for writing. - Datei %1 kann nicht zum Schreiben geöffnet werden. - - - + Save DXF file DXF-Datei speichern - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file PDF-Datei speichern - + PDF (*.pdf) PDF (*.pdf) - + Selected: Ausgewählt: @@ -6328,7 +6318,7 @@ Do you want to continue? Scale Page/Auto/Custom - Maßstab wie Seite / Automatisch / Benutzerdefiniert + Maßstab wie Zeichnungsblatt/Automatisch/Benutzerdefiniert @@ -6953,9 +6943,9 @@ Do you want to continue? Automatic: if the detail view is larger than the page, it will be scaled down to fit into the page Custom: custom scale factor is used - Seite: Der Maßstab der Seite wird verwendet -Automatisch: Wenn die Detailansicht größer ist als die Seite, - wird sie, auf die Seite passend, verkleinert + Blatt: Der Maßstab des Zeichnungsblattes wird verwendet +Automatisch: Wenn die Detailansicht größer ist als das Zeichnungsblatt, + wird sie, auf das Blatt passend, verkleinert Benutzerdefiniert: Der benutzerdefinierte Maßstab wird verwendet @@ -7708,7 +7698,7 @@ Weitere Punkte auswählen, um Liniensegmente zu erhalten. Scale Page/Auto/Custom - Maßstab wie Seite / Automatisch / Benutzerdefiniert + Maßstab wie Zeichnungsblatt/Automatisch/Benutzerdefiniert @@ -8135,7 +8125,7 @@ mit dem vorgegebenen X/Y-Abstand Scale Page/Auto/Custom - Maßstab wie Seite / Automatisch / Benutzerdefiniert + Maßstab wie Zeichnungsblatt/Automatisch/Benutzerdefiniert @@ -8533,7 +8523,7 @@ mit dem vorgegebenen X/Y-Abstand TechDraw_ComplexSection - + Insert complex Section View Komplexe Schnittansicht einfügen @@ -8594,7 +8584,7 @@ mit dem vorgegebenen X/Y-Abstand TechDraw_SectionView - + Insert simple Section View Einfache Schnittansicht einfügen @@ -9845,13 +9835,13 @@ noch ein Aufgaben-Dialog geöffnet ist. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Unterbrochene Ansicht einfügen diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_el.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_el.ts index dc38990ec8..7c401329ad 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_el.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_el.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Τεχνική Σχεδίαση - + Insert Active View (3D View) Εισαγωγή Ενεργής Προβολής (3D Προβολή) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Τεχνική Σχεδίαση - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Τεχνική Σχεδίαση - + Insert Balloon Annotation Εισαγωγή μπαλόνι σχολιασμού @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Τεχνική Σχεδίαση - + Insert Clip Group Insert Clip Group @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Τεχνική Σχεδίαση - + Add View to Clip Group Προσθήκη Προβολής στην Ομάδα Αποκοπής @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Τεχνική Σχεδίαση - + Remove View from Clip Group Remove View from Clip Group @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Τεχνική Σχεδίαση - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Τεχνική Σχεδίαση - + Insert Detail View Insert Detail View @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Τεχνική Σχεδίαση - + Insert Draft Workbench Object Insert Draft Workbench Object - + Insert a View of a Draft Workbench object Insert a View of a Draft Workbench object @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Αρχείο - + Export Page as DXF Εξαγωγή σελίδας ως DXF - + Save DXF file Αποθήκευση αρχείου DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Αρχείο - + Export Page as SVG Εξαγωγή σελίδας ως SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Τεχνική Σχεδίαση - + Apply Geometric Hatch to Face Εφαρμογή Γεωμετρικού Μοτίβου Διαγράμμισης Επιφάνειας σε Όψη @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Τεχνική Σχεδίαση - + Hatch a Face using Image File Hatch a Face using Image File @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Τεχνική Σχεδίαση - + Insert Bitmap Image Insert Bitmap Image - - + + Insert Bitmap from a file into a page Insert Bitmap from a file into a page - + Select an Image File Επιλέξτε ένα Αρχείο Εικόνας - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Τεχνική Σχεδίαση - + Insert Default Page Insert Default Page @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Τεχνική Σχεδίαση - + Insert Page using Template Insert Page using Template - + Select a Template File Select a Template File - + Template (*.svg) Template (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Τεχνική Σχεδίαση - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Τεχνική Σχεδίαση - + Project shape... Προβάλετε σχήμα... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Τεχνική Σχεδίαση - + Insert Projection Group Εισαγωγή Ομάδας Προβολών - + Insert multiple linked views of drawable object(s) Εισαγάγετε πολλές συνδεδεμένες προβολές του σχεδιασιμού αντικειμένων @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Τεχνική Σχεδίαση - + Redraw Page Redraw Page @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Τεχνική Σχεδίαση - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Τεχνική Σχεδίαση - + Insert Section View Insert Section View @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Τεχνική Σχεδίαση - + Insert Spreadsheet View Εισαγωγή Προβολής Υπολογιστικού Φύλλου - + Insert View to a spreadsheet Εισαγωγή Προβολής σε υπολογιστικό φύλλο @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Τεχνική Σχεδίαση - + Insert SVG Symbol Εισαγωγή συμβόλου SVG - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Τεχνική Σχεδίαση - - + + Turn View Frames On/Off Turn View Frames On/Off @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Τεχνική Σχεδίαση - + Insert View Insert View - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Create BIM View - + Create view Create view - + Create broken view Create broken view - + Create Projection Group Create Projection Group - + Create Clip Create Clip - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Create Symbol - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Save page to dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Create Dimension - + Create Hatch Create Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Create Image - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Λάθος επιλογή - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Κενή επιλογή - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Επιλέξτε τουλάχιστον 1 Εξάρτημα Προβολής Σχεδίασης ως Βάση. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Επιλέξτε πρώτα ένα αντικείμενο - + Too many objects selected Επιλέχθηκαν πάρα πολλά αντικείμενα - + Create a page first. Δημιουργήστε πρώτα μια σελίδα. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Select one Clip group and one View. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Select exactly one Clip group. - + Clip and View must be from same Page. Το παράθυρο Αποκοπής και η Προβολή πρέπει να είναι από την ίδια Σελίδα. - + Select exactly one View to remove from Group. Select exactly one View to remove from Group. - + View does not belong to a Clip Η Προβολή δεν ανήκει σε κάποιο παράθυρο Αποκοπής - + Choose an SVG file to open Επιλέξτε ένα αρχείο SVG για άνοιγμα - + Scalable Vector Graphic Αρχείο Κλιμακωτών Διανυσματικών Γραφικών - - + + All Files Όλα τα Αρχεία - + Select at least one object. Επιλέξτε τουλάχιστον ένα αντικείμενο. - + Select exactly one Spreadsheet object. Επιλέξτε ακριβώς ένα Υπολογιστικό Φύλλο. - + No Drawing View Καμία Προβολή Σχεδίασης - + Open Drawing View before attempting export to SVG. Ανοίξτε την Προβολή Σχεδίασης πριν επιχειρήσετε να κάνετε εξαγωγή σε SVG. - + Can not export selection Δεν είναι δυνατή η επιλογή εξαγωγή - + Page contains DrawViewArch which will not be exported. Continue? Η σελίδα περιέχει Σχέδιο Προβολήσ Arch που δεν θα εξαχθούν. Να συνεχίσει; @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.BSpline Curve Warning - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Replace Hatch? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page Δεν υπάρχει καμία Σελίδα Τεχνικής Σχεδίασης - + Need a TechDraw Page for this command Απαιτείται μια Σελίδα Τεχνικής Σχεδίασης για αυτήν την εντολή - + Select a Face first Επιλέξτε πρώτα μια Όψη - + No TechDraw object in selection Δεν υπάρχει κανένα αντικείμενο Τεχνικής Σχεδίασης στην επιλογή - + Create a page to insert. Δημιουργήστε μια σελίδα για να εισάγετε. - - + + No Faces to hatch in this selection No Faces to hatch in this selection @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Όλα τα αρχεία (*.*) - + Export Page As PDF Εξαγωγή Σελίδας ως PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Εξαγωγή Σελίδας ως SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Select a symbol - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5852,91 +5852,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Εναλλαγή & Διατήρηση Ενημερωμένων - + Toggle &Frames Toggle &Frames - + &Export SVG &Εξαγωγή SVG - + Export DXF Εξαγωγή DXF - + Export PDF Εξαγωγή σε PDF - + Print All Pages Print All Pages - + Different orientation Διαφορετικός προσανατολισμός - + The printer uses a different orientation than the drawing. Do you want to continue? Ο εκτυπωτής χρησιμοποιεί διαφορετικό προσανατολισμό από το σχέδιο. Θέλετε να συνεχίσετε; - + Different paper size Διαφορετικό μέγεθος χαρτιού - + The printer uses a different paper size than the drawing. Do you want to continue? Ο εκτυπωτής χρησιμοποιεί διαφορετικό μέγεθος χαρτιού από το σχέδιο. Θέλετε να συνεχίσετε; - - Opening file failed - Αποτυχία ανοίγματος αρχείου - - - - Can not open file %1 for writing. - Can not open file %1 for writing. - - - + Save DXF file Αποθήκευση αρχείου DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Επιλεγμένα: @@ -8487,7 +8477,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8548,7 +8538,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Τεχνική Σχεδίαση - - + + Insert Broken View Εισαγωγή Σπασμένης Προβολής diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-AR.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-AR.ts index bef5dfc63f..806be473a1 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-AR.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-AR.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw DibujoTécnico - + Insert Active View (3D View) Insertar vista activa (Vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw DibujoTécnico - + Insert BIM Workbench Object Insertar objeto de banco de trabajo BIM - + Insert a View of a Section Plane from BIM Workbench Insertar una vista de un plano de sección desde el banco de trabajo BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw DibujoTécnico - + Insert Balloon Annotation Insertar anotación de globo @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw DibujoTécnico - + Insert Clip Group Insertar grupo de vistas de recorte @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw DibujoTécnico - + Add View to Clip Group Agregar vista al grupo de vistas de recorte @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw DibujoTécnico - + Remove View from Clip Group Eliminar vista del grupo de vistas de recorte @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw DibujoTécnico - + Insert Complex Section View Insertar vista de sección compleja - + Insert a Complex Section View Insertar una vista de sección compleja @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw DibujoTécnico - + Insert Detail View Insertar vista de detalle @@ -343,17 +343,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawDraftView - + TechDraw DibujoTécnico - + Insert Draft Workbench Object Insertar objeto del banco de trabajo Draft - + Insert a View of a Draft Workbench object Inserta una vista de un objeto del entorno de trabajo Draft @@ -361,22 +361,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawExportPageDXF - + File Archivo - + Export Page as DXF Exportar página como DXF - + Save DXF file Guardar archivo DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawExportPageSVG - + File Archivo - + Export Page as SVG Exportar página como SVG @@ -1417,12 +1417,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawGeometricHatch - + TechDraw DibujoTécnico - + Apply Geometric Hatch to Face Aplicar Geometría Rayado a Cara @@ -1430,12 +1430,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawHatch - + TechDraw DibujoTécnico - + Hatch a Face using Image File Rayar una cara usando un archivo de imagen @@ -1469,28 +1469,28 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawImage - + TechDraw DibujoTécnico - + Insert Bitmap Image Insertar imagen Bitmap - - + + Insert Bitmap from a file into a page Inserta un archivo Bitmap en una página - + Select an Image File Seleccione un archivo de imagen - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Archivos de imagen (*.jpg *.jpeg *.png *.bmp);;Todos los archivos (*) @@ -1563,12 +1563,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPageDefault - + TechDraw DibujoTécnico - + Insert Default Page Insertar página por defecto @@ -1576,22 +1576,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPageTemplate - + TechDraw DibujoTécnico - + Insert Page using Template Insertar página usando Plantilla - + Select a Template File Seleccione un archivo de Plantilla - + Template (*.svg) Plantilla (*.svg) @@ -1599,12 +1599,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPrintAll - + TechDraw DibujoTécnico - + Print All Pages Imprimir todas las páginas @@ -1612,12 +1612,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawProjectShape - + TechDraw DibujoTécnico - + Project shape... Formas del proyecto... @@ -1625,17 +1625,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawProjectionGroup - + TechDraw DibujoTécnico - + Insert Projection Group Insertar Grupo de proyección - + Insert multiple linked views of drawable object(s) Inserta múltiples vistas vinculadas de objeto(s) dibujable(s) @@ -1669,12 +1669,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawRedrawPage - + TechDraw DibujoTécnico - + Redraw Page Redibujar página @@ -1695,22 +1695,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSectionGroup - + TechDraw DibujoTécnico - + Insert a simple or complex Section View Inserta una vista de sección simple o compleja - + Section View Vista de Sección - + Complex Section Sección compleja @@ -1718,12 +1718,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSectionView - + TechDraw DibujoTécnico - + Insert Section View Insertar Vista de corte @@ -1744,17 +1744,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSpreadsheetView - + TechDraw DibujoTécnico - + Insert Spreadsheet View Insertar Vista de Hoja de cálculo - + Insert View to a spreadsheet Inserta una hoja de cálculo a la Vista @@ -1865,17 +1865,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSymbol - + TechDraw DibujoTécnico - + Insert SVG Symbol Insertar símbolo SVG - + Insert symbol from an SVG file Inserta un símbolo desde un archivo SVG @@ -1883,13 +1883,13 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawToggleFrame - + TechDraw DibujoTécnico - - + + Turn View Frames On/Off Encender/apagar marcos de Vista @@ -1923,17 +1923,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawView - + TechDraw DibujoTécnico - + Insert View Insertar Vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Objetos, hojas de cálculo o planos de sección del banco de trabajo Arch selecc Sin una selección, un navegador de archivos le permitirá seleccionar un archivo de imagen o un SVG. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Si desea insertar una vista de objetos existentes, por favor selecciónelos antes de invocar esta herramienta. Sin una selección, se abrirá un navegador de archivos para insertar un SVG o un archivo de imagen. - + Do not show this message again No mostrar este mensaje de nuevo @@ -1968,75 +1968,75 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Command - - + + Drawing create page Página para creación de dibujo - + Create BIM View Crear vista BIM - + Create view Crear vista - + Create broken view Crear vista interrumpida - + Create Projection Group Crear Grupo de proyección - + Create Clip Crear Recorte - + ClipGroupAdd Añadir grupo de clips - + ClipGroupRemove Eliminar grupo de clips - + Save page to DXF Guardar página como DXF - - + + Create Symbol Crear símbolo - + Create DraftView Crear vista de Draft - + Create ArchView Crear vista de Arq. - - + + Create spreadsheet view Crear vista de hoja de cálculo - + Save page to dxf Guardar página como dxf @@ -2236,33 +2236,33 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Crear Cota - + Create Hatch Crear rayado - + Update Hatch Actualizar rayado - + Remove old Hatch Eliminar rayados antiguos - + Create GeomHatch Crear rayado geométrico - - + + Create Image Crear imagen - + Drag Balloon Arrastrar globo @@ -2272,12 +2272,12 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Arrastrar Cota - + Create Balloon Crear globo - + Create ActiveView Crear vista activa @@ -2909,103 +2909,103 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selección Incorrecta - - + + No Shapes, Groups or Links in this selection No hay Formas, Grupos o Enlaces en esta selección - + Empty selection Selección vacía - + Select a SVG or Image file to open Seleccione un archivo SVG o imagen para abrir - + SVG or Image files SVG o archivos de imagen - + Please select objects to break or a base view and break definition objects. Por favor, seleccione objetos para romper o una vista base y objetos de definición de ruptura. - + No Break objects found in this selection No se han encontrado objetos de ruptura en esta selección - - + + Select at least 1 DrawViewPart object as Base. Seleccione al menos 1 objeto de DibujoVistaPieza como Base. - + I do not know what base view to use. No sé qué vista base utilizar. - + No Base View, Shapes, Groups or Links in this selection No hay vista base, formas, grupos o enlaces en esta selección - + No profile object found in selection No se encontró ningún objeto de perfil en la selección - + Please select only 1 BIM Section. Por favor, seleccione solamente 1 sección BIM. - + No BIM Sections in selection. No existen secciones BIM en esta selección. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv - + Select an object first Seleccione primero un objeto - + Too many objects selected Demasiados objetos seleccionados - + Create a page first. Cree una página de dibujo primero. - + No View of a Part in selection. No hay Vista de una Pieza en la selección. - + Select one Clip group and one View. Seleccione un Grupo de recorte y una Vista. - + Select exactly one View to add to group. Seleccione exactamente una Vista para agregar al grupo. - + Select exactly one Clip group. Seleccione exactamente un grupo de Recorte. - + Clip and View must be from same Page. Recorte y Vista deben ser de la misma página. - + Select exactly one View to remove from Group. Seleccione exactamente una Vista para eliminar del Grupo. - + View does not belong to a Clip La Vista no pertenece a un Recorte - + Choose an SVG file to open Seleccionar un archivo SVG para abrir - + Scalable Vector Graphic Gráfico vectorial escalable - - + + All Files Todos los Archivos - + Select at least one object. Seleccione al menos un objeto. - + Select exactly one Spreadsheet object. Seleccione exactamente un objeto de hoja de cálculo. - + No Drawing View Sin Vista de Dibujo - + Open Drawing View before attempting export to SVG. Abra la Vista de Dibujo antes de intentar exportar a SVG. - + Can not export selection No se puede exportar la selección - + Page contains DrawViewArch which will not be exported. Continue? La página contiene DibujoVistaArq que no será exportada. ¿Desea continuar? @@ -3123,8 +3123,8 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Advertencia de Curva BSpline - - + + @@ -3249,9 +3249,9 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv - - - + + + @@ -3300,9 +3300,9 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv - - - + + + @@ -3492,43 +3492,43 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv No hay %1 en la selección - + Replace Hatch? ¿Reemplazar Rayado? - + Some Faces in selection are already hatched. Replace? Algunas Caras en la selección ya están rayadas. ¿Desea reemplazarlas? - + No TechDraw Page No hay página de DibujoTécnico - + Need a TechDraw Page for this command Necesita una página DibujoTécnico para este comando - + Select a Face first Seleccione una Cara Primero - + No TechDraw object in selection Ningún objeto DibujoTécnico en la selección - + Create a page to insert. Crear una página para insertar. - - + + No Faces to hatch in this selection No hay Caras para rayar en esta selección @@ -3549,28 +3549,28 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv No hay Páginas de Dibujo en el documento. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Todos los archivos (*.*) - + Export Page As PDF Exportar Página Como PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportar página como SVG @@ -3629,27 +3629,27 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Seleccione un símbolo - + ActiveView to TD View VistaActiva a Vista TD - + No Main Window Sin ventana principal - + Can not find the main window No se puede encontrar la ventana principal - + No 3D Viewer Sin visor 3D - + Can not find a 3D viewer No se puede encontrar un visor 3D @@ -3927,12 +3927,12 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv grueso: %4 - + Create Face Hatch Crear rayado de cara - + Edit Face Hatch Editar rayado de cara @@ -4018,7 +4018,7 @@ Sin una selección, un navegador de archivos le permitirá seleccionar un archiv Error de parámetro - + Document Name: Nombre del documento: @@ -4620,6 +4620,11 @@ Por tanto, necesitará aumentar el límite de recuadros. Include Cut Line in Section Annotation Incluye línea de corte en la anotación de sección + + + Balloon Leader Kink Length + Longitud de pliegue de la flecha de globo + Broken View Break Type @@ -4725,11 +4730,6 @@ Por tanto, necesitará aumentar el límite de recuadros. Length of horizontal portion of Balloon leader Longitud de la parte horizontal de directriz del Globo - - - Ballon Leader Kink Length - Longitud de pliegue de la directriz de globo - Length of balloon leader line kink @@ -5606,22 +5606,22 @@ para Grupos de Proyección Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Marque esta casilla si desea que las vistas se ajusten a la alineación cuando se arrastre. Snap View Alignment - Snap View Alignment + Ajustar vistas en la alineación View Snapping Factor - View Snapping Factor + Ver factor de ajuste When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Cuando arrastra una vista, si está dentro de esta fracción del tamaño de la vista de la alineación correcta, se ajustará en la alineación. @@ -5850,91 +5850,81 @@ Rápido, pero el resultado es una colección de líneas rectas cortas. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Alternar &Mantener Actualizado - + Toggle &Frames Alternar &Marcos - + &Export SVG &Exportar SVG - + Export DXF Exportar DXF - + Export PDF Exportar a PDF - + Print All Pages Imprimir todas las páginas - + Different orientation Orientación diferente de la hoja - + The printer uses a different orientation than the drawing. Do you want to continue? La impresora utiliza una orientación de papel distinta a la del dibujo. ¿Desea continuar? - + Different paper size Tamaño de papel diferente - + The printer uses a different paper size than the drawing. Do you want to continue? La impresora usa un tamaño de papel distinto al del dibujo. ¿Desea continuar? - - Opening file failed - No se pudo abrir el archivo - - - - Can not open file %1 for writing. - No se puede abrir el archivo %1 para escritura. - - - + Save DXF file Guardar archivo DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Guardar archivo PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Seleccionado: @@ -8485,7 +8475,7 @@ usando el espacio X/Y dado TechDraw_ComplexSection - + Insert complex Section View Insertar vista de sección compleja @@ -8546,7 +8536,7 @@ usando el espacio X/Y dado TechDraw_SectionView - + Insert simple Section View Insertar vista de sección simple @@ -9796,13 +9786,13 @@ hay un diálogo de tareas abiertas. CmdTechDrawBrokenView - + TechDraw DibujoTécnico - - + + Insert Broken View Insertar vista interrumpida diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-ES.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-ES.ts index 08641dfb0c..9e668d00c6 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-ES.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_es-ES.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Insertar Vista Activa (Vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insertar objeto de banco de trabajo BIM - + Insert a View of a Section Plane from BIM Workbench Insertar una vista de un plano de sección desde el banco de trabajo BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Insertar anotación de globo @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Insertar grupo de vistas de recorte @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Añadir vista a grupo de vistas de recorte @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Quitar vista de grupo de vistas de recorte @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insertar vista de sección compleja - + Insert a Complex Section View Insertar una vista de sección compleja @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Insertar Vista de Detalle @@ -343,17 +343,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Insertar objeto del banco de trabajo Draft - + Insert a View of a Draft Workbench object Insertar una vista de un objeto del Entorno de Trabajo Draft @@ -361,22 +361,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawExportPageDXF - + File Archivo - + Export Page as DXF Exportar página como DXF - + Save DXF file Guardar archivo DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawExportPageSVG - + File Archivo - + Export Page as SVG Exportar página como SVG @@ -1417,12 +1417,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Aplicar geométrica de rallado a la cara @@ -1430,12 +1430,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Rayar una Cara usando un archivo de imagen @@ -1469,28 +1469,28 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Insertar imagen Bitmap - - + + Insert Bitmap from a file into a page Insertar Bitmap desde un archivo en una página - + Select an Image File Seleccione un archivo de imagen - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Archivos de imagen (*.jpg *.jpeg *.png *.bmp);;Todos los archivos (*) @@ -1563,12 +1563,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Insertar Página por Defecto @@ -1576,22 +1576,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Insertar Página usando Plantilla - + Select a Template File Seleccione un Archivo de Plantilla - + Template (*.svg) Plantilla (*.svg) @@ -1599,12 +1599,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Imprimir todas las páginas @@ -1612,12 +1612,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Formas del proyecto... @@ -1625,17 +1625,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Insertar Grupo de Proyección - + Insert multiple linked views of drawable object(s) Insertar vistas múltiples relacionadas de objeto(s) dibujable(s) @@ -1669,12 +1669,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Redibujar Página @@ -1695,22 +1695,22 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insertar una vista de sección simple o compleja - + Section View Vista de Sección - + Complex Section Sección Compleja @@ -1718,12 +1718,12 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Insertar Vista de Sección @@ -1744,17 +1744,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Insertar Vista de Hoja de Cálculo - + Insert View to a spreadsheet Insertar Vista a una hoja de cálculo @@ -1865,17 +1865,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Insertar símbolo SVG - + Insert symbol from an SVG file Insertar símbolo de un archivo SVG @@ -1883,13 +1883,13 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Activar o desactivar la vista marcos @@ -1923,17 +1923,17 @@ Al hacer clic izquierdo en el espacio vacío validará la cota actual. Al hacer CmdTechDrawView - + TechDraw TechDraw - + Insert View Insertar Vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Se agregarán objetos seleccionados, hojas de cálculo o planos de sección de B Sin una selección, un explorador de archivos le permite seleccionar un archivo SVG o de imagen. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Si desea insertar una vista de objetos existentes, por favor selecciónelos antes de invocar esta herramienta. Sin una selección, se abrirá un navegador de archivos para insertar un SVG o un archivo de imagen. - + Do not show this message again No volver a mostrar este mensaje @@ -1968,75 +1968,75 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Command - - + + Drawing create page Página de creación de dibujo - + Create BIM View Crear vista BIM - + Create view Crear vista - + Create broken view Crear vista rota - + Create Projection Group Crear Grupo de Proyección - + Create Clip Crear salto - + ClipGroupAdd Añadir grupo de clips - + ClipGroupRemove Eliminar grupo de clips - + Save page to DXF Guardar página como DXF - - + + Create Symbol Crear Símbolo - + Create DraftView Crear Vista Draft - + Create ArchView Crear vista de Arch - - + + Create spreadsheet view Crear vista de hoja de cálculo - + Save page to dxf Guardar página como dxf @@ -2236,33 +2236,33 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Crear Cota - + Create Hatch Crear Rayado - + Update Hatch Actualizar tramado - + Remove old Hatch Eliminar tramado antiguas - + Create GeomHatch Crear GeomHatch - - + + Create Image Crear imagen - + Drag Balloon Arrastrar Globo @@ -2272,12 +2272,12 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Arrastrar Cota - + Create Balloon Crear Globo - + Create ActiveView Crear Vista Activa @@ -2909,103 +2909,103 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selección incorrecta - - + + No Shapes, Groups or Links in this selection No existen Formas, Grupos o Relaciones en esta selección - + Empty selection Selección vacía - + Select a SVG or Image file to open Seleccione un archivo SVG o imagen para abrir - + SVG or Image files SVG o archivos de imagen - + Please select objects to break or a base view and break definition objects. Por favor, seleccione objetos para romper o una vista base y objetos de definición de ruptura. - + No Break objects found in this selection No se han encontrado objetos de ruptura en esta selección - - + + Select at least 1 DrawViewPart object as Base. Seleccione al menos 1 objeto de DrawViewPart como Base. - + I do not know what base view to use. No sé qué vista base utilizar. - + No Base View, Shapes, Groups or Links in this selection No hay vista base, formas, grupos o enlaces en esta selección - + No profile object found in selection No se encontró ningún objeto de perfil en la selección - + Please select only 1 BIM Section. Por favor, seleccione solamente 1 sección BIM. - + No BIM Sections in selection. No existen secciones BIM en esta selección. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo - + Select an object first Seleccione un objeto en primer lugar - + Too many objects selected Demasiados objetos seleccionados - + Create a page first. Cree una página de dibujo primero. - + No View of a Part in selection. Sin vista de un objeto Part en la selección. - + Select one Clip group and one View. Seleccione 1 grupo de recorte y 1 Vista. - + Select exactly one View to add to group. Seleccione exactamente una vista para añadir al grupo. - + Select exactly one Clip group. Seleccione exactamente un único grupo de Clip. - + Clip and View must be from same Page. Clip y vista deben ser de la misma página. - + Select exactly one View to remove from Group. Seleccione exactamente una vista para eliminar del grupo. - + View does not belong to a Clip La vista no pertenece a un Clip - + Choose an SVG file to open Seleccionar un archivo SVG para abrir - + Scalable Vector Graphic Gráfico vectorial escalable - - + + All Files Todos los Archivos - + Select at least one object. Seleccione al menos un objeto. - + Select exactly one Spreadsheet object. Seleccione exactamente un objeto de hoja de cálculo. - + No Drawing View Sin vistas de dibujo - + Open Drawing View before attempting export to SVG. Vista del dibujo abierta antes de intentar exportar a SVG. - + Can not export selection No se puede exportar selección - + Page contains DrawViewArch which will not be exported. Continue? La página contiene DrawViewArch que no será exportada. ¿Desea continuar? @@ -3123,8 +3123,8 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Aviso de Curva BSpline - - + + @@ -3249,9 +3249,9 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo - - - + + + @@ -3300,9 +3300,9 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo - - - + + + @@ -3492,43 +3492,43 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo No hay %1 en la selección - + Replace Hatch? ¿Reemplazar rayado? - + Some Faces in selection are already hatched. Replace? Algunas caras en la selección ya están sombreadas. ¿Desea reemplazarlas? - + No TechDraw Page No hay página de TechDraw - + Need a TechDraw Page for this command Necesita una página TechDraw para este comando - + Select a Face first Seleccione primero una cara - + No TechDraw object in selection Ningún objeto TechDraw en la selección - + Create a page to insert. Crear una página para insertar. - - + + No Faces to hatch in this selection No hay caras para sombrear en esta selección @@ -3549,28 +3549,28 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo No hay páginas de dibujo en el documento. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Todos los archivos (*.*) - + Export Page As PDF Exportar página como PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportar página como SVG @@ -3629,27 +3629,27 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Seleccione un símbolo - + ActiveView to TD View Vista activa a la vista TD - + No Main Window Sin ventana principal - + Can not find the main window No se puede encontrar la ventana principal - + No 3D Viewer Sin visor 3D - + Can not find a 3D viewer No se puede encontrar un visor 3D @@ -3927,12 +3927,12 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo grueso: %4 - + Create Face Hatch Crear tramado de cara - + Edit Face Hatch Editar sombreado de cara @@ -4018,7 +4018,7 @@ Sin una selección, un explorador de archivos le permite seleccionar un archivo Error de parámetro - + Document Name: Nombre del documento: @@ -4620,6 +4620,11 @@ Por tanto, necesitará aumentar el límite de recuadros. Include Cut Line in Section Annotation Incluir línea de corte en la sección de anotación + + + Balloon Leader Kink Length + Longitud de pliegue de la flecha de globo + Broken View Break Type @@ -4725,11 +4730,6 @@ Por tanto, necesitará aumentar el límite de recuadros. Length of horizontal portion of Balloon leader Longitud de la parte horizontal de la flecha del globo - - - Ballon Leader Kink Length - Longitud de pliegue de la flecha de globo - Length of balloon leader line kink @@ -5606,22 +5606,22 @@ para Grupos de Proyección Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Marque esta casilla si desea que las vistas se ajusten a la alineación cuando se arrastre. Snap View Alignment - Snap View Alignment + Ajustar vistas en la alineación View Snapping Factor - View Snapping Factor + Ver factor de ajuste When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Cuando arrastra una vista, si está dentro de esta fracción del tamaño de la vista de la alineación correcta, se ajustará en la alineación. @@ -5850,91 +5850,81 @@ Rápido, pero los resultados son una colección de líneas rectas cortas. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Alternar y mantener actualizados - + Toggle &Frames Alternar Marcos - + &Export SVG &Exportar SVG - + Export DXF Exportar DXF - + Export PDF Exportar en PDF - + Print All Pages Imprimir todas las páginas - + Different orientation Orientación diferente de la hoja - + The printer uses a different orientation than the drawing. Do you want to continue? La impresora utiliza una orientación de papel distinta a la del dibujo. ¿Desea continuar? - + Different paper size Tamaño de papel diferente - + The printer uses a different paper size than the drawing. Do you want to continue? La impresora usa un tamaño de papel distinto al del dibujo. ¿Desea continuar? - - Opening file failed - No se pudo abrir el archivo - - - - Can not open file %1 for writing. - No se puede abrir el archivo %1 para la escritura. - - - + Save DXF file Guardar archivo DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Guardar archivo PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Seleccionado: @@ -8193,7 +8183,7 @@ usando el Espaciado X/Y dado %n update(s) pending - %n actualización(es) pendiente(s) + %n actualización pendiente %n actualizaciones pendientes @@ -8485,7 +8475,7 @@ usando el Espaciado X/Y dado TechDraw_ComplexSection - + Insert complex Section View Insertar vista de sección compleja @@ -8546,7 +8536,7 @@ usando el Espaciado X/Y dado TechDraw_SectionView - + Insert simple Section View Insertar vista de sección simple @@ -9795,13 +9785,13 @@ hay un diálogo de tareas abierto. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insertar vista rota diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_eu.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_eu.ts index d2dafa03f7..ec0fa534e0 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_eu.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_eu.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Txertatu bista aktiboa (3D bista) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Txertatu bunbuilo-oharpena @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Txertatu ebaketa-taldea @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Gehitu bista ebaketa-taldeari @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Kendu bista ebaketa-taldetik @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Txertatu xehetasun-bista @@ -343,17 +343,17 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Txertatu Draft lan-mahaiaren objektua - + Insert a View of a Draft Workbench object Txertatu zirriborro lan-mahai objektu baten bista bat @@ -361,22 +361,22 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawExportPageDXF - + File Fitxategia - + Export Page as DXF Esportatu orrialdea DXF gisa - + Save DXF file Gorde DXF fitxategia - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawExportPageSVG - + File Fitxategia - + Export Page as SVG Esportatu orrialdea SVG gisa @@ -1417,12 +1417,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Aplikatu itzaleztadura geometrikoa aurpegi bati @@ -1430,12 +1430,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Itzaleztatu aurpegi bat irudi-fitxategi baten bidez @@ -1469,28 +1469,28 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Txertatu bitmap-irudia - - + + Insert Bitmap from a file into a page Txertatu fitxategi bateko bitmap bat orri batean - + Select an Image File Hautatu irudi-fitxategi bat - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Irudi-fitxategiak (*.jpg *.jpeg *.png *.bmp);;Fitxategi guztiak (*) @@ -1563,12 +1563,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Txertatu orri lehenetsia @@ -1576,22 +1576,22 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Txertatu orria txantiloi bat erabilita - + Select a Template File Hautatu txantiloi-fitxategi bat - + Template (*.svg) Txantiloia (*.svg) @@ -1599,12 +1599,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Inprimatu orrialde guztiak @@ -1612,12 +1612,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Proiektatu forma... @@ -1625,17 +1625,17 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Txertatu proiekzio-taldea - + Insert multiple linked views of drawable object(s) Txertatu objektu marrazgai(ar)en bista estekatu anitz @@ -1669,12 +1669,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Marraztu orria berriro @@ -1695,22 +1695,22 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Txertatu sekzio-bista sinplea edo konplexua - + Section View sekzio-bista - + Complex Section Sekzio konplexua @@ -1718,12 +1718,12 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Txertatu sekzio-bista @@ -1744,17 +1744,17 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Txertatu kalkulu-orriaren bista - + Insert View to a spreadsheet Txertatu bista kalkulu-orri bati @@ -1865,17 +1865,17 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Txertatu SVG ikurra - + Insert symbol from an SVG file Txertatu ikurra SVG fitxategi batetik @@ -1883,13 +1883,13 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Aktibatu/desaktibatu bista-markoak @@ -1923,17 +1923,17 @@ Hutsi dagoen espazioan klik eginda, uneko kota baliozkotuko da. Eskuineko klik e CmdTechDrawView - + TechDraw TechDraw - + Insert View Txertatu bista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Sortu marrazki-orria - + Create BIM View Create BIM View - + Create view Sortu bista - + Create broken view Create broken view - + Create Projection Group Sortu proiekzio-taldea - + Create Clip Sortu ebaketa - + ClipGroupAdd Gehitu ebaketa taldea - + ClipGroupRemove Kendu ebaketa taldea - + Save page to DXF Save page to DXF - - + + Create Symbol Sortu ikurra - + Create DraftView Sortu zirriborro-bista - + Create ArchView Sortu arku-bista - - + + Create spreadsheet view Sortu kalkulu-orriaren bista - + Save page to dxf Gorde orria DXF fitxategi batean @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Sortu kota - + Create Hatch Sortu itzaleztadura - + Update Hatch Eguneratu itzaleztadura - + Remove old Hatch Kendu itzaleztadura zaharra - + Create GeomHatch Sortu itzaleztadura geometrikoa - - + + Create Image Sortu irudia - + Drag Balloon Arrastatu bunbuiloa @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Arrastatu kota - + Create Balloon Sortu bunbuiloa - + Create ActiveView Sortu bista aktiboa @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Hautapen okerra - - + + No Shapes, Groups or Links in this selection Ez dago formarik, talderik edo estekarik hautapen honetan - + Empty selection Hautapen hutsa - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Hautatu gutxienez marrazki-bistaren pieza bat oinarri gisa. - + I do not know what base view to use. Ez dakit zein oinarrizko bista erabili. - + No Base View, Shapes, Groups or Links in this selection Ez dago oinarrizko bistarik, formarik, talderik edo estekarik hautapen honetan - + No profile object found in selection Ez da profil-objekturik aurkitu hautapenean - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Hautatu objektu bat - + Too many objects selected Objektu gehiegi hautatuta - + Create a page first. Lehenengo, sortu orrialde bat. - + No View of a Part in selection. Ez dago piezaren bistarik hautapenean. - + Select one Clip group and one View. Hautatu ebaketa talde bat eta bista bat. - + Select exactly one View to add to group. Hautatu bista bakar bat taldeari gehitzeko. - + Select exactly one Clip group. Hautatu ebaketa-talde bakar bat. - + Clip and View must be from same Page. Ebaketak eta bistak orrialde berekoak izan behar dute. - + Select exactly one View to remove from Group. Hautatu bista bakar bat taldetik kentzeko. - + View does not belong to a Clip Bista ez da ebaketa batekoa - + Choose an SVG file to open Hautatu SVG fitxategi bat irekitzeko - + Scalable Vector Graphic Grafiko bektorial eskalagarria - - + + All Files Fitxategi guztiak - + Select at least one object. Hautatu objektu bat gutxienez. - + Select exactly one Spreadsheet object. Hautatu kalkulu-orriko objektu bakar bat. - + No Drawing View Ez dago marrazki-bistarik - + Open Drawing View before attempting export to SVG. Ireki marrazki-bista SVG formatura esportatzen saiatu baino lehen. - + Can not export selection Ezin da hautapena esportatu - + Page contains DrawViewArch which will not be exported. Continue? Orrialdeak DrawViewArch dauka, baina ez da esportatuko. Jarraitu? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-spline kurbaren abisua - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Ez dago %1 hautapenean - + Replace Hatch? Ordeztu itzaleztadura? - + Some Faces in selection are already hatched. Replace? Hautapeneko zenbait aurpegi dagoeneko itzaleztatuta daude. Ordeztu? - + No TechDraw Page Ez dago TechDraw orrialderik - + Need a TechDraw Page for this command TechDraw orrialdea behar da komando honetarako - + Select a Face first Hautatu aurpegi bat lehenengo - + No TechDraw object in selection Ez dago TechDraw objekturik hautapenean - + Create a page to insert. Sortu orrialde bat bertan bistak txertatzeko. - - + + No Faces to hatch in this selection Ez dago itzaleztatzeko aurpegirik hautapen honetan @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Ez dago marrazki-orririk dokumentuan. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Fitxategi guztiak (*.*) - + Export Page As PDF Esportatu orrialdea PDF gisa - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Esportatu orrialdea SVG gisa @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Hautatu ikur bat - + ActiveView to TD View Bista aktiboa TD bistara - + No Main Window Ez dago leiho nagusirik - + Can not find the main window Ez da leiho nagusia aurkitu - + No 3D Viewer Ez dago 3D bisorerik - + Can not find a 3D viewer Ez da 3D bisorerik aurkitu @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Sortu aurpegi-itzaleztadura - + Edit Face Hatch Editatu aurpegi-itzaleztadura @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Dokumentuaren izena: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Bunbuiloaren gida-marraren zati horizontalaren luzera - - - Ballon Leader Kink Length - Bunbuiloaren gida-marraren muturraren luzera - Length of balloon leader line kink @@ -5852,91 +5852,81 @@ Azkarra, baina lerro zuzen laburren bilduma bat ematen du. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Txandakatu &eguneratuta mantentzea - + Toggle &Frames Txandakatu &markoak - + &Export SVG &Esportatu SVGa - + Export DXF Esportatu DXFa - + Export PDF Esportatu PDFa - + Print All Pages Inprimatu orrialde guztiak - + Different orientation Orientazio desberdina - + The printer uses a different orientation than the drawing. Do you want to continue? Inprimagailuak eta marrazkiak orientazio desberdina dute. Jarraitu nahi duzu? - + Different paper size Paper-tamaina desberdina - + The printer uses a different paper size than the drawing. Do you want to continue? Inprimagailuak eta marrazkiak paper-tamaina desberdina dute. Jarraitu nahi duzu? - - Opening file failed - Fitxategia irekitzeak huts egin du - - - - Can not open file %1 for writing. - Ezin da %1 fitxategia ireki hura idazteko. - - - + Save DXF file Gorde DXF fitxategia - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Gorde PDF fitxategia - + PDF (*.pdf) PDF (*.pdf) - + Selected: Hautatua: @@ -8487,7 +8477,7 @@ emandako X/Y espazioa erabilita TechDraw_ComplexSection - + Insert complex Section View Txertatu sekzio konplexuaren bista @@ -8548,7 +8538,7 @@ emandako X/Y espazioa erabilita TechDraw_SectionView - + Insert simple Section View Txertatu sekzio sinplearen bista @@ -9798,13 +9788,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fi.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fi.ts index b42fbce864..067af75a4f 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fi.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fi.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Lisää aktiivinen näkymä (3D-näkymä) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Lisää tekstikupla-merkintä @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Lisää leikeryhmä (clip) @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Lisää Näkymä Leikekuvio-ryhmään (Clip group) @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Poista Näkymä Leikekuvio-ryhmästä @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Lisää Detaljinäkymä @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Lisää työpöydän luonnosobjekti - + Insert a View of a Draft Workbench object Lisää näkymä luonnostyöpöydän objektille (Draft Workbench) @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Tiedosto - + Export Page as DXF Vie sivu DXF-tiedostona - + Save DXF file Tallenna DXF-tiedosto - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Tiedosto - + Export Page as SVG Vie sivu SVG-tiedostona @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Tee Alueelle Geometrinen Kuviointi @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Kuvioi Alue käyttäen kuvatiedostoa @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Lisää bittikartta-kuva - - + + Insert Bitmap from a file into a page Lisää bittikartta-kuva tiedostosta sivulle - + Select an Image File Valitse kuvatiedosto - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Lisää oletussivu @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Lisää sivu käyttäen mallipohjaa - + Select a Template File Valitse mallipohjan tiedosto - + Template (*.svg) Template (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Tulosta kaikki sivut @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projektin muoto... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Lisää projektioryhmä - + Insert multiple linked views of drawable object(s) Aseta useita linkitettyjä näkymiä piirrettävistä objekteista @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Tee sivu uudelleen @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Lisää poikkileikkausnäkymä @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Lisää taulukkonäkymä - + Insert View to a spreadsheet Lisää näkymä laskentataulukkoon @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Lisää SVG-symboli - + Insert symbol from an SVG file Lisää symboli SVG-tiedostosta @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Näytä kehykset - Käytössä/Pois @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View Lisää Näkymä - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Piirustus luo sivu - + Create BIM View Create BIM View - + Create view Luo näkymä - + Create broken view Create broken view - + Create Projection Group Lisää projektioryhmä - + Create Clip Luo Leikekuvio (Clip) - + ClipGroupAdd LeikekuvioRyhmäLisäys - + ClipGroupRemove LeikekuvioRyhmäPoisto - + Save page to DXF Save page to DXF - - + + Create Symbol Luo symboli - + Create DraftView Luo vedosäkymä - + Create ArchView Luo ArchView - - + + Create spreadsheet view Luo laskentataulukkonäkymä - + Save page to dxf Tallenna sivu dxf-muotoon @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Luo Mitta - + Create Hatch Luo Kuviointi - + Update Hatch Päivitä kuviointi - + Remove old Hatch Poista vanhat kuvioinnit - + Create GeomHatch Luo Geometrinen Kuviointi - - + + Create Image Luo kuva - + Drag Balloon Raahaa tekstikuplaa @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Raahaa Mittaa - + Create Balloon Luo tekstikupla - + Create ActiveView Luo Aktiivinen Näkymä @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Virheellinen valinta - - + + No Shapes, Groups or Links in this selection Ei muotoja, ryhmiä tai linkkejä tässä valinnassa - + Empty selection Tyhjä valinta - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Valitse vähintään 1 DrawViewPart-objekti pohjaksi. - + I do not know what base view to use. En tiedä mitä perusnäkymää pitäisi käyttää. - + No Base View, Shapes, Groups or Links in this selection Ei perusnäkymää, muotoja, ryhmiä tai linkkejä tässä valinnassa - + No profile object found in selection Valinnassa ei löytynyt profiiliobjektia - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Valitse ensin objekti - + Too many objects selected Liian monta objektia valittu - + Create a page first. Luo sivu ensin. - + No View of a Part in selection. Valinnassa ei ole osan näkymää. - + Select one Clip group and one View. Valitse yksi Leikekuvio-ryhmä ja yksi Näkymä. - + Select exactly one View to add to group. Valitse täsmälleen yksi Näkymä lisättäväksi ryhmään. - + Select exactly one Clip group. Valitse täsmälleen yksi Leikekuvio-ryhmä. - + Clip and View must be from same Page. Leikekuvio ja Näkymä on valittava samalta sivulta. - + Select exactly one View to remove from Group. Valitse täsmälleen yksi Näkymä ryhmästä poistettavaksi. - + View does not belong to a Clip Näkymä ei kuulu Leikekuvioon - + Choose an SVG file to open Valitse avattava SVG-tiedosto - + Scalable Vector Graphic Skaalautuva vektorigrafiikka - - + + All Files Kaikki tiedostot - + Select at least one object. Valitse vähintään yksi objekti. - + Select exactly one Spreadsheet object. Valitse täsmälleen yksi taulukkokohde. - + No Drawing View Ei piirrosnäkymää - + Open Drawing View before attempting export to SVG. Avaa Piirustuksen Näkymä ennen kuin yrität viedä SVG-tiedostoon. - + Can not export selection Valintaa ei voida viedä tiedostoon - + Page contains DrawViewArch which will not be exported. Continue? Sivu sisältää DrawViewArch-objektin, jota ei voi viedä. Jatketaanko? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Varoitus BSpline-käyrästä - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Korvataanko Kuviointi? - + Some Faces in selection are already hatched. Replace? Jotkut valitut Alueet on jo Kuvioitu. Korvataanko ne? - + No TechDraw Page TechDraw-sivua ei ole - + Need a TechDraw Page for this command Tätä komentoa varten tarvitaan TechDraw-sivu - + Select a Face first Valitse ensin Alue - + No TechDraw object in selection TechDraw-objektia ei ole valittuna - + Create a page to insert. Luo sivu kuvien lisäämistä varten. - - + + No Faces to hatch in this selection Valinnassa ei ole Aluetta kuvioitavaksi @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Asiakirjassa ei ole Piirustus-sivuja. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Kaikki tiedostot (*.*) - + Export Page As PDF Vie sivu PDF-tiedostoon - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Vie sivu SVG-tiedostoon @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Valitse symboli - + ActiveView to TD View Aktiivi-näkymä TechDraw-näkymäksi - + No Main Window Ei pääikkunaa - + Can not find the main window Pääikkunaa ei löydy - + No 3D Viewer Ei 3D-katselinta - + Can not find a 3D viewer 3D-katselinta ei löydy @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4615,6 +4615,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4720,11 +4725,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Tekstikuplasta alkavan vaakasuoran reittiviivan osan pituus - - - Ballon Leader Kink Length - Reittiviivan kiinnitysosan pituus - Length of balloon leader line kink @@ -5845,91 +5845,81 @@ Nopea, mutta tulos on kokoelma lyhyitä suoria viivoja. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Vaihda &PidäPäivitettynä - + Toggle &Frames Vaihda &Kehykset - + &Export SVG &Vie SVG - + Export DXF Vie DXF-tiedostoon - + Export PDF Vie PDF - + Print All Pages Tulosta kaikki sivut - + Different orientation Erilainen sivun suunta - + The printer uses a different orientation than the drawing. Do you want to continue? Tulostin käyttää eri paperisuuntaa kuin piirros. Haluatko jatkaa? - + Different paper size Erilainen paperikoko - + The printer uses a different paper size than the drawing. Do you want to continue? Tulostin käyttää eri paperikokoa kuin piirros. Haluatko jatkaa? - - Opening file failed - Tiedoston avaaminen epäonnistui - - - - Can not open file %1 for writing. - Tiedostoon ”%1” ei voida tallentaa. - - - + Save DXF file Tallenna DXF-tiedosto - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Valittu: @@ -8478,7 +8468,7 @@ käyttäen annettuja X/Y-välimatkoja TechDraw_ComplexSection - + Insert complex Section View Lisää monimutkainen poikkileikkausnäkymä @@ -8539,7 +8529,7 @@ käyttäen annettuja X/Y-välimatkoja TechDraw_SectionView - + Insert simple Section View Lisää yksinkertainen poikkileikkausnäkymä @@ -9788,13 +9778,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fr.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fr.ts index 145944b8b6..05123701f0 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fr.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_fr.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Insérer la vue active (dans la vue 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insérer un objet de l'atelier BIM - + Insert a View of a Section Plane from BIM Workbench Insérer une vue d'un plan de coupe à partir de l'atelier BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Insérer une infobulle @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Insérer une fenêtre de rognage @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Ajouter une vue à la fenêtre de rognage @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Supprimer la vue de la fenêtre de rognage @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insérer une vue en coupe complexe - + Insert a Complex Section View Insérer une vue en coupe complexe @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Insérer une vue détaillée @@ -344,17 +344,17 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Insérer un objet de l'atelier Draft - + Insert a View of a Draft Workbench object Insérer une vue d’un objet de l'atelier Draft @@ -362,22 +362,22 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawExportPageDXF - + File Fichier - + Export Page as DXF Exporter une page au format DXF - + Save DXF file Enregistrer le fichier DXF - + DXF (*.dxf) DXF (*.dxf) @@ -385,12 +385,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawExportPageSVG - + File Fichier - + Export Page as SVG Exporter une page au format SVG @@ -1567,12 +1567,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Appliquer un motif de hachure géométrique à une face @@ -1580,12 +1580,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Hachurer une face en utilisant un fichier image @@ -1619,28 +1619,28 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Insérer une image bitmap - - + + Insert Bitmap from a file into a page Insérer un fichier bitmap depuis un fichier dans une page - + Select an Image File Sélectionner un fichier image - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Fichiers image (*.jpg *.jpeg *.png *.bmp);;Tous les fichiers (*) @@ -1713,12 +1713,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Insérer une page par défaut @@ -1726,22 +1726,22 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Insérer une page à partir d'un modèle - + Select a Template File Sélectionner un fichier modèle - + Template (*.svg) Modèle (*.svg) @@ -1749,12 +1749,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Imprimer toutes les pages @@ -1762,12 +1762,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projeter la forme... @@ -1775,17 +1775,17 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Insérer un groupe de projection - + Insert multiple linked views of drawable object(s) Insérer plusieurs vues liées d'objets dessinables @@ -1819,12 +1819,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Redessiner une page @@ -1845,22 +1845,22 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insérer une vue en coupe simple ou complexe - + Section View Vue en coupe - + Complex Section Coupe complexe @@ -1868,12 +1868,12 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Insérer une vue en coupe @@ -1894,17 +1894,17 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Insérer une vue de l'atelier Spreadsheet - + Insert View to a spreadsheet Insérer une vue dans une feuille de calcul @@ -2017,17 +2017,17 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Insérer un symbole SVG - + Insert symbol from an SVG file Insérer un symbole à partir d’un fichier SVG @@ -2035,13 +2035,13 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Activer/désactiver les cadres de vues @@ -2075,17 +2075,17 @@ En fonction de votre sélection, plusieurs dimensions peuvent être disponibles. CmdTechDrawView - + TechDraw TechDraw - + Insert View Insérer une vue - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -2094,12 +2094,12 @@ Les objets sélectionnés, les feuilles de calcul ou les plans de coupe de l'ate En l'absence de sélection, un navigateur de fichiers vous permet de sélectionner un fichier SVG ou un fichier image. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Si vous souhaitez insérer une vue à partir d'objets existants, sélectionnez les avant d'utiliser cet outil. En l'absence de sélection, un navigateur de fichiers s'ouvrira pour insérer un fichier SVG ou une image. - + Do not show this message again Ne plus afficher ce message @@ -2120,75 +2120,75 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Command - - + + Drawing create page Créer une page de dessin - + Create BIM View Créer une vue BIM - + Create view Créer une vue - + Create broken view Créer une vue interrompue - + Create Projection Group Créer un groupe de projections - + Create Clip Créer une fenêtre de rognage - + ClipGroupAdd Ajouter un groupe de fenêtres de rognage - + ClipGroupRemove Supprimer le groupe de fenêtres de rognage - + Save page to DXF Enregistrer la page au format DXF - - + + Create Symbol Créer un symbole - + Create DraftView Créer une vue de l'atelier Draft - + Create ArchView Créer une vue de l'atelier Arch - - + + Create spreadsheet view Créer une vue de feuille de calcul - + Save page to dxf Enregistrer la page au format DXF @@ -2388,33 +2388,33 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Créer une cote - + Create Hatch Créer une zone hachurée - + Update Hatch Mettre à jour les hachures - + Remove old Hatch Supprimer les anciennes hachures - + Create GeomHatch Créer des hachures géométriques - - + + Create Image Créer une image - + Drag Balloon Faire glisser une infobulle @@ -2424,12 +2424,12 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Faire glisser la cote - + Create Balloon Créer une infobulle - + Create ActiveView Créer une vue active @@ -3061,103 +3061,103 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Sélection invalide - - + + No Shapes, Groups or Links in this selection Aucune forme, groupe ou lien dans cette sélection - + Empty selection Sélection vide - + Select a SVG or Image file to open Sélectionner un fichier SVG ou fichier image à ouvrir - + SVG or Image files Fichiers SVG ou image - + Please select objects to break or a base view and break definition objects. Sélectionner des objets à interrompre ou une vue de base et interrompre les objets de définition. - + No Break objects found in this selection Aucun objet de cassure trouvé dans cette sélection - - + + Select at least 1 DrawViewPart object as Base. Sélectionnez au moins 1 objet DrawViewPart comme base. - + I do not know what base view to use. Aucune vue de base n'est sélectionnée. Merci d'en sélectionner une. - + No Base View, Shapes, Groups or Links in this selection Pas de vue de base, de formes, de groupes ou de liens dans cette sélection - + No profile object found in selection Aucun objet de profil trouvé dans la sélection - + Please select only 1 BIM Section. Sélectionner qu'une seule coupe BIM - + No BIM Sections in selection. Pas de coupe BIM sélectionnée - - - + + + - - - - + + + + Incorrect selection @@ -3165,102 +3165,102 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn - + Select an object first Sélectionner d’abord un objet - + Too many objects selected Trop d'éléments sélectionnés - + Create a page first. Créer d'abord une page. - + No View of a Part in selection. Aucune vue d'une pièce dans la sélection. - + Select one Clip group and one View. Sélectionner un groupe de rognage et une vue. - + Select exactly one View to add to group. Sélectionner exactement une vue à ajouter au groupe. - + Select exactly one Clip group. Sélectionner un seul groupe de fenêtres de rognage. - + Clip and View must be from same Page. La fenêtre de rognage et la vue doivent être sur la même page. - + Select exactly one View to remove from Group. Sélectionner exactement une vue à supprimer du groupe. - + View does not belong to a Clip La vue n'appartient pas à une fenêtre de rognage - + Choose an SVG file to open Choisir un fichier SVG à ouvrir - + Scalable Vector Graphic Graphique Vectoriel Adaptable (SVG) - - + + All Files Tous les fichiers - + Select at least one object. Sélectionner au moins un objet. - + Select exactly one Spreadsheet object. Sélectionner un seul objet Spreadsheet. - + No Drawing View Aucune vue de dessin - + Open Drawing View before attempting export to SVG. Ouvrir la vue de dessin avant d’essayer d’exporter au format SVG. - + Can not export selection Impossible d'exporter la sélection - + Page contains DrawViewArch which will not be exported. Continue? La page contient DrawViewArch qui ne sera pas exporté. Continuer ? @@ -3275,8 +3275,8 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Avertissement à propos des courbes des B-splines - - + + @@ -3401,9 +3401,9 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn - - - + + + @@ -3452,9 +3452,9 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn - - - + + + @@ -3644,43 +3644,43 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Aucun %1 dans la sélection - + Replace Hatch? Remplacer la hachure ? - + Some Faces in selection are already hatched. Replace? Certaines faces dans la sélection sont déjà hachurées. Voulez-vous les remplacer ? - + No TechDraw Page Aucune Page TechDraw - + Need a TechDraw Page for this command Une Page TechDraw est requise pour cette commande - + Select a Face first Sélectionnez d'abord une face - + No TechDraw object in selection Aucun objet TechDraw dans la sélection - + Create a page to insert. Créer une page à insérer. - - + + No Faces to hatch in this selection Pas de faces à hachurer dans la sélection @@ -3701,28 +3701,28 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Aucune page de dessin dans le document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Tous les fichiers (*.*) - + Export Page As PDF Exporter la page au format PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exporter la page au format SVG @@ -3781,27 +3781,27 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Sélectionner un symbole - + ActiveView to TD View De la vue active à la vue TechDraw - + No Main Window Pas de fenêtre principale - + Can not find the main window Impossible de trouver la fenêtre principale - + No 3D Viewer Pas de visualiseur 3D - + Can not find a 3D viewer Impossible de trouver une visionneuse 3D @@ -4079,12 +4079,12 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn épaisse : %4 - + Create Face Hatch Créer des hachures de la face - + Edit Face Hatch Modifier les hachures de la face @@ -4170,7 +4170,7 @@ En l'absence de sélection, un navigateur de fichiers vous permet de sélectionn Erreur de paramètre - + Document Name: Nom du document : @@ -4684,7 +4684,7 @@ Il sera alors nécessaire d'augmenter la limite des tuiles. If checked, FreeCAD will use the new face finder algorithm. If not checked, FreeCAD will use the original face finder. Si cette option est cochée, FreeCAD utilisera le nouvel algorithme de reconnaissance des faces. -Si cette option n'est pas cochée, FreeCAD utilisera l'algorithme d'origine de reconnaissance des faces. +Si elle n'est pas cochée, FreeCAD utilisera l'algorithme d'origine de reconnaissance des faces. @@ -4744,7 +4744,7 @@ Si cette option n'est pas cochée, FreeCAD utilisera l'algorithme d'origine de r If checked, the section annotation will be drawn on the Source view. If unchecked, no section line, arrows or symbol will be shown in the Source view. Si cette option est cochée, l'annotation de la coupe sera dessinée dans la vue source. -Si la case n'est pas cochée, aucune ligne de coupe, aucune flèche et aucun symbole ne seront affichés dans la vue source. +Si elle n'est pas cochée, aucune ligne de coupe, aucune flèche et aucun symbole ne seront affichés dans la vue source. @@ -4772,6 +4772,11 @@ Si elle n'est pas cochée, seuls les marques de changement, les flèches et les Include Cut Line in Section Annotation Inclure la ligne de coupe dans l'annotation de la coupe + + + Balloon Leader Kink Length + Longueur du pli de la ligne de repère de l'infobulle + Broken View Break Type @@ -4877,11 +4882,6 @@ Si elle n'est pas cochée, seuls les marques de changement, les flèches et les Length of horizontal portion of Balloon leader Longueur de la partie horizontale de la ligne de repère de l'infobulle - - - Ballon Leader Kink Length - Longueur du pli de la ligne de repère de l'infobulle - Length of balloon leader line kink @@ -5734,7 +5734,7 @@ Les modifications n'ont pas d'effet sur les cotes existantes. If checked, the 3d camera direction (or normal of a selected face) will be used as the view direction. If not checked, Views will be created as Front Views. Si cette option est cochée, la direction de la caméra 3D (ou la normale d'une face sélectionnée) sera utilisée comme direction de la vue. -Si la case n'est pas cochée, les vues seront créées comme des vues de face. +Si elle n'est pas cochée, les vues seront créées comme des vues de face. @@ -5759,22 +5759,23 @@ Si la case n'est pas cochée, les vues seront créées comme des vues de face. Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Si cette case est cochée, les vues seront aimantées à l'alignement lorsqu'elles seront déplacées. Snap View Alignment - Snap View Alignment + Aimanter les vues à l'alignement View Snapping Factor - View Snapping Factor + Coefficient d'aimantation des vues When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Lorsque vous faites glisser une vue, si elle se trouve à l'intérieur de cette portion +de la taille de la vue par rapport au bon alignement, elle s'aimantera à l'alignement. @@ -6002,89 +6003,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Activer/désactiver &garder la mise à jour - + Toggle &Frames Activer/désactiver les &cadres - + &Export SVG &Exporter au format SVG - + Export DXF Exporter au format DXF - + Export PDF Exporter au format PDF - + Print All Pages Imprimer toutes les pages - + Different orientation Orientation différente - + The printer uses a different orientation than the drawing. Do you want to continue? L'imprimante utilise une orientation différente que le dessin. Voulez-vous continuer ? - + Different paper size Format de papier différent - + The printer uses a different paper size than the drawing. Do you want to continue? L'imprimante utilise un format de papier différent que le dessin. Voulez-vous continuer ? - - Opening file failed - L'ouverture du fichier a échoué - - - - Can not open file %1 for writing. - Impossible d’ouvrir le fichier %1 en écriture. - - - + Save DXF file Enregistrer le fichier DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Enregistrer le fichier PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Sélectionné: @@ -8632,7 +8623,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insérer une vue en coupe complexe @@ -8695,7 +8686,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insérer une vue en coupe simple @@ -9944,13 +9935,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insérer une vue interrompue diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hr.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hr.ts index 02cd6bce37..28f3f69f21 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hr.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hr.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Tehničko Crtanje - + Insert Active View (3D View) Umetnite aktivni (3D) pogled @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Tehničko Crtanje - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Tehničko Crtanje - + Insert Balloon Annotation Umetni Oblačić napomene @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Tehničko Crtanje - + Insert Clip Group Umetni grupu Isječak @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Tehničko Crtanje - + Add View to Clip Group Dodaj pogled u grupi Isječak @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Tehničko Crtanje - + Remove View from Clip Group Obriši pogled iz grupe Isječak @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Tehničko Crtanje - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Tehničko Crtanje - + Insert Detail View Umetanje detaljnog pogleda @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Tehničko Crtanje - + Insert Draft Workbench Object Umetni objekt Radnog stola Nacrt - + Insert a View of a Draft Workbench object Umetni pogled na objekt Radnog stola Nacrt @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Datoteka - + Export Page as DXF Izvezi stranicu kao DXF - + Save DXF file Spremi DXF Datoteku - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Datoteka - + Export Page as SVG Izvezi stranicu kao SVG @@ -1431,12 +1431,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Tehničko Crtanje - + Apply Geometric Hatch to Face Dodaje geometrijsku ispunu uzorka na lice @@ -1444,12 +1444,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Tehničko Crtanje - + Hatch a Face using Image File Lice ispuni uzorkom koristeći datoteku slike @@ -1483,28 +1483,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Tehničko Crtanje - + Insert Bitmap Image Umetni Bitmap sliku - - + + Insert Bitmap from a file into a page Umeće bitmapu iz datoteke u stranicu - + Select an Image File Odaberite slikovnu datoteku - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Slikovne datoteke (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1577,12 +1577,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Tehničko Crtanje - + Insert Default Page Umetnite novu zadanu stranicu @@ -1590,22 +1590,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Tehničko Crtanje - + Insert Page using Template Umetni novu stranicu pomoću predloška - + Select a Template File Odaberite datoteku predloška - + Template (*.svg) Predložak (*.svg) @@ -1613,12 +1613,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Tehničko Crtanje - + Print All Pages Ispis svih stranica @@ -1626,12 +1626,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Tehničko Crtanje - + Project shape... Projecirani oblik ... @@ -1639,17 +1639,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Tehničko Crtanje - + Insert Projection Group Umetanje Projekcijske Grupe - + Insert multiple linked views of drawable object(s) Umetanje više povezanih prikaza od crtajućih objekata @@ -1683,12 +1683,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Tehničko Crtanje - + Redraw Page Ponovno iscrtavanje stranice @@ -1709,22 +1709,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Tehničko Crtanje - + Insert a simple or complex Section View Umetni jednostavan ili složen prikaz presjeka - + Section View Pogled Odjeljka - + Complex Section Složeni odjeljak presjeka @@ -1732,12 +1732,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Tehničko Crtanje - + Insert Section View Umetni pogled presjeka @@ -1758,17 +1758,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Tehničko Crtanje - + Insert Spreadsheet View Umetanje tablice pregleda - + Insert View to a spreadsheet Umetni Pogled u proračunsku tablicu @@ -1879,17 +1879,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Tehničko Crtanje - + Insert SVG Symbol Umetanje SVG simbola - + Insert symbol from an SVG file Umetnite simbol iz SVG datoteke @@ -1899,13 +1899,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Tehničko Crtanje - - + + Turn View Frames On/Off Prebacuj Okvire Pogled Uključeno/Isključeno @@ -1939,17 +1939,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Tehničko Crtanje - + Insert View Umetni pogled - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1958,12 +1958,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1984,75 +1984,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Stranica izrade crteža - + Create BIM View Create BIM View - + Create view Stvaranje prikaza - + Create broken view Create broken view - + Create Projection Group Stvaranje Projekcijske Grupe - + Create Clip Stvaranje isječka - + ClipGroupAdd IsječakGrupaDodaj - + ClipGroupRemove IsječakGrupaObriši - + Save page to DXF Save page to DXF - - + + Create Symbol Stvori simbol - + Create DraftView Stvori Pogled u Nacrtu - + Create ArchView Stvori Pogled u Arhitektura - - + + Create spreadsheet view Stvori pogled pregleda - + Save page to dxf Spremi stranicu u dxf formatu @@ -2252,33 +2252,33 @@ Without a selection, a file browser lets you select a SVG or image file.Stvori Dimenziju - + Create Hatch Ispuni uzorkom - + Update Hatch Ažuriraj Ispunu uzorkom - + Remove old Hatch Ukloni staru ispunu uzorka - + Create GeomHatch Stvori geometrijsku ispunu uzorka - - + + Create Image izradi sliku - + Drag Balloon Povuci balončić @@ -2288,12 +2288,12 @@ Without a selection, a file browser lets you select a SVG or image file.Povuci Dimenziju - + Create Balloon Stvori Balončić - + Create ActiveView Stvori aktivni Pogled @@ -2929,103 +2929,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Pogrešan odabir - - + + No Shapes, Groups or Links in this selection U ovom odabiru nema oblika, grupa ili poveznica - + Empty selection Prazan odabir - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Odaberite najmanje 1 DrawViewPart objekt kao bazu. - + I do not know what base view to use. Ne znam koji osnovni pogled da koristim. - + No Base View, Shapes, Groups or Links in this selection U ovom odabiru nema Osnovnog pogleda, Oblika, Grupa ili Poveznica - + No profile object found in selection U ovom odabiru nema Objekta profila - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3033,102 +3033,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Najprije odaberite objekt - + Too many objects selected Previše objekata odabrano - + Create a page first. Najprije napravite stranicu. - + No View of a Part in selection. Ne postoji Pogled na Dio u odabiru. - + Select one Clip group and one View. Odaberite 1 grupu Isječak i 1 Pogled. - + Select exactly one View to add to group. Odaberite točno jedan Pogled za dodavanje u grupu. - + Select exactly one Clip group. Odaberite točno jednu isječak grupu. - + Clip and View must be from same Page. Isječak i prikaz moraju biti s iste stranice. - + Select exactly one View to remove from Group. Odaberite točno jedan Pogled za uklanjanje iz grupe. - + View does not belong to a Clip Prikaz ne pripada isječku - + Choose an SVG file to open Odaberite SVG datoteku za otvaranje - + Scalable Vector Graphic Skalabilna vektorska grafika - - + + All Files Sve datoteke - + Select at least one object. Odaberite barem jedan objekt. - + Select exactly one Spreadsheet object. Odaberite točno jedan objekt tablice. - + No Drawing View Nema pogleda crteža - + Open Drawing View before attempting export to SVG. Otvori prikaz prije izvoza u SVG. - + Can not export selection Odabir se ne može izvesti - + Page contains DrawViewArch which will not be exported. Continue? Stranica sadrži DrawViewArch koji se neće izvoziti. Nastaviti? @@ -3144,8 +3144,8 @@ Without a selection, a file browser lets you select a SVG or image file.Krivulja BSpline Upozorenje - - + + @@ -3270,9 +3270,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3321,9 +3321,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3514,43 +3514,43 @@ Without a selection, a file browser lets you select a SVG or image file.Nema %1 u odabiru - + Replace Hatch? Zamijeni ispunu uzorka? - + Some Faces in selection are already hatched. Replace? Neka su lica u odabiru već ispunjena uzorkom. Zamijeniti? - + No TechDraw Page Nema stranice za tehničko crtanje - + Need a TechDraw Page for this command Potreban je stranicu tehničko crtanje za ovu naredbu - + Select a Face first Odaberite prvo naličje - + No TechDraw object in selection Nema objekta tehničkog crtanja u odabiru - + Create a page to insert. Stvaranje stranica za umetanje. - - + + No Faces to hatch in this selection Nema lica za ispunu uzorkom u ovom odabiru @@ -3571,28 +3571,28 @@ Without a selection, a file browser lets you select a SVG or image file.U dokumentu nema Stranica za crtanje. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Sve datoteke (*.*) - + Export Page As PDF Izvoz Stranice u PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Izvoz Stranice u SVG @@ -3651,27 +3651,27 @@ Without a selection, a file browser lets you select a SVG or image file.Odaberite simbol - + ActiveView to TD View Aktivni Pogled prebaci na TD Pogled - + No Main Window Nema Glavnog prozorora - + Can not find the main window Ne mogu pronaći glavni prozor - + No 3D Viewer Nema 3D Pogleda - + Can not find a 3D viewer Ne mogu pronači 3D preglednik @@ -3951,12 +3951,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Napravi ispunjavanje uzorkom - + Edit Face Hatch Uredi ispunjavanje uzorkom @@ -4042,7 +4042,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Naziv dokumenta: @@ -4663,6 +4663,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4768,11 +4773,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Dužina vodoravnog udjela linije oblačića - - - Ballon Leader Kink Length - Oblačić dužina linije prijeloma - Length of balloon leader line kink @@ -5930,89 +5930,79 @@ Brzo, ali rezultat je zbirka kratkih ravnih linija. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Uključivanje/isključivanje & Držati Obnovljeno - + Toggle &Frames Uključivanje/isključivanje & Okviri - + &Export SVG &izvoz SVG - + Export DXF Izvoz DFX - + Export PDF Izvoz PDF - + Print All Pages Ispis svih stranica - + Different orientation Drugačija orijentacija - + The printer uses a different orientation than the drawing. Do you want to continue? Pisač koristi drugu orijentaciju ispisa nego što je u crtežu. Želite li nastaviti? - + Different paper size Drugačija veličina papira - + The printer uses a different paper size than the drawing. Do you want to continue? Pisač koristi drugu veličinu papra nego što je u crtežu. Želite li nastaviti? - - Opening file failed - Otvaranje dokumenta nije uspjelo - - - - Can not open file %1 for writing. - Ne mogu otvoriti dokument %1 za ispis. - - - + Save DXF file Spremi DXF Datoteku - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Spremi PDF datoteku - + PDF (*.pdf) PDF (*.pdf) - + Selected: Odabrane: @@ -8576,7 +8566,7 @@ koristeći zadani X/Y razmak TechDraw_ComplexSection - + Insert complex Section View Umetni složeni prikaz presjeka @@ -8639,7 +8629,7 @@ koristeći zadani X/Y razmak TechDraw_SectionView - + Insert simple Section View Umetni jednostavni prikaz presjeka @@ -9893,13 +9883,13 @@ jer je otvoren dijalog zadataka. CmdTechDrawBrokenView - + TechDraw Tehničko Crtanje - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hu.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hu.ts index e25515be45..5982d8f594 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hu.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_hu.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw MűszakiRajz - + Insert Active View (3D View) Aktív nézet beszúrása (3D nézet) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw MűszakiRajz - + Insert BIM Workbench Object BIM munkafelületi tárgy beszúrása - + Insert a View of a Section Plane from BIM Workbench Szakaszsík nézetének beszúrása a BIM munkafelületből @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw MűszakiRajz - + Insert Balloon Annotation Buborékjegyzet beszúrása @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw MűszakiRajz - + Insert Clip Group Kivágás csoport beszúrása @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw MűszakiRajz - + Add View to Clip Group Nézet hozzáadása a kivágás csoporthoz @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw MűszakiRajz - + Remove View from Clip Group Nézet eltávolítása kivágás csoportból @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw MűszakiRajz - + Insert Complex Section View Komplex szelvény nézet beszúrása - + Insert a Complex Section View Összetett szelvénynézet beszúrása @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw MűszakiRajz - + Insert Detail View Részletnézet beszúrása @@ -343,17 +343,17 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawDraftView - + TechDraw MűszakiRajz - + Insert Draft Workbench Object Tervrajz munkafelületi tárgy beszúrása - + Insert a View of a Draft Workbench object Szúrjon be egy nézetet a tervezet munkafelület tárgyból @@ -361,22 +361,22 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawExportPageDXF - + File Fájl - + Export Page as DXF Oldal exportálása DXF-ként - + Save DXF file DXF-fájl mentése - + DXF (*.dxf) Dxf (*.dxf) @@ -384,12 +384,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawExportPageSVG - + File Fájl - + Export Page as SVG Oldal exportálása SVG-ként @@ -1417,12 +1417,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawGeometricHatch - + TechDraw MűszakiRajz - + Apply Geometric Hatch to Face Geometriai sraffozó kitöltés alkalmazása a felületre @@ -1430,12 +1430,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawHatch - + TechDraw MűszakiRajz - + Hatch a Face using Image File Felület sraffozása képfájllal @@ -1469,28 +1469,28 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawImage - + TechDraw MűszakiRajz - + Insert Bitmap Image Bitkép beillesztése - - + + Insert Bitmap from a file into a page Bitkép beszúrása az oldalra egy fájlból - + Select an Image File Válasszon ki egy kép fájlt - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Kép fájlok (*.jpg *.jpeg *.png *.bmp);;Összes fájl (*) @@ -1563,12 +1563,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawPageDefault - + TechDraw MűszakiRajz - + Insert Default Page Alapértelmezett oldal beszúrása @@ -1576,22 +1576,22 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawPageTemplate - + TechDraw MűszakiRajz - + Insert Page using Template Oldal beszúrása sablonnal - + Select a Template File Sablonfájl kijelölése - + Template (*.svg) Sablon (*.svg) @@ -1599,12 +1599,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawPrintAll - + TechDraw MűszakiRajz - + Print All Pages Összes oldal nyomtatása @@ -1612,12 +1612,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawProjectShape - + TechDraw MűszakiRajz - + Project shape... Terv formák... @@ -1625,17 +1625,17 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawProjectionGroup - + TechDraw MűszakiRajz - + Insert Projection Group Vetítés csoport beszúrása - + Insert multiple linked views of drawable object(s) Rajzolható tárgy(k) több összekötött nézetének beszúrása @@ -1669,12 +1669,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawRedrawPage - + TechDraw MűszakiRajz - + Redraw Page Oldal újrarajzolása @@ -1695,22 +1695,22 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawSectionGroup - + TechDraw MűszakiRajz - + Insert a simple or complex Section View Egyszerű vagy összetett metszetnézet beszúrása - + Section View Szakasz nézet - + Complex Section Összetett metszetnézet @@ -1718,12 +1718,12 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawSectionView - + TechDraw MűszakiRajz - + Insert Section View Szakasznézet beszúrása @@ -1744,17 +1744,17 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawSpreadsheetView - + TechDraw MűszakiRajz - + Insert Spreadsheet View Táblázat nézet beszúrása - + Insert View to a spreadsheet Nézet beszúrása táblázatba @@ -1865,17 +1865,17 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawSymbol - + TechDraw MűszakiRajz - + Insert SVG Symbol SVG szimbólum beszúrása - + Insert symbol from an SVG file Szimbólum beszúrása SVG-fájlból @@ -1883,13 +1883,13 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawToggleFrame - + TechDraw MűszakiRajz - - + + Turn View Frames On/Off Keretek nézetének be-/kikapcsolása @@ -1923,17 +1923,17 @@ Az üres helyre való bal egérgombbal kattintással érvényesítheti az aktuá CmdTechDrawView - + TechDraw MűszakiRajz - + Insert View Nézet beszúrása - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ A kiválasztott tárgyak, táblázatok vagy Architektúra WB szelvénysíkok hoz Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl kiválasztását. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Ha meglévő tárgyakból szeretne nézetet beszúrni, kérjük, jelölje ki azokat, mielőtt ezt az eszközt meghívja. Kijelölés nélkül egy fájlböngésző fog megnyílni egy SVG- vagy képfájl beszúrásához. - + Do not show this message again Ne jelenjen meg ismét ez az üzenet @@ -1968,75 +1968,75 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Command - - + + Drawing create page Rajz létrehozó oldal - + Create BIM View BIM nézet létrehozása - + Create view Nézet létrehozása - + Create broken view Törött nézet létrehozása - + Create Projection Group Vetítés csoport létrehozása - + Create Clip Kivágás létrehozása - + ClipGroupAdd Szeletcsoport hozzáadása - + ClipGroupRemove KivágásCsopoortEltávolítás - + Save page to DXF Oldal mentése DXF-be - - + + Create Symbol Rajzjel létrehozása - + Create DraftView Tervrajz nézet létrehozás - + Create ArchView Építészet nézet létrehozásaa - - + + Create spreadsheet view Számolótábla nézet létrehozása - + Save page to dxf Oldal mentése dxf-be @@ -2236,33 +2236,33 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Méret létrehozása - + Create Hatch Kitöltés létrehozása - + Update Hatch Kitöltés frissítése - + Remove old Hatch Régi kitöltés eltávolítása - + Create GeomHatch Geometriai nyílás létrehozása - - + + Create Image Kép létrehozás - + Drag Balloon Léggömb ballon húzása @@ -2272,12 +2272,12 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Dimenzió húzása - + Create Balloon Ballon létrehozása - + Create ActiveView Aktív nézet létrehozása @@ -2909,103 +2909,103 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Rossz kijelölés - - + + No Shapes, Groups or Links in this selection Nincsenek alakzatok, csoportok vagy összekötések ebben a kijelölésben - + Empty selection Üres kijelölés - + Select a SVG or Image file to open Válasszon ki egy SVG- vagy képfájlt a megnyitáshoz - + SVG or Image files SVG vagy képfájlok - + Please select objects to break or a base view and break definition objects. Kérjük, válassza ki a törni kívánt tárgyakat vagy egy alapnézet és a törési definíció tárgyait. - + No Break objects found in this selection Ebben a kiválasztásban nem találtak tört tárgyakat - - + + Select at least 1 DrawViewPart object as Base. Jelöljön ki legalább 1 AlkatrészRajzNézet tárgyat a kiinduláshoz. - + I do not know what base view to use. Nem tudom, melyik alapnézetet használjam. - + No Base View, Shapes, Groups or Links in this selection Ebben a kijelölésben nincsenek alapnézetek, alakzatok, csoportok vagy összekötések - + No profile object found in selection Nem található profiltárgy a kijelölésben - + Please select only 1 BIM Section. Kérjük, csak 1 BIM-szakaszt válasszon. - + No BIM Sections in selection. Nincsenek BIM szakaszok a kiválasztásban. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl - + Select an object first Először válasszon ki egy tárgyat - + Too many objects selected Túl sok kijelölt objektum - + Create a page first. Először hozzon létre egy oldalt. - + No View of a Part in selection. Nincs alkatrész nézet ebben a kiválasztásban. - + Select one Clip group and one View. Egy kivágás csoport és egy nézet kiválasztása. - + Select exactly one View to add to group. Válasszon pontosan egy nézetet a csoporthoz adásra. - + Select exactly one Clip group. Jelöljön ki pontosan egy kivágandó tárgyat. - + Clip and View must be from same Page. Nyírás és a nézet azonos oldalon legyen. - + Select exactly one View to remove from Group. Válasszon pontosan egy nézetet a csoportból eltávolításra. - + View does not belong to a Clip Nézet nem tartozik kinyíráshoz - + Choose an SVG file to open SVG fájl kiválasztása megnyitáshoz - + Scalable Vector Graphic Méretezhető vektorgrafika - - + + All Files Összes fájl - + Select at least one object. Jelöljön ki legalább egy objektumot. - + Select exactly one Spreadsheet object. Jelöljön ki pontosan egy számolótábla tárgyat. - + No Drawing View Nincs rajz nézet - + Open Drawing View before attempting export to SVG. Nyissa meg a rajz nézetet az SVG exportálási kísérlet előtt. - + Can not export selection A kijelölés nem exportálható - + Page contains DrawViewArch which will not be exported. Continue? Az oldal rajz nézet ívet tartalmaz, amely nem lesz exportálva. Folytatja? @@ -3123,8 +3123,8 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Folyamatos ívű görbe figyelmeztetés - - + + @@ -3249,9 +3249,9 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl - - - + + + @@ -3300,9 +3300,9 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl - - - + + + @@ -3492,43 +3492,43 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl A %1 nincs a kiválasztásban - + Replace Hatch? Kitöltés lecserélése? - + Some Faces in selection are already hatched. Replace? Néhány felület a kijelölésben már ki van töltve. Lecseréli? - + No TechDraw Page Nincs MűszakiRajz oldal - + Need a TechDraw Page for this command Szükséges egy MűszakiRajz oldal ehhez a parancshoz - + Select a Face first Először jelöljön ki egy felületet - + No TechDraw object in selection Nincs MűszakiRajz tárgy a kiválasztásban - + Create a page to insert. Oldal létrehozása a beillesztéshez. - - + + No Faces to hatch in this selection Nincs felület a straffozáshoz ebben a kijelölésben @@ -3549,28 +3549,28 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl A dokumentumban nincsenek rajzok. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Összes fájl (*.*) - + Export Page As PDF Oldal export PDF formában - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Oldal export SVG formában @@ -3629,27 +3629,27 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Szimbólum kiválasztása - + ActiveView to TD View Az aktív nézet Műszakirajz nézetté válik - + No Main Window Nincs fő ablak - + Can not find the main window Fő ablak nem található - + No 3D Viewer Nincs 3D megjelenítő - + Can not find a 3D viewer Nem talál 3D megjelenítőt @@ -3927,12 +3927,12 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl vastag: %4 - + Create Face Hatch Felület kitöltés létrehozás - + Edit Face Hatch Felület kitöltés szerkesztés @@ -4018,7 +4018,7 @@ Kijelölés nélkül a fájlböngésző lehetővé teszi egy SVG- vagy képfájl Paraméter hiba - + Document Name: Dokumentum neve: @@ -4620,6 +4620,11 @@ Ezután növelnie kell a csempe határértékét. Include Cut Line in Section Annotation Vágási vonal felvétele a szakaszmegjelölésbe + + + Balloon Leader Kink Length + Balloon referencia vonalának hajlítási hossza + Broken View Break Type @@ -4725,11 +4730,6 @@ Ezután növelnie kell a csempe határértékét. Length of horizontal portion of Balloon leader A ballonvezető vízszintes részének hossza - - - Ballon Leader Kink Length - A ballon referencia vonalának hajlítási hossza - Length of balloon leader line kink @@ -5606,22 +5606,22 @@ Vetítéscsoportok számára Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Jelölje be ezt a négyzetet, ha azt szeretné, hogy a nézetek húzás közben igazodjanak egymáshoz. Snap View Alignment - Snap View Alignment + Illesztés nézet igazítás View Snapping Factor - View Snapping Factor + Igazítási lépték nézete When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Ha egy nézetet húz, és az a nézetméretnek a helyes igazításhoz viszonyított részén belül van, akkor az igazításhoz fog illeszkedni. @@ -5850,90 +5850,80 @@ Gyors, de az eredmény rövid egyenesek gyűjteménye. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Frissen tartás kapcsolója - + Toggle &Frames Keretek kapcsolója - + &Export SVG &Exportálás SVG-be - + Export DXF DXF export - + Export PDF Exportálás PDF-be - + Print All Pages Összes oldal nyomtatása - + Different orientation Eltérő tájolású - + 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 Eltérő papírméret - + 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é folytatni? - - Opening file failed - Fájl megnyitása sikertelen - - - - Can not open file %1 for writing. - %1 fájlt nem nyitható meg íráshoz. - - - + Save DXF file DXF-fájl mentése - + DXF (*.dxf) Dxf (*.dxf) - + Save PDF file PDF-fájl mentése - + PDF (*.pdf) PDF (*.pdf) - + Selected: Kiválasztott: @@ -8483,7 +8473,7 @@ a megadott X/Y távolság használatával TechDraw_ComplexSection - + Insert complex Section View Összetett szakasz nézet beszúrása @@ -8544,7 +8534,7 @@ a megadott X/Y távolság használatával TechDraw_SectionView - + Insert simple Section View Egyszerű szakasz nézet beszúrása @@ -9794,13 +9784,13 @@ van egy nyitott feladat párbeszédpanel. CmdTechDrawBrokenView - + TechDraw MűszakiRajz - - + + Insert Broken View Törött nézet beillesztése diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_it.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_it.ts index fe37a65a18..024d4fc0f9 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_it.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_it.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Inserisci Vista Attiva (Vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Inserisci Oggetto Ambiente BIM - + Insert a View of a Section Plane from BIM Workbench Inserisce una vista di un piano di sezione dell'ambiente BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Inserisci Pallinatura @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Inserisci Gruppo di ritaglio @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Aggiungi una vista al Gruppo di ritaglio @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Rimuovi la Vista dal Gruppo di ritaglio @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Inserisci Vista Sezione complessa - + Insert a Complex Section View Inserisci una Vista di Sezione complessa @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Inserisci Vista Dettaglio @@ -343,17 +343,17 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Inserisci Oggetto Ambiente Draft - + Insert a View of a Draft Workbench object Inserisce una vista di un oggetto dell'ambiente Draft @@ -361,22 +361,22 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawExportPageDXF - + File File - + Export Page as DXF Esporta Pagina in DXF - + Save DXF file Salva file DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawExportPageSVG - + File File - + Export Page as SVG Esporta Pagina in SVG @@ -1419,12 +1419,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Applica Tratteggio geometrico alla Faccia @@ -1432,12 +1432,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Tratteggia una faccia utilizzando un file immagine @@ -1471,28 +1471,28 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Inserisci Immagine Bitmap - - + + Insert Bitmap from a file into a page Inserisce un'immagine bitmap da un file in una pagina - + Select an Image File Selezionare un file di immagine - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) File immagine (*.jpg *.jpeg *.png *.bmp);;Tutti i file (*) @@ -1565,12 +1565,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Inserisci Pagina Predefinita @@ -1578,22 +1578,22 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Inserisci Pagina usando un Modello - + Select a Template File Selezionare un file modello - + Template (*.svg) Modello (*.svg) @@ -1601,12 +1601,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Stampa tutte le pagine @@ -1614,12 +1614,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Proietta le forme... @@ -1627,17 +1627,17 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Inserisci Gruppo di proiezioni - + Insert multiple linked views of drawable object(s) Inserisce più viste collegate di oggetti disegnabili @@ -1671,12 +1671,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Ridisegna Pagina @@ -1697,22 +1697,22 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Inserisci una Vista di Sezione semplice o complessa - + Section View Vista Sezione - + Complex Section Sezione Complessa @@ -1720,12 +1720,12 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Inserisci Vista di sezione @@ -1746,17 +1746,17 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Inserisci Vista di un Foglio di calcolo - + Insert View to a spreadsheet Inserisce una Vista di un foglio di calcolo @@ -1867,17 +1867,17 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Inserisci Simbolo SVG - + Insert symbol from an SVG file Inserisce un simbolo da un file SVG @@ -1885,13 +1885,13 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Attiva o disattiva la vista cornici @@ -1925,17 +1925,17 @@ Facendo clic con il tasto sinistro sullo spazio vuoto sarà convalidata la Quota CmdTechDrawView - + TechDraw TechDraw - + Insert View Inserisci Vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1944,12 +1944,12 @@ Verranno aggiunti oggetti selezionati, fogli di calcolo o piani di sezione WB Ar Senza una selezione, un file browser consente di selezionare un file SVG o immagine. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Se si desidera inserire una vista da oggetti esistenti, si prega di selezionarli prima di invocare questo strumento. Senza una selezione, un browser di file si aprirà, per inserire un file SVG o una immagine. - + Do not show this message again Non mostrare più questo messaggio @@ -1970,75 +1970,75 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Command - - + + Drawing create page Crea pagina disegno - + Create BIM View Crea Vista BIM - + Create view Creare vista - + Create broken view Crea vista interrotta - + Create Projection Group Crea gruppo di proiezione - + Create Clip Crea Ritaglio - + ClipGroupAdd Aggiungi Gruppo di ritaglio - + ClipGroupRemove Rimuovi Gruppo di ritaglio - + Save page to DXF Salva la pagina in DXF - - + + Create Symbol Crea simbolo - + Create DraftView Crea vista Draft - + Create ArchView Crea vista Arch - - + + Create spreadsheet view Crea Vista di un foglio di calcolo - + Save page to dxf Salva pagina su dxf @@ -2238,33 +2238,33 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Crea quota - + Create Hatch Crea tratteggio - + Update Hatch Aggiorna tratteggio - + Remove old Hatch Rimuovi il vecchio tratteggio - + Create GeomHatch Crea tratteggio geometrico - - + + Create Image Crea immagine - + Drag Balloon Trascina pallinatura @@ -2274,12 +2274,12 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Trascina quota - + Create Balloon Crea pallinatura - + Create ActiveView Crea vista attiva @@ -2911,103 +2911,103 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selezione errata - - + + No Shapes, Groups or Links in this selection In questa selezione non c'è nessuna forma, gruppo o link - + Empty selection Selezione vuota - + Select a SVG or Image file to open Selezionare un file SVG o immagine da aprire - + SVG or Image files File SVG o immagini - + Please select objects to break or a base view and break definition objects. Si prega di selezionare gli oggetti da interrompere o una vista di base e interrompere gli oggetti di definizione. - + No Break objects found in this selection Nessun oggetto di Interruzione trovato in questa selezione - - + + Select at least 1 DrawViewPart object as Base. Seleziona almeno 1 oggetto DrawViewPart come Base. - + I do not know what base view to use. Non so quale vista di base usare. - + No Base View, Shapes, Groups or Links in this selection Nessuna vista principale, forme, gruppi o collegamenti in questa selezione - + No profile object found in selection Nessun oggetto di profilo trovato nella selezione - + Please select only 1 BIM Section. Si prega di selezionare solo 1 sezione BIM. - + No BIM Sections in selection. Nessuna sezione BIM nella selezione. - - - + + + - - - - + + + + Incorrect selection @@ -3015,102 +3015,102 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag - + Select an object first Prima selezionare un oggetto - + Too many objects selected Troppi oggetti selezionati - + Create a page first. Prima creare una pagina. - + No View of a Part in selection. Nessuna vista di una Parte nella selezione. - + Select one Clip group and one View. Selezionare un gruppo di Ritaglio e una Vista. - + Select exactly one View to add to group. Selezionare esattamente una vista da aggiungere al gruppo. - + Select exactly one Clip group. Selezionare esattamente un Gruppo di ritaglio. - + Clip and View must be from same Page. Ritaglio e Vista deve essere dalla stessa Pagina. - + Select exactly one View to remove from Group. Selezionare una vista da rimuovere dal gruppo. - + View does not belong to a Clip La Vista non appartiene a un Ritaglio - + Choose an SVG file to open Seleziona un file SVG da aprire - + Scalable Vector Graphic Immagine vettoriale scalabile - - + + All Files Tutti i file - + Select at least one object. Selezionare almeno un oggetto. - + Select exactly one Spreadsheet object. Selezionare un solo oggetto Foglio di calcolo. - + No Drawing View Nessuna Vista di Disegno - + Open Drawing View before attempting export to SVG. Aprire una Vista Disegno prima di tentare l'esportazione in SVG. - + Can not export selection Impossibile esportare la selezione - + Page contains DrawViewArch which will not be exported. Continue? La pagina contiene una DrawViewArch che non verrà esportata. Continuare? @@ -3125,8 +3125,8 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Attenzione Curva BSpline - - + + @@ -3251,9 +3251,9 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag - - - + + + @@ -3302,9 +3302,9 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag - - - + + + @@ -3494,43 +3494,43 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Nessun %1 nella selezione - + Replace Hatch? Sostituire il tratteggio? - + Some Faces in selection are already hatched. Replace? Alcune facce selezionate sono già tratteggiate. Sostituire? - + No TechDraw Page Nessuna Pagina di TechDraw - + Need a TechDraw Page for this command Per questo comando serve una Pagina di TechDraw - + Select a Face first Prima selezionare una faccia - + No TechDraw object in selection Nessun oggetto TechDraw nella selezione - + Create a page to insert. Crea una pagina da inserire. - - + + No Faces to hatch in this selection In questa selezione non c'è nessuna faccia da trattegggiare @@ -3551,28 +3551,28 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Nel documento non c'è nessuna Pagina di Disegno. - + PDF (*.pdf) PDF (*. pdf) - - + + All Files (*.*) Tutti i File (*.*) - + Export Page As PDF Esporta Pagina in PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Esporta pagina in SVG @@ -3631,27 +3631,27 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Selezionare un simbolo - + ActiveView to TD View Vista attiva in vista TechDraw - + No Main Window Nessuna finestra principale - + Can not find the main window Impossibile trovare la finestra principale - + No 3D Viewer Nessun Visualizzatore 3D - + Can not find a 3D viewer Impossibile trovare un visualizzatore 3D @@ -3929,12 +3929,12 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag grossa: %4 - + Create Face Hatch Crea tratteggio su faccia - + Edit Face Hatch Modifica tratteggio su faccia @@ -4020,7 +4020,7 @@ Senza una selezione, un file browser consente di selezionare un file SVG o immag Errore di Parametro - + Document Name: Nome del documento: @@ -4623,6 +4623,11 @@ Quindi devi aumentare il limite delle tessere. Include Cut Line in Section Annotation Includi la linea di taglio nella annotazione di sezione + + + Balloon Leader Kink Length + Lunghezza piega della linea del pallino + Broken View Break Type @@ -4728,11 +4733,6 @@ Quindi devi aumentare il limite delle tessere. Length of horizontal portion of Balloon leader Lunghezza della parte orizzontale della linea guida per le bolle - - - Ballon Leader Kink Length - Piega della linea guida delle bolle - Length of balloon leader line kink @@ -5611,22 +5611,22 @@ I cambiamenti non hanno effetto sulle quote esistenti. Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Attiva questa casella se vuoi che le viste si aggancino all'allineamento quando vengono trascinate. Snap View Alignment - Snap View Alignment + Aggancia allineamento Vista View Snapping Factor - View Snapping Factor + Visualizza fattore di Aggancio When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Quando si trascina una vista, se è all'interno di questa frazione della dimensione della vista dell'allineamento corretto, si aggancia all'allineamento. @@ -5854,89 +5854,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Attiva o disattiva l'aggiornamento automatico - + Toggle &Frames Attiva o disattiva la struttura - + &Export SVG &Esporta SVG - + Export DXF Esporta in DXF - + Export PDF Esporta in formato PDF - + Print All Pages Stampa tutte le Pagine - + Different orientation Orientamento diverso - + The printer uses a different orientation than the drawing. Do you want to continue? La stampante utilizza un orientamento diverso rispetto al disegno. Si desidera continuare? - + Different paper size Formato carta diverso - + The printer uses a different paper size than the drawing. Do you want to continue? La stampante utilizza un formato di carta diverso rispetto al disegno. Si desidera continuare? - - Opening file failed - Apertura del file non riuscita - - - - Can not open file %1 for writing. - Impossibile aprire il file %1 per la scrittura. - - - + Save DXF file Salva file DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Salva file PDF - + PDF (*.pdf) PDF (*. pdf) - + Selected: Selezionato: @@ -8486,7 +8476,7 @@ usando la spaziatura X/Y specificata TechDraw_ComplexSection - + Insert complex Section View Inserisci una vista di Sezione complessa @@ -8547,7 +8537,7 @@ usando la spaziatura X/Y specificata TechDraw_SectionView - + Insert simple Section View Inserisci una vista di Sezione semplice @@ -9797,13 +9787,13 @@ c'è una finestra di dialogo azioni aperte. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Inserisci Vista Interrotta diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ja.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ja.ts index e44017382b..dd75f2ed57 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ja.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ja.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) アクティブビューを挿入 (3Dビュー) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object BIMワークベンチオブジェクトを挿入 - + Insert a View of a Section Plane from BIM Workbench BIMワークベンチから断面平面ビューを挿入 @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation バルーン注釈を挿入 @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group クリップグループを挿入 @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group クリップグループにビューを追加 @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group クリップグループからビューを削除 @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View 複雑な断面ビューを挿入 - + Insert a Complex Section View 複雑な断面ビューを挿入 @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View 詳細ビューを挿入 @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object 基本設計ワークベンチ・オブジェクトの挿入 - + Insert a View of a Draft Workbench object 基本設計ワークベンチオブジェクトのビューを挿入 @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File ファイル - + Export Page as DXF 用紙をDXFファイルにエクスポート - + Save DXF file DXFファイルを保存 - + DXF (*.dxf) DXF(*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File ファイル - + Export Page as SVG 用紙をSVGファイルにエクスポート @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face 面に幾何学的ハッチングを適用 @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File 画像ファイルを使用して面をハッチング @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image ビットマップ画像を挿入 - - + + Insert Bitmap from a file into a page ファイルから用紙にビットマップを挿入 - + Select an Image File 画像ファイルを選択 - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) 画像ファイル (*.jpg *.jpeg *.png *.bmp);;すべてのファイル (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page 既定の用紙を挿入 @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template テンプレートを使用して用紙を挿入 - + Select a Template File 用紙のテンプレートファイルを選択 - + Template (*.svg) テンプレートファイル(*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages 全ての用紙を印刷 @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... 形状を投影... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group 投影グループの挿入 - + Insert multiple linked views of drawable object(s) 描画オブジェクトの複数のリンクされたビューを挿入 @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page 用紙を再描画 @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View 単純または複雑な断面図を挿入 - + Section View 断面ビュー - + Complex Section 複雑な断面 @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View 断面ビューを挿入 @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View スプレッドシートビューを挿入 - + Insert View to a spreadsheet スプレッドシートにビューを挿入 @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol SVG 記号を挿入 - + Insert symbol from an SVG file SVGファイルから記号を挿入 @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off ビューフレームのオン・オフを切り替え @@ -1923,31 +1923,31 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View ビューを挿入 - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - Insert a View in current page. -Selected objects, spreadsheets or Arch WB section planes will be added. -Without a selection, a file browser lets you select a SVG or image file. + 現在のページにビューを挿入。 +選択したオブジェクト、スプレッドシート、または Arch ワークベンチの切断面が追加されます。 +何も選択されていない場合には、ファイルブラウザーによって SVG または画像ファイルを選択することになります。 - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. + 既存のオブジェクトからビューを挿入したい場合は、このツールを起動する前にビューを選択してください。 何も選択されていない場合には SVG または画像ファイルを挿入するためのファイルブラウザーが開きます。 - + Do not show this message again 今後、このメッセージを表示しない @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page 用紙を作成 - + Create BIM View BIMビューを作成 - + Create view ビューを作成 - + Create broken view 壊れたビューを作成 - + Create Projection Group 投影グループを作成 - + Create Clip クリップを作成 - + ClipGroupAdd クリップグループ追加 - + ClipGroupRemove クリップグループ削除 - + Save page to DXF 用紙をDXFファイルに保存 - - + + Create Symbol 記号を作成 - + Create DraftView 基本設計ビューを作成 - + Create ArchView 建築ビューを作成 - - + + Create spreadsheet view スプレッドシートビューを作成 - + Save page to dxf 用紙をDXFファイルに保存 @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.寸法を作成 - + Create Hatch ハッチングを作成 - + Update Hatch ハッチングを更新 - + Remove old Hatch 古いハッチングを削除 - + Create GeomHatch 幾何ハッチングを作成 - - + + Create Image 画像を作成 - + Drag Balloon 吹き出しをドラッグ @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.寸法をドラッグ - + Create Balloon 吹き出しを作成 - + Create ActiveView アクティブビューを作成 @@ -2643,7 +2643,7 @@ Without a selection, a file browser lets you select a SVG or image file. View Direction as Angle - View Direction as Angle + ビュー方向(角度) @@ -2658,7 +2658,7 @@ Without a selection, a file browser lets you select a SVG or image file. Advance the view direction in anti-clockwise direction. - Advance the view direction in anti-clockwise direction. + 反時計回り方向にビュー方向を前進 @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection 誤った選択 - - + + No Shapes, Groups or Links in this selection シェイプ、グループ、リンクが選択されていません。 - + Empty selection 選択されていません - + Select a SVG or Image file to open 開きたいSVGまたは画像ファイルを選択してください - + SVG or Image files SVGまたは画像ファイル - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection 選択されているものの中に壊れているオブジェクトは見つかりませんでした。 - - + + Select at least 1 DrawViewPart object as Base. ベースとして少なくとも1つのDrawViewPartオブジェクトを選択してください。 - + I do not know what base view to use. どのベースビューを使用するのかわかりません。 - + No Base View, Shapes, Groups or Links in this selection ベーsyビュー、シェイプ、グループ、リンクが選択されていません。 - + No profile object found in selection プロファイルオブジェクトが選択されていません。 - + Please select only 1 BIM Section. BIMセクションを1つだけ選択して下さい。 - + No BIM Sections in selection. BIM断面が選択されていません。 - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first 最初にオブジェクトを選択してください - + Too many objects selected 選択されているオブジェクトが多すぎます。 - + Create a page first. 最初に用紙を作成してください - + No View of a Part in selection. パートのビューが選択されていません。 - + Select one Clip group and one View. クリップグループ、ビューをそれぞれ1つ選択してください。 - + Select exactly one View to add to group. グループに追加するビューを1つだけ選択してください。 - + Select exactly one Clip group. クリップグループを1つだけ選択してください。 - + Clip and View must be from same Page. クリップとビューは同じ用紙のものである必要があります。 - + Select exactly one View to remove from Group. グループから取り除くビューを1つだけ選択してください。 - + View does not belong to a Clip ビューはクリップに属していません。 - + Choose an SVG file to open 開くSVGファイルを選択 - + Scalable Vector Graphic スケーラブル・ベクター・グラフィック - - + + All Files すべてのファイル - + Select at least one object. 少なくとも1つのオブジェクトを選択してください。 - + Select exactly one Spreadsheet object. スプレッドシートオブジェクトを一つだけ選択してください。 - + No Drawing View 図面ビューがありません。 - + Open Drawing View before attempting export to SVG. SVGへのエクスポートを試みる前に図面ビューを開きます。 - + Can not export selection 選択範囲がエクスポートできません - + Page contains DrawViewArch which will not be exported. Continue? エクスポートできないDrawViewArchが用紙に含まれています。エクスポートを実行しますか? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-スプライン曲線の警告 - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.%1 が選択されていません。 - + Replace Hatch? ハッチングを置き換えますか? - + Some Faces in selection are already hatched. Replace? 選択中の面はすでにハッチングされています。置き換えしますか? - + No TechDraw Page 技術図面の用紙がありません。 - + Need a TechDraw Page for this command このコマンドには技術図面の用紙が必要です。 - + Select a Face first 最初に面を選択してください - + No TechDraw object in selection 選択対象に技術図面オブジェクトが含まれていません。 - + Create a page to insert. 挿入する用紙を作成 - - + + No Faces to hatch in this selection このセクションにはハッチングをする面がありません。 @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.ドキュメントに技術図面の用紙がありません。 - + PDF (*.pdf) PDF(*.pdf) - - + + All Files (*.*) 全てのファイル (*.*) - + Export Page As PDF 用紙をPDFファイルにエクスポート - + SVG (*.svg) SVG(*.svg) - + Export page as SVG 用紙をSVGファイルにエクスポート @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.記号を選択 - + ActiveView to TD View アクティブビューからTDビューへ - + No Main Window メインウィンドウがありません。 - + Can not find the main window メインウィンドウが見つかりません。 - + No 3D Viewer 3D ビューアーがありません。 - + Can not find a 3D viewer 3D ビューアーが見つかりません。 @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch 面のハッチングを作成 - + Edit Face Hatch 面のハッチングを編集 @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.パラメーターエラー - + Document Name: ドキュメント名 @@ -4385,8 +4385,8 @@ This directory will be used for the symbol selection. line segments returned by the hidden line removal algorithm. Faces must be detected in order to use hatching, but there can be a performance penalty in complex models. - ここにチェックを入れると、技術図面は、かくれ線削除アルゴリズムの結果より線分のセグメントを用いた面を構築しようとします。 -ハッチングを用いるために面検出を必要としていますが、複雑なモデルになるとパフォーマンスが低下する可能性があります。 + チェックされている場合、TechDraw は隠線削除アルゴリズムの結果による線分を用いて面の構築を試みます。 +ハッチングを用いるためには面検出が必要ですが、複雑なモデルではパフォーマンス上の問題が起きることがあります。 @@ -4611,6 +4611,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + 吹き出しの引き出し線の基線長さ + Broken View Break Type @@ -4699,7 +4704,7 @@ Then you need to increase the tile limit. This checkbox controls whether or not to display the outline around a detail view. - This checkbox controls whether or not to display the outline around a detail view. + このチェックボックスは、詳細ビューの周囲に外形線を表示するかどうかを制御します。 @@ -4716,11 +4721,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader 吹き出し引き出し線の水平部の長さ - - - Ballon Leader Kink Length - 吹き出しの引き出し線の基線長さ - Length of balloon leader line kink @@ -5570,7 +5570,7 @@ for ProjectionGroups If checked, the 3d camera direction (or normal of a selected face) will be used as the view direction. If not checked, Views will be created as Front Views. - If checked, the 3d camera direction (or normal of a selected face) will be used as the view direction. If not checked, Views will be created as Front Views. + チェックされている場合、3Dカメラ方向 (または選択した面の法線) がビュー方向として使用されます。 チェックされていない場合、ビューは前面ビューとして作成されます。 @@ -5580,7 +5580,7 @@ for ProjectionGroups If checked, view labels will be displayed even when frames are suppressed. - If checked, view labels will be displayed even when frames are suppressed. + チェックされている場合、フレームを抑制した場合でもビューラベルが表示されます。 @@ -5590,27 +5590,27 @@ for ProjectionGroups Snapping - Snapping + スナップ Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + ドラッグ時にビューを配置位置にスナップさせる場合は、このボックスにチェックを入れます。 Snap View Alignment - Snap View Alignment + ビュー配置のスナップ View Snapping Factor - View Snapping Factor + ビューのスナップ用係数 When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + ビューのドラッグ時に、適切な配置のビューサイズの範囲内にある場合、ビューが配置位置にスナップします。 @@ -5839,89 +5839,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated 自動更新を切り替え(&K) - + Toggle &Frames フレームを切り替え(&F) - + &Export SVG &SVGファイルにエクスポート - + Export DXF DXFファイルにエクスポート - + Export PDF PDFファイルにエクスポート - + Print All Pages 全ての用紙を印刷 - + Different orientation 異なる向き - + The printer uses a different orientation than the drawing. Do you want to continue? プリンターは図面とは異なる向きで印刷します。このまま印刷しますか? - + Different paper size 別の用紙サイズ - + The printer uses a different paper size than the drawing. Do you want to continue? プリンターは図面とは異なるサイズの用紙に印刷します。このまま印刷しますか? - - Opening file failed - ファイルを開けませんでした - - - - Can not open file %1 for writing. - 書き込み用ファイル %1 を開けませんでした - - - + Save DXF file DXFファイルを保存 - + DXF (*.dxf) DXF(*.dxf) - + Save PDF file PDFファイルを保存 - + PDF (*.pdf) PDF(*.pdf) - + Selected: 選択済み @@ -6388,7 +6378,7 @@ Do you want to continue? Can not continue. Object * %1 or %2 not found. - Can not continue. Object * %1 or %2 not found. + 続行できません。オブジェクト * %1 または %2 が見つかりません。 @@ -6961,7 +6951,7 @@ Custom: custom scale factor is used Assign same value to over and under tolerance - Assign same value to over and under tolerance + 上下限公差に同じ値を割り当て @@ -7008,8 +6998,7 @@ by negative value of 'Over Tolerance'. If checked the content of 'Format Spec' will be used instead of the dimension value - If checked the content of 'Format Spec' will -be used instead of the dimension value + チェックした場合、寸法値の代わりに'フォーマット指定'の内容が使用されます。 @@ -7693,7 +7682,7 @@ You can pick further points to get line segments. Set document front view as primary direction. - Set document front view as primary direction. + ドキュメントの前面ビューを主方向に設定します。 @@ -7703,7 +7692,7 @@ You can pick further points to get line segments. Set direction of the camera, or selected face if any, as primary direction. - Set direction of the camera, or selected face if any, as primary direction. + カメラ方向、または選択面がある場合はそれを主方向に設定します。 @@ -8466,7 +8455,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View 複雑な断面図を挿入 @@ -8527,7 +8516,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View 単純な断面ビューを挿入 @@ -9775,13 +9764,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View 破断ビューを挿入 diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ka.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ka.ts index b8a50033a6..fdbbcf9146 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ka.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ka.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw ტექნიკური ნახაზი - + Insert Active View (3D View) აქტიური ხედის ჩასმა (3D ხედი) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw ტექნიკური ნახაზი - + Insert BIM Workbench Object BIM სამუშაო მაგიდის ობიექტის ჩასმა - + Insert a View of a Section Plane from BIM Workbench BIM სამუშაო მაგიდიდან სიბრტყის კვეთის ხედის ჩასმა @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw ტექნიკური ნახაზი - + Insert Balloon Annotation სქოლიოს ანოტაციის ჩასმა @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw ტექნიკური ნახაზი - + Insert Clip Group კვეთების ჯგუფის ჩასმა @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw ტექნიკური ნახაზი - + Add View to Clip Group კვეთების ჯგუფში ხედის ჩამატება @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw ტექნიკური ნახაზი - + Remove View from Clip Group კვეთების ჯგუფიდან ხედის წაშლა @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw ტექნიკური ნახაზი - + Insert Complex Section View კომპლექსური ჭრილის ხედის ჩასმა - + Insert a Complex Section View კომპლექსური ჭრილის ხედის ჩასმა @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw ტექნიკური ნახაზი - + Insert Detail View ნაწილის ხედის ჩასმა @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw ტექნიკური ნახაზი - + Insert Draft Workbench Object ხაზვის სამუშაო მაგიდის ობიექტის ჩასმა - + Insert a View of a Draft Workbench object ხაზვის სამუშაო მაგიდიდან ობიექტის ხედის ჩასმა @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File ფაილი - + Export Page as DXF გვერდის DXF ფაილად გატანა - + Save DXF file DXF ფაილის შენახვა - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File ფაილი - + Export Page as SVG გვერდის SVG ფაილად გატანა @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw ტექნიკური ნახაზი - + Apply Geometric Hatch to Face ზედაპირზე გეომეტრიული დაშტრიხვის გადატარება @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw ტექნიკური ნახაზი - + Hatch a Face using Image File ზედაპირის დაშტრიხვა გამოსახულების ფაილის მიხედვით @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw ტექნიკური ნახაზი - + Insert Bitmap Image რასტრული გამოსახულების ჩასმა - - + + Insert Bitmap from a file into a page გვერდში ფაილიდან რასტრული გამოსახულების ჩასმა - + Select an Image File აირჩიეთ გამოსახულების ფაილი - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) გამოსახულების ფაილები (*.jpg *.jpeg *.png *.bmp);;ყველა ფაილი (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw ტექნიკური ნახაზი - + Insert Default Page ნაგულისხმევი გვერდის ჩასა @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw ტექნიკური ნახაზი - + Insert Page using Template ახალი გვერდის ჩამატება შაბლონის გამოყენებით - + Select a Template File აირჩიეთ შაბლონის ფაილი - + Template (*.svg) შაბლონი (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw ტექნიკური ნახაზი - + Print All Pages ყველა გვერდის დაბეჭდვა @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw ტექნიკური ნახაზი - + Project shape... პროექტის მოხაზულობა... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw ტექნიკური ნახაზი - + Insert Projection Group პროექციების ჯგუფის ჩასმა - + Insert multiple linked views of drawable object(s) ნახაზის ობიექტების მიბმული ხედების ჩასმა @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw ტექნიკური ნახაზი - + Redraw Page გვერდის თავიდან დახატვა @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw ტექნიკური ნახაზი - + Insert a simple or complex Section View მარტივი ან კომპლექსური კვეთის ხედის ჩასმა - + Section View სექციის ხედი - + Complex Section კომპლექსური კვეთა @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw ტექნიკური ნახაზი - + Insert Section View ხედის ჭრილის ჩასმა @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw ტექნიკური ნახაზი - + Insert Spreadsheet View ელცხრილის ხედის ჩასმა - + Insert View to a spreadsheet ელცხრილზე ხედის ჩამატება @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw ტექნიკური ნახაზი - + Insert SVG Symbol SVG სიმბოლოს ჩასმა - + Insert symbol from an SVG file სიმბოლოს SVG ფაილიდან ჩასმა @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw ტექნიკური ნახაზი - - + + Turn View Frames On/Off ჩარჩოების ელემენტების ჩასწორების ჩართ/გამორთ @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw ტექნიკური ნახაზი - + Insert View ხედის ჩამატება - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again ეს შეტყობინება აღარ მაჩვენო @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page ნახატის გვერდის შექმნა - + Create BIM View BIM ხედის შექმნა - + Create view ხედის შექმნა - + Create broken view გაფუჭებული ხედის შექმნა - + Create Projection Group პროექციის ჯგუფის შექმნა - + Create Clip კვეთის შექმნა - + ClipGroupAdd ხედის ჯგუფში ჩამატება - + ClipGroupRemove კვეთების ჯგუფის წაშლა - + Save page to DXF გვერდის DXF-ში შენახვა - - + + Create Symbol სიმბოლოს შექმნა - + Create DraftView DraftView-ის შექმნა - + Create ArchView ArchView-ის შექმნა - - + + Create spreadsheet view ელცხრილის შექმნა - + Save page to dxf გვერდის DXF-ში შენახვა @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.ზომის მითითება - + Create Hatch დაშტრიხვის შექმნა - + Update Hatch დაშტრიხვის განახლება - + Remove old Hatch ძველი დაშტრიხვის წაშლა - + Create GeomHatch გეომ-დაშტრიხვის შექმნა - - + + Create Image გამოსახულების შექმნა - + Drag Balloon სქოლიოს გადათრევა @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.ზომის გადათრევა - + Create Balloon სქოლიოს შექმნა - + Create ActiveView აქტიური ხედის შექმნა @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection არასწორი მონიშნული - - + + No Shapes, Groups or Links in this selection მონიშნულში არც მონახაზებია, არც ჯგუფები და არც ბმულები - + Empty selection არაფერია მონიშნული - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG ან გამოსახულების ფაილები - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection ამ მონიშნულში გაფუჭებული ობიექტები ვერ ვიპოვე - - + + Select at least 1 DrawViewPart object as Base. საბაზისოდ ერთი DrawViewPart ობიექტი მაინც მონიშნეთ. - + I do not know what base view to use. მე არ ვიცი, რომელი საბაზისო ხედი გამოვიყენო. - + No Base View, Shapes, Groups or Links in this selection მონიშნულში არც საბაზისო ხედებია, არც მონახაზები, არც ჯგუფები და არც ბმულები - + No profile object found in selection მონიშნულში პროფილის ობექტი ვერ ვიპოვე - + Please select only 1 BIM Section. აირჩიეთ მხოლოდ 1 BIM სექცია. - + No BIM Sections in selection. მონიშნულში BIM სექციები არაა. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first ჯერ აირჩიეთ ობიექტი - + Too many objects selected მონიშნულია მეტისმეტად ბევრი ობიექტი - + Create a page first. ჯერ შექმენით გვერდი. - + No View of a Part in selection. მონიშნულში არ არსებობს ნაწილის ხედი. - + Select one Clip group and one View. აირჩიეთ ერთი კვეთების ჯგუფი და ერთი ხედი. - + Select exactly one View to add to group. ჯგუფში ჩასამატებლად აირჩიეთ ერთი ცალი ხედი. - + Select exactly one Clip group. აირჩიეთ მხოლოდ ერთი კვეთების ჯგუფი. - + Clip and View must be from same Page. კვეთი და ხედი ერთ გვერდზე უნდა იყვნენ. - + Select exactly one View to remove from Group. აირჩიეთ ზუსტად ერთი ხედი ჯგუფიდან წასაშლელად. - + View does not belong to a Clip ხედი არ მიეკუთვნება კვეთს - + Choose an SVG file to open აირჩიეთ გასახსნელი SVG ფაილი - + Scalable Vector Graphic მასშტაბირებადი ვექტორული გრაფიკა - - + + All Files ყველა ფაილი - + Select at least one object. ერთი ობიექტი მაინც მონიშნეთ. - + Select exactly one Spreadsheet object. აირჩიეთ ელცხრილის ზუსტად ერთი ობიექტი. - + No Drawing View ნახაზის ხედები ნაპოვნი არაა - + Open Drawing View before attempting export to SVG. SVG-ში გატანის წინ ხატვის ხედის გახსნა. - + Can not export selection მონიშნულის გატანა შეუძლებელია - + Page contains DrawViewArch which will not be exported. Continue? გვერდი შეიცავს DrawViewArch-ს, რომელიც არ იქნება გატანილი. გავაგრძელო? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-სპლაინის რკალის გაფრთხილება - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.მონიშნულში %1 არ არსებობს - + Replace Hatch? შევცვალო დაშტრიხვა? - + Some Faces in selection are already hatched. Replace? ზოგიერთი ზედაპირი უკვე დაშტრიხულია. ჩავანაცვლო? - + No TechDraw Page ტექნიკური ნახაზი-ის გვერდი ნაპოვნი არაა - + Need a TechDraw Page for this command ბრძანებისთვის საჭიროა ტექნიკური ნახაზი-ის გვერდი - + Select a Face first ჯერ აირჩიეთ ზედაპირი - + No TechDraw object in selection მონიშნულში ტექნიკური ნახაზი-ის ობიექტი არ არსებობს - + Create a page to insert. ჩასასმელი გვერდის შექმნა. - - + + No Faces to hatch in this selection მონიშნულებში დასაშტრიხი ზედაპირები ნაპოვნი არაა @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.დოკუმენტში ნახაზის გვერდები არაა. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) ყველა ფაილი (*.*) - + Export Page As PDF გვერდის PDF ფაილად გატანა - + SVG (*.svg) SVG (*.svg) - + Export page as SVG გვერდის SVG ფაილად გატანა @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.აირჩიეთ ნიშანი - + ActiveView to TD View ActiveView-დან ტექნიკური ნახაზი-ს ხედამდე - + No Main Window მთავარი ფანჯრის გარეშე - + Can not find the main window ვერ ვპოულობ მთავარ ფანჯარას - + No 3D Viewer 3D მნახველის გარეშე - + Can not find a 3D viewer 3D მნახველი ვერ ვიპოვე @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch ზედაპირის დაშტრიხვის შექმნა - + Edit Face Hatch ზედაპირის დაშტრიხვის ჩასწორება @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.პარამეტრის შეცდომა - + Document Name: დოკუმენტის სახელი: @@ -4620,6 +4620,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + ბუშტის სქოლიოს მოღუნვის სიგრძე + Broken View Break Type @@ -4725,11 +4730,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader ოვალური სქოლიოს ჰორიზონტალური ნაწილის სიგრძე - - - Ballon Leader Kink Length - ოვალური სქოლიოს მოღუნვის სიგრძე - Length of balloon leader line kink @@ -5851,91 +5851,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated განახლებადობის &ჩართ/გამორთ - + Toggle &Frames ჩარჩოების ჩართ/გამორთ - + &Export SVG &SVG-ში გატანა - + Export DXF DXF-ის გატანა - + Export PDF PDF-ად გატანა - + Print All Pages ყველა გვერდის დაბეჭდვა - + Different orientation განსხვავებული ორიენტაცია - + The printer uses a different orientation than the drawing. Do you want to continue? პრინტერი ნახაზისგან განსხვავებულ ორიენტაციას იყენებს. გნებავთ გაგრძელება? - + Different paper size ფურცლის განსხვავებული ზომა - + The printer uses a different paper size than the drawing. Do you want to continue? პრინტერი იყენებს ქაღალდის განსხვავებულ ზომას, ვიდრე ნახაზი. გნებავთ, გააგრძელოთ? - - Opening file failed - ფაილის გახსნის შეცდომა - - - - Can not open file %1 for writing. - ჩასაწერად ფაილის „%1“ გახსნა შეუძლებელია. - - - + Save DXF file DXF ფაილის შენახვა - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file PDF ფაილის შენახვა - + PDF (*.pdf) PDF (*.pdf) - + Selected: არჩეულია: @@ -8486,7 +8476,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View კომპლექსური ჭრილის ხედის ჩასმა @@ -8547,7 +8537,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View მარტივი ხედის ჭრილის ჩასმა @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw ტექნიკური ნახაზი - - + + Insert Broken View გაფუჭებული ხედის ჩასმა diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ko.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ko.ts index 0db626ecff..f0ebc361c9 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ko.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ko.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw 기술도면 - + Insert Active View (3D View) 활성 뷰 삽입 (3D 뷰) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw 기술도면 - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw 기술도면 - + Insert Balloon Annotation 풍선 주석 삽입 @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw 기술도면 - + Insert Clip Group Clip 그룹 삽입 @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw 기술도면 - + Add View to Clip Group Clip 그룹에 뷰 추가 @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw 기술도면 - + Remove View from Clip Group Clip 그룹에서 뷰 제거 @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw 기술도면 - + Insert Complex Section View 복합 단면 삽입 - + Insert a Complex Section View 복합 단면을 삽입 합니다 @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw 기술도면 - + Insert Detail View 상세 뷰 삽입 @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw 기술도면 - + Insert Draft Workbench Object Draft 워크벤치 객체 삽입 - + Insert a View of a Draft Workbench object Draft 워크벤치 객체의 뷰 삽입 @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File 파일 - + Export Page as DXF 페이지를 DXF로 내보내기 - + Save DXF file DXF 파일 저장 - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File 파일 - + Export Page as SVG 페이지를 SVG로 내보내기 @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw 기술도면 - + Apply Geometric Hatch to Face Apply Geometric Hatch to Face @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw 기술도면 - + Hatch a Face using Image File Hatch a Face using Image File @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw 기술도면 - + Insert Bitmap Image Insert Bitmap Image - - + + Insert Bitmap from a file into a page Insert Bitmap from a file into a page - + Select an Image File Select an Image File - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw 기술도면 - + Insert Default Page Insert Default Page @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw 기술도면 - + Insert Page using Template Insert Page using Template - + Select a Template File Select a Template File - + Template (*.svg) Template (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw 기술도면 - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw 기술도면 - + Project shape... 프로젝트 모양... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw 기술도면 - + Insert Projection Group 투상도 삽입 - + Insert multiple linked views of drawable object(s) Insert multiple linked views of drawable object(s) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw 기술도면 - + Redraw Page Redraw Page @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw 기술도면 - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View 단면 보기 - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw 기술도면 - + Insert Section View Insert Section View @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw 기술도면 - + Insert Spreadsheet View Insert Spreadsheet View - + Insert View to a spreadsheet Insert View to a spreadsheet @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw 기술도면 - + Insert SVG Symbol Insert SVG Symbol - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw 기술도면 - - + + Turn View Frames On/Off Turn View Frames On/Off @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw 기술도면 - + Insert View Insert View - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Create BIM View - + Create view Create view - + Create broken view Create broken view - + Create Projection Group 투상도 생성 - + Create Clip Create Clip - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Create Symbol - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Save page to dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Create Dimension - + Create Hatch Create Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Create Image - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2666,12 +2666,12 @@ Without a selection, a file browser lets you select a SVG or image file. Save changes - Save changes + 변경사항 저장 Close editor - Close editor + 편집기 닫기 @@ -2681,23 +2681,23 @@ Without a selection, a file browser lets you select a SVG or image file. Undo (CTRL+Z) - Undo (CTRL+Z) + 실행취소(CTRL+Z) Undo - Undo + 실행취소 Redo - Redo + 다시 실행 Cut (CTRL+X) - Cut (CTRL+X) + 잘라내기(CTRL+X) @@ -2707,7 +2707,7 @@ Without a selection, a file browser lets you select a SVG or image file. Copy (CTRL+C) - Copy (CTRL+C) + 복사(CTRL+C) @@ -2717,12 +2717,12 @@ Without a selection, a file browser lets you select a SVG or image file. Paste (CTRL+V) - Paste (CTRL+V) + 붙여넣기(CTRL+V) Paste - Paste + 붙여넣기 @@ -2742,7 +2742,7 @@ Without a selection, a file browser lets you select a SVG or image file. Italic (CTRL+I) - Italic (CTRL+I) + 기울임체(CTRL+I) @@ -2752,7 +2752,7 @@ Without a selection, a file browser lets you select a SVG or image file. Underline (CTRL+U) - Underline (CTRL+U) + 밑줄(CTRL+U) @@ -2782,32 +2782,32 @@ Without a selection, a file browser lets you select a SVG or image file. Decrease indentation (CTRL+,) - Decrease indentation (CTRL+,) + 들여쓰기 감소(CTRL+,) Decrease indentation - Decrease indentation + 들여쓰기 감소 Increase indentation (CTRL+.) - Increase indentation (CTRL+.) + 들여쓰기 증기(CTRL+.) Increase indentation - Increase indentation + 들여쓰기 증가 Text foreground color - Text foreground color + 문자 전경색 Text background color - Text background color + 문자 배경색 @@ -2823,7 +2823,7 @@ Without a selection, a file browser lets you select a SVG or image file. More functions - More functions + 추가 기능 @@ -2833,22 +2833,22 @@ Without a selection, a file browser lets you select a SVG or image file. Heading 1 - Heading 1 + 제목 1 Heading 2 - Heading 2 + 제목 2 Heading 3 - Heading 3 + 제목 3 Heading 4 - Heading 4 + 제목 4 @@ -2883,7 +2883,7 @@ Without a selection, a file browser lets you select a SVG or image file. Link URL: - Link URL: + 연결 URL @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection 잘못 된 선택 - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Select at least 1 DrawViewPart object as Base. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection 선택한 것 중에 윤곽 객체가 없습니다 - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Select an object first - + Too many objects selected Too many objects selected - + Create a page first. 먼저 페이지를 작성합니다. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Select one Clip group and one View. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Select exactly one Clip group. - + Clip and View must be from same Page. Clip and View must be from same Page. - + Select exactly one View to remove from Group. Select exactly one View to remove from Group. - + View does not belong to a Clip View does not belong to a Clip - + Choose an SVG file to open 불러올 SVG 파일을 선택하세요 - + Scalable Vector Graphic 스케일러블 벡터 그래픽(SVG) - - + + All Files 모든 파일 - + Select at least one object. Select at least one object. - + Select exactly one Spreadsheet object. 스프레드시트 오브젝트를 하나만 선택하십시오. - + No Drawing View No Drawing View - + Open Drawing View before attempting export to SVG. Open Drawing View before attempting export to SVG. - + Can not export selection Can not export selection - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-조절곡선 경고 - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Replace Hatch? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page No TechDraw Page - + Need a TechDraw Page for this command Need a TechDraw Page for this command - + Select a Face first Select a Face first - + No TechDraw object in selection No TechDraw object in selection - + Create a page to insert. Create a page to insert. - - + + No Faces to hatch in this selection No Faces to hatch in this selection @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) All Files (*.*) - + Export Page As PDF Export Page As PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Export page as SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Select a symbol - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5548,7 +5548,7 @@ for ProjectionGroups Show Grid - Show Grid + 격자 보이기 @@ -5852,90 +5852,80 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Toggle &Keep Updated - + Toggle &Frames Toggle &Frames - + &Export SVG &Export SVG - + Export DXF Export DXF - + Export PDF PDF로 내보내기 - + Print All Pages Print All Pages - + Different orientation 다른 방향 - + 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? - + Different paper size 다른 용지 크기 - + The printer uses a different paper size than the drawing. Do you want to continue? 프린터가 사용중인 종이 크기가 현재 드로잉과는 다릅니다. 계속 진행하시겠습니까? - - Opening file failed - 파일 열기 실패 - - - - Can not open file %1 for writing. - Can not open file %1 for writing. - - - + Save DXF file DXF 파일 저장 - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: 선택: @@ -6232,7 +6222,7 @@ Do you want to continue? Weight - Weight + 가중치 @@ -7486,7 +7476,7 @@ You can pick further points to get line segments. Save changes - Save changes + 변경사항 저장 @@ -7534,7 +7524,7 @@ You can pick further points to get line segments. Weight - Weight + 가중치 @@ -8485,7 +8475,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8546,7 +8536,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9661,7 +9651,7 @@ there is an open task dialog. Center - 센터 + 중심 @@ -9796,13 +9786,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw 기술도면 - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_lt.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_lt.ts index 4bf0966071..735a4a16d9 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_lt.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_lt.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Techniniai brėžiniai - + Insert Active View (3D View) Insert Active View (3D View) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Techniniai brėžiniai - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Techniniai brėžiniai - + Insert Balloon Annotation Insert Balloon Annotation @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Techniniai brėžiniai - + Insert Clip Group Insert Clip Group @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Techniniai brėžiniai - + Add View to Clip Group Add View to Clip Group @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Techniniai brėžiniai - + Remove View from Clip Group Remove View from Clip Group @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Techniniai brėžiniai - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Techniniai brėžiniai - + Insert Detail View Insert Detail View @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Techniniai brėžiniai - + Insert Draft Workbench Object Insert Draft Workbench Object - + Insert a View of a Draft Workbench object Insert a View of a Draft Workbench object @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Failas - + Export Page as DXF Export Page as DXF - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Failas - + Export Page as SVG Export Page as SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Techniniai brėžiniai - + Apply Geometric Hatch to Face Taikyti geometrinį brūkšniavimą sienai @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Techniniai brėžiniai - + Hatch a Face using Image File Hatch a Face using Image File @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Techniniai brėžiniai - + Insert Bitmap Image Insert Bitmap Image - - + + Insert Bitmap from a file into a page Insert Bitmap from a file into a page - + Select an Image File Pasirinkti paveiksliuko rinkmeną - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Techniniai brėžiniai - + Insert Default Page Insert Default Page @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Techniniai brėžiniai - + Insert Page using Template Insert Page using Template - + Select a Template File Select a Template File - + Template (*.svg) Template (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Techniniai brėžiniai - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Techniniai brėžiniai - + Project shape... Projekcijų išvaizda... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Techniniai brėžiniai - + Insert Projection Group Insert Projection Group - + Insert multiple linked views of drawable object(s) Insert multiple linked views of drawable object(s) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Techniniai brėžiniai - + Redraw Page Redraw Page @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Techniniai brėžiniai - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Techniniai brėžiniai - + Insert Section View Insert Section View @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Techniniai brėžiniai - + Insert Spreadsheet View Insert Spreadsheet View - + Insert View to a spreadsheet Insert View to a spreadsheet @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Techniniai brėžiniai - + Insert SVG Symbol Insert SVG Symbol - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Techniniai brėžiniai - - + + Turn View Frames On/Off Turn View Frames On/Off @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Techniniai brėžiniai - + Insert View Insert View - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Create BIM View - + Create view Create view - + Create broken view Create broken view - + Create Projection Group Create Projection Group - + Create Clip Create Clip - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Create Symbol - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Save page to dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Create Dimension - + Create Hatch Create Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Create Image - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Netinkama pasirinktis - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Select at least 1 DrawViewPart object as Base. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Pirmiausia pasirinkite objektą - + Too many objects selected Pasirinkta per daug objektų - + Create a page first. Pirmiausia sukurkite puslapį. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Select one Clip group and one View. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Select exactly one Clip group. - + Clip and View must be from same Page. Papildomas vaizdas ir rodinys turi būti tame pačiame lape. - + Select exactly one View to remove from Group. Select exactly one View to remove from Group. - + View does not belong to a Clip Rodinys nepriklauso papildomam vaizdui/pjūviui - + Choose an SVG file to open Pasirinkite SVG failą atvėrimui - + Scalable Vector Graphic SVG vektorinis grafikas - - + + All Files Visi failai - + Select at least one object. Pažymėkite bent vieną objektą. - + Select exactly one Spreadsheet object. Pasirinkite tik vieną skaičiuoklės objektą. - + No Drawing View Nėra brėžinio vaizdo - + Open Drawing View before attempting export to SVG. Atidaryti brėžinio projekciją prieš bandant eksportuoti į SVG. - + Can not export selection Can not export selection - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.BSpline Curve Warning - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Replace Hatch? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page No TechDraw Page - + Need a TechDraw Page for this command Need a TechDraw Page for this command - + Select a Face first Select a Face first - + No TechDraw object in selection No TechDraw object in selection - + Create a page to insert. Create a page to insert. - - + + No Faces to hatch in this selection No Faces to hatch in this selection @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) All Files (*.*) - + Export Page As PDF Export Page As PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Export page as SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Select a symbol - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5852,89 +5852,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Toggle &Keep Updated - + Toggle &Frames Toggle &Frames - + &Export SVG & Eksportuoti SVG - + Export DXF Export DXF - + Export PDF Eksportuoti į PDF - + Print All Pages Print All Pages - + Different orientation Kitokia padėtis - + The printer uses a different orientation than the drawing. Do you want to continue? Spausdintuvas naudoja kitokią lapo padėtį nei brėžinys. Ar norite tęsti? - + Different paper size Kitoks popieriaus dydis - + The printer uses a different paper size than the drawing. Do you want to continue? Spausdintuvas naudoja kitokio dydžio lapą, nei brėžinys. Ar norite tęsti? - - Opening file failed - Failo atidarymas nepavyko - - - - Can not open file %1 for writing. - Can not open file %1 for writing. - - - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Pasirinktas: @@ -8487,7 +8477,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8548,7 +8538,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9798,13 +9788,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Techniniai brėžiniai - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_nl.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_nl.ts index 18ca247d7c..67bec8e965 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_nl.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_nl.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Voeg de actieve weergave in (3D-weergave) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Voeg een BIM werkbank object in - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Voeg een ballonannotatie in @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Voeg een uitsnijdingsgroep in @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Voeg een weergave toe aan uitsnijdingsgroep @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Verwijder een weergave van uitsnijdingsgroep @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Voeg een detailweergave in @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Voeg een Draft werkbank object in - + Insert a View of a Draft Workbench object Voeg een aanzicht van een Draft werkbank object toe @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Bestand - + Export Page as DXF Exporteer pagina als DXF - + Save DXF file Bewaar Dxf-bestand - + DXF (*.dxf) Dxf (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Bestand - + Export Page as SVG Exporteer pagina als SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Pas de geometrische arcering toe op een vlak @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Arceer een vlak met behulp van een afbeeldingsbestand @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Voeg een Bitmap-afbeelding in - - + + Insert Bitmap from a file into a page Voeg een Bitmap in vanuit een bestand in een pagina - + Select an Image File Kies een afbeeldingsbestand - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Voeg een standaardpagina in @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Voeg een pagina in met behulp van een sjabloon - + Select a Template File Selecteer een sjabloonbestand - + Template (*.svg) Sjabloon (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Alle pagina's afdrukken @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projectvorm... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Voeg een projectiegroep in - + Insert multiple linked views of drawable object(s) Voeg meerdere gelinkte weergaven van het/de object(en) in @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Herteken pagina @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Doorsnede weergave - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Voeg een sectieweergave in @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Voeg een rekenbladweergave in - + Insert View to a spreadsheet Weergave toevoegen aan een rekenblad @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Vog een SVG-symbool in - + Insert symbol from an SVG file Symbool invoegen van een SVG-bestand @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Zet View Frames aan of uit @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View Weergave toevoegen - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Toekennen maken pagina - + Create BIM View Create BIM View - + Create view Weergave maken - + Create broken view Create broken view - + Create Projection Group Projectiegroep maken - + Create Clip Maak Doorsnede - + ClipGroupAdd DoorsnedeGroepToevoeger - + ClipGroupRemove DoorsnedeGroepVerwijder - + Save page to DXF Save page to DXF - - + + Create Symbol Maak Symbool - + Create DraftView Draftweergave maken - + Create ArchView Maak Arch Weergave - - + + Create spreadsheet view Rekenbladweergave maken - + Save page to dxf Pagina in dxf opslaan @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Dimensie maken - + Create Hatch Maar Arcering - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch GeomHatch aanmaken - - + + Create Image Afbeelding maken - + Drag Balloon Sleep de ballon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Dimensie slepen - + Create Balloon Ballon maken - + Create ActiveView Maak Actiefweergave @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Verkeerde selectie - - + + No Shapes, Groups or Links in this selection Geen vormen, groepen of links in deze selectie - + Empty selection Lege selectie - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Selecteer minstens 1 DrawViewPart-object als basis. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Selecteer eerst een object - + Too many objects selected Te veel objecten geselecteerd - + Create a page first. Maak eerst een pagina. - + No View of a Part in selection. Geen aanzicht van een onderdeel in de selectie. - + Select one Clip group and one View. Selecteer één clipgroep en één weergave. - + Select exactly one View to add to group. Selecteer precies één Aanzicht om aan groep toe te voegen. - + Select exactly one Clip group. Selecteer precies één Clip groep. - + Clip and View must be from same Page. Clip en weergave moeten van dezelfde pagina zijn. - + Select exactly one View to remove from Group. Selecteer precies één Aanzicht om van groep te verwijderen. - + View does not belong to a Clip Weergave behoort niet tot een clip - + Choose an SVG file to open Kies een SVG-bestand om te openen - + Scalable Vector Graphic Schaalbare vectorafbeelding - - + + All Files Alle bestanden - + Select at least one object. Selecteer minstens één object. - + Select exactly one Spreadsheet object. Selecteer exact één Spreadsheet-object. - + No Drawing View Geen tekenweergave - + Open Drawing View before attempting export to SVG. Open de tekenweergave voordat u probeert te exporteren naar SVG. - + Can not export selection Selectie kan niet worden geëxporteerd - + Page contains DrawViewArch which will not be exported. Continue? Pagina bevat DrawViewArch die niet zal worden geëxporteerd. Doorgaan? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Waarschuwing BSpline curve - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Geen %1 in selectie - + Replace Hatch? Arcering vervangen? - + Some Faces in selection are already hatched. Replace? Sommige vlakken in de selectie zijn al gearceerd. Vervangen? - + No TechDraw Page Geen TechDraw-pagina - + Need a TechDraw Page for this command Dit commando vereist een TechDraw-pagina - + Select a Face first Kies eerst een vlak - + No TechDraw object in selection Geen TechDraw-object in de selectie - + Create a page to insert. Maak een pagina om in te voegen. - - + + No Faces to hatch in this selection Geen vlakken om te arceren in deze sectie @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Geen tekenpagina's in het document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Alle bestanden (*.*) - + Export Page As PDF Exporteren als PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exporteren als SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Selecteer een symbool - + ActiveView to TD View Actiefweergave naar TD-weergave - + No Main Window Geen hoofdvenster - + Can not find the main window Kan hoofdvenster niet vinden - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Kniklengte van de tekstballon pijl + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Lengte van het horizontale gedeelte van de ballonleider - - - Ballon Leader Kink Length - Kinklengte van de ballonleider - Length of balloon leader line kink @@ -5852,90 +5852,80 @@ Snel, maar resulteert in een verzameling van korte rechte lijnen. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Schakel &KeepUpdated aan/uit - + Toggle &Frames Schakel &kaders aan/uit - + &Export SVG &Exporteer SVG - + Export DXF Exporteer DXF - + Export PDF Exporteren als PDF - + Print All Pages Alle pagina's afdrukken - + Different orientation Verschillende oriëntatie - + The printer uses a different orientation than the drawing. Do you want to continue? De printer gebruikt een andere richting dan de tekening. Wil je doorgaan? - + Different paper size Ander papierformaat - + The printer uses a different paper size than the drawing. Do you want to continue? De printer gebruikt een ander papierfromaat dan de tekening. Wilt u toch doorgaan? - - Opening file failed - Bestand openen mislukt - - - - Can not open file %1 for writing. - Kan bestand '%1' niet openen om te schrijven. - - - + Save DXF file Bewaar Dxf-bestand - + DXF (*.dxf) Dxf (*.dxf) - + Save PDF file Pdf-bestand opslaan - + PDF (*.pdf) PDF (*.pdf) - + Selected: Geselecteerd: @@ -8486,7 +8476,7 @@ met behulp van de gegeven X/Y afstand TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ met behulp van de gegeven X/Y afstand TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pl.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pl.ts index 03d12a9d40..6052224169 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pl.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pl.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Rysunek Techniczny - + Insert Active View (3D View) Wstaw aktywny widok (widok 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Rysunek Techniczny - + Insert BIM Workbench Object Wstaw obiekt środowiska pracy BIM - + Insert a View of a Section Plane from BIM Workbench Wstaw widok płaszczyzny przekroju ze środowiska pracy BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Rysunek Techniczny - + Insert Balloon Annotation Wstaw adnotację w formie dymka @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Rysunek Techniczny - + Insert Clip Group Wstaw grupę wycinków @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Rysunek Techniczny - + Add View to Clip Group Dodaj widok do grupy wycinków @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Rysunek Techniczny - + Remove View from Clip Group Usuń widok z grupy wycinków @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Rysunek Techniczny - + Insert Complex Section View Wstaw widok przekroju złożonego - + Insert a Complex Section View Wstawia widok przekroju złożonego @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Rysunek Techniczny - + Insert Detail View Wstaw widok szczegółu @@ -345,17 +345,17 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawDraftView - + TechDraw Rysunek Techniczny - + Insert Draft Workbench Object Wstaw obiekt środowiska pracy Rysunek Roboczy - + Insert a View of a Draft Workbench object Wstaw widok obiektu środowiska pracy Rysunek Roboczy @@ -363,22 +363,22 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawExportPageDXF - + File Plik - + Export Page as DXF Wyeksportuj stronę do formatu DXF - + Save DXF file Zapisz plik DXF - + DXF (*.dxf) DXF (*.dxf) @@ -386,12 +386,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawExportPageSVG - + File Plik - + Export Page as SVG Wyeksportuj stronę do formatu SVG @@ -1482,12 +1482,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawGeometricHatch - + TechDraw Rysunek Techniczny - + Apply Geometric Hatch to Face Zastosuj na powierzchni kreskowanie geometryczne @@ -1495,12 +1495,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawHatch - + TechDraw Rysunek Techniczny - + Hatch a Face using Image File Kreskowanie powierzchni za pomocą pliku obrazu @@ -1534,28 +1534,28 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawImage - + TechDraw Rysunek Techniczny - + Insert Bitmap Image Wstaw obraz bitmapy - - + + Insert Bitmap from a file into a page Wstaw na stronę bitmapę z pliku - + Select an Image File Wybierz plik z obrazem - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Pliki obrazów (*.jpg*.jpeg *.png *.bmp);; Wszystkie pliki (*) @@ -1628,12 +1628,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawPageDefault - + TechDraw Rysunek Techniczny - + Insert Default Page Wstaw nową domyślną stronę rysunku @@ -1641,22 +1641,22 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawPageTemplate - + TechDraw Rysunek Techniczny - + Insert Page using Template Wstaw nową stronę przy użyciu szablonu - + Select a Template File Wybierz plik szablonu - + Template (*.svg) Szablon (*.svg) @@ -1664,12 +1664,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawPrintAll - + TechDraw Rysunek Techniczny - + Print All Pages Drukuj wszystkie strony @@ -1677,12 +1677,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawProjectShape - + TechDraw Rysunek Techniczny - + Project shape... Rzutuj kształt... @@ -1690,17 +1690,17 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawProjectionGroup - + TechDraw Rysunek Techniczny - + Insert Projection Group Wstaw grupę rzutów - + Insert multiple linked views of drawable object(s) Wstaw wiele połączonych widoków kreślonego obiektu @@ -1734,12 +1734,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawRedrawPage - + TechDraw Rysunek Techniczny - + Redraw Page Przerysuj stronę @@ -1760,22 +1760,22 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawSectionGroup - + TechDraw Rysunek Techniczny - + Insert a simple or complex Section View Wstaw widok przekroju lub przekroju złożonego - + Section View Widok przekroju - + Complex Section Przekrój złożony @@ -1783,12 +1783,12 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawSectionView - + TechDraw Rysunek Techniczny - + Insert Section View Wstaw widok przekroju @@ -1809,17 +1809,17 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawSpreadsheetView - + TechDraw Rysunek Techniczny - + Insert Spreadsheet View Wstaw widok arkusza kalkulacyjnego - + Insert View to a spreadsheet Wstaw widok do arkusza kalkulacyjnego @@ -1930,17 +1930,17 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawSymbol - + TechDraw Rysunek Techniczny - + Insert SVG Symbol Wstaw symbol SVG - + Insert symbol from an SVG file Wstaw symbol z pliku SVG @@ -1948,13 +1948,13 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawToggleFrame - + TechDraw Rysunek Techniczny - - + + Turn View Frames On/Off Włącz / wyłącz wyświetlanie ramek @@ -1988,17 +1988,17 @@ Kliknięcie prawym przyciskiem myszy lub naciśnięcie Esc spowoduje anulowanie. CmdTechDrawView - + TechDraw Rysunek Techniczny - + Insert View Wstaw widok - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -2008,7 +2008,7 @@ płaszczyzny przekroju środowiska pracy Architektura . Praca bez zaznaczenia, umożliwia wybranie pliku SVG lub obrazu w przeglądarce plików. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Jeśli chcesz wstawić widok z istniejących obiektów, wybierz je przed wywołaniem tego narzędzia. @@ -2016,7 +2016,7 @@ Praca bez zaznaczenia spowoduje otworzenie przeglądarki plików, aby wstawić plik SVG lub obraz. - + Do not show this message again Nie pokazuj ponownie tego komunikatu @@ -2037,75 +2037,75 @@ aby wstawić plik SVG lub obraz. Command - - + + Drawing create page Tworzenie strony rysunku - + Create BIM View Utwórz widok BIM - + Create view Utwórz widok - + Create broken view Utwórz widok z przerwaniem - + Create Projection Group Utwórz grupę rzutowania - + Create Clip Utwórz wycinek - + ClipGroupAdd Dodaj grupę wycinków - + ClipGroupRemove Usuń grupę wycinków - + Save page to DXF Zapisz stronę do pliku DXF - - + + Create Symbol Utwórz symbol - + Create DraftView Utwórz widok rysunku roboczego - + Create ArchView Utwórz widok środowiska pracy Architektura - - + + Create spreadsheet view Utwórz widok arkusza kalkulacyjnego - + Save page to dxf Zapisz stronę do pliku dxf @@ -2305,33 +2305,33 @@ aby wstawić plik SVG lub obraz. Utwórz wymiar - + Create Hatch Utwórz kreskowanie - + Update Hatch Aktualizuj kreskowanie - + Remove old Hatch Usuń stare kreskowanie - + Create GeomHatch Utwórz kreskowanie geometryczne - - + + Create Image Utwórz obraz - + Drag Balloon Przeciągnij balonik dymka @@ -2341,12 +2341,12 @@ aby wstawić plik SVG lub obraz. Przeciągnij wymiar - + Create Balloon Utwórz balonik dymka - + Create ActiveView Utwórz aktywny widok @@ -2978,103 +2978,103 @@ aby wstawić plik SVG lub obraz. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Nieprawidłowy wybór - - + + No Shapes, Groups or Links in this selection Brak kształtów, grup lub odnośników w tym zaznaczeniu - + Empty selection Pusty wybór - + Select a SVG or Image file to open Wybierz plik SVG lub plik obrazu do otwarcia - + SVG or Image files Pliki SVG lub plik obrazów - + Please select objects to break or a base view and break definition objects. Wybierz obiekty do rozbicia lub widok podstawowy i obiekty definicji rozbicia. - + No Break objects found in this selection Nie znaleziono obiektów "Przerwa" w tym zaznaczeniu - - + + Select at least 1 DrawViewPart object as Base. Wybierz przynajmniej 1 obiekt DrawViewPart jako podstawę. - + I do not know what base view to use. Nie wiem, jaki widok bazowy zastosować. - + No Base View, Shapes, Groups or Links in this selection Brak widoku podstawowego, kształtów, grup i łączy w tym zaznaczeniu - + No profile object found in selection Nie znaleziono obiektu profilu w zaznaczeniu - + Please select only 1 BIM Section. Proszę wybrać tylko jeden przekrój środowiska BIM. - + No BIM Sections in selection. Brak przekrojów środowiska BIM w zaznaczeniu. - - - + + + - - - - + + + + Incorrect selection @@ -3082,102 +3082,102 @@ aby wstawić plik SVG lub obraz. - + Select an object first Najpierw wybierz obiekt - + Too many objects selected Wybrano zbyt wiele obiektów - + Create a page first. Najpierw utwórz stronę. - + No View of a Part in selection. Brak widoku części w wyborze. - + Select one Clip group and one View. Wybierz jedną grupę wycinków i jeden widok. - + Select exactly one View to add to group. Wybierz dokładnie jeden widok do dodania do grupy. - + Select exactly one Clip group. Wybierz dokładnie jedną grupę wycinków. - + Clip and View must be from same Page. Wycinek i widok muszą pochodzić z tej samej strony. - + Select exactly one View to remove from Group. Wybierz dokładnie jeden widok do usunięcia z grupy. - + View does not belong to a Clip Widok nie należy do wycinka - + Choose an SVG file to open Wybierz plik SVG do otwarcia - + Scalable Vector Graphic Skalowalna grafika wektorowa - - + + All Files Wszystkie pliki - + Select at least one object. Wybierz co najmniej jeden obiekt. - + Select exactly one Spreadsheet object. Wybierz dokładnie jeden obiekt Arkusza. - + No Drawing View Brak widoku rysunku - + Open Drawing View before attempting export to SVG. Otwórz widok rysunku przed próbą eksportu do SVG. - + Can not export selection Nie można wykonać eksportu zaznaczonych obiektów - + Page contains DrawViewArch which will not be exported. Continue? Strona zawiera obiekty DrawViewArch, które nie zostaną wyeksportowane. Kontynuować? @@ -3192,8 +3192,8 @@ aby wstawić plik SVG lub obraz. Ostrzeżenie o łukach krzywej złożonej - - + + @@ -3322,9 +3322,9 @@ Kontynuować? - - - + + + @@ -3373,9 +3373,9 @@ Kontynuować? - - - + + + @@ -3565,43 +3565,43 @@ Kontynuować? Brak %1 w zaznaczeniu - + Replace Hatch? Czy zastąpić kreskowanie? - + Some Faces in selection are already hatched. Replace? Niektóre wybrane ściany posiadają już kreskowanie. Zastąpić? - + No TechDraw Page Brak strony TechDraw - + Need a TechDraw Page for this command Potrzebujesz strony Rysunku Technicznego dla tego polecenia - + Select a Face first Najpierw wybierz ścianę - + No TechDraw object in selection Brak obiektu środowiska Rysunek Techniczny w zaznaczeniu - + Create a page to insert. Utwórz stronę do wstawienia. - - + + No Faces to hatch in this selection Brak ściany do zakreskowania w tym zaznaczeniu @@ -3622,28 +3622,28 @@ Kontynuować? Brak rysunków w dokumencie. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Wszystkie pliki (*.*) - + Export Page As PDF Wyeksportuj stronę do formatu PDF - + SVG (*.svg) SVG(*.svg) - + Export page as SVG Eksportuj stronę do formatu SVG @@ -3702,27 +3702,27 @@ Kontynuować? Wybierz symbol - + ActiveView to TD View Aktywny widok na stronę Rysunku Technicznego - + No Main Window Brak okna głównego - + Can not find the main window Nie można odnaleźć okna głównego - + No 3D Viewer Brak przeglądarki 3D - + Can not find a 3D viewer Nie można znaleźć przeglądarki 3D @@ -4000,12 +4000,12 @@ Kontynuować? gruba: %4 - + Create Face Hatch Zastosuj kreskowanie na powierzchni - + Edit Face Hatch Edytuj kreskowanie ściany @@ -4091,7 +4091,7 @@ Kontynuować? Błąd parametru - + Document Name: Nazwa Dokumentu: @@ -4703,6 +4703,11 @@ wyświetlane będą tylko znaczniki zmian, strzałki i symbole. Include Cut Line in Section Annotation Uwzględnij linię cięcia w adnotacji przekroju + + + Balloon Leader Kink Length + Długość zagięcia linii odniesienia dymka + Broken View Break Type @@ -4808,11 +4813,6 @@ wyświetlane będą tylko znaczniki zmian, strzałki i symbole. Length of horizontal portion of Balloon leader Długość poziomej linii odniesienia balonika - - - Ballon Leader Kink Length - Długość zagięcia linii odniesienia dymka - Length of balloon leader line kink @@ -5697,22 +5697,23 @@ etykiety widoku będą wyświetlane nawet po wyłączeniu ramek. Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Zaznacz to pole, jeśli chcesz, aby widoki przyciągały się do siebie podczas przeciągania. Snap View Alignment - Snap View Alignment + Przyciąganie wyrównania widoku View Snapping Factor - View Snapping Factor + Współczynnik przyciągania widoków When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + Podczas przeciągania widoku, jeśli mieści się on w tej części rozmiaru widoku, +w której znajduje się właściwe wyrównanie, zostanie on dopasowany. @@ -5941,90 +5942,80 @@ Szybkie, ale wynikiem jest kolekcja krótkich linii prostych. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Włącz / wyłącz &automatyczną aktualizację - + Toggle &Frames Włącz / wyłącz wyświetlanie &ramek - + &Export SVG &Eksportuj do formatu SVG - + Export DXF Eksportuj do formatu DXF - + Export PDF Eksportuj do formatu PDF - + Print All Pages Drukuj wszystkie strony - + Different orientation Odmienna orientacja - + The printer uses a different orientation than the drawing. Do you want to continue? Drukarka używa inną orientacje strony niż rysunek. Czy chcesz kontynuować? - + Different paper size Odmienny rozmiar papieru - + The printer uses a different paper size than the drawing. Do you want to continue? Drukarka używa innego rozmiaru papieru niż rysunek. Czy chcesz kontynuować? - - Opening file failed - Otwarcie pliku nie powiodło się - - - - Can not open file %1 for writing. - Nie można otworzyć pliku %1 do zapisu. - - - + Save DXF file Zapisz plik DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Zapisz plik PDF - + PDF (*.pdf) PDF (*.pdf) - + Selected: Zaznaczone: @@ -8525,7 +8516,7 @@ przy użyciu podanego odstępu X/Y Change Editable Field - Zmień edytowalne pole + Zmień pole edytowalne @@ -8577,7 +8568,7 @@ przy użyciu podanego odstępu X/Y TechDraw_ComplexSection - + Insert complex Section View Wstaw widok przekroju złożonego @@ -8640,7 +8631,7 @@ w punktach kwadrantu wybranych okręgów TechDraw_SectionView - + Insert simple Section View Wstaw widok przekroju @@ -9895,13 +9886,13 @@ ponieważ jest otwarte okno dialogowe zadania. CmdTechDrawBrokenView - + TechDraw Rysunek Techniczny - - + + Insert Broken View Wstaw widok z przerwaniem diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-BR.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-BR.ts index ee0c20cabc..9440d3e757 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-BR.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-BR.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - Desenhos Técnicos - + Insert Active View (3D View) Inserir Vista Ativa (vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - Desenhos Técnicos - + Insert BIM Workbench Object Inserir objeto da bancada BIM - + Insert a View of a Section Plane from BIM Workbench Inserir uma vista de um plano de corte da bancada BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - Desenhos Técnicos - + Insert Balloon Annotation Inserir anotação de balão @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - Desenhos Técnicos - + Insert Clip Group Inserir grupo de recorte @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - Desenhos Técnicos - + Add View to Clip Group Adicionar uma vista ao grupo de recorte @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - Desenhos Técnicos - + Remove View from Clip Group Remover vista do grupo de recorte @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - Desenhos Técnicos - + Insert Complex Section View Inserir Seção Complexa - + Insert a Complex Section View Inserir uma Seção Complexa @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - Desenhos Técnicos - + Insert Detail View Inserir vista de detalhe @@ -343,17 +343,17 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawDraftView - + TechDraw TechDraw - Desenhos Técnicos - + Insert Draft Workbench Object Inserir objeto da bancada Draft - + Insert a View of a Draft Workbench object Inserir uma vista de um objeto da bancada de trabalho Draft @@ -361,22 +361,22 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawExportPageDXF - + File Arquivo - + Export Page as DXF Exportar página como DXF - + Save DXF file Salvar arquivo DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawExportPageSVG - + File Arquivo - + Export Page as SVG Exportar Página como SVG @@ -1313,13 +1313,13 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. Add Cosmetic Thread Hole Bottom View - Add Cosmetic Thread Hole Bottom View + Adicionar vista inferior de furo de rosca cosmético Add a cosmetic thread to the top or bottom view of holes:<br>- Specify the line attributes (optional)<br>- Select one or more circles<br>- Click this tool - Add a cosmetic thread to the top or bottom view of holes:<br>- Specify the line attributes (optional)<br>- Select one or more circles<br>- Click this tool + Adicionar rosca cosmética à vista superior ou inferior de furos: <br>- Especifique os atributos da linha (opcional)<br>— Selecione um ou mais círculos<br>— Clique nesta ferramenta @@ -1333,13 +1333,13 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. Add Cosmetic Thread Hole Side View - Add Cosmetic Thread Hole Side View + Adicionar vista lateral de furo de rosca cosmético Add a cosmetic thread to the side view of a hole:<br>- Specify the line attributes (optional)<br>- Select two parallel lines<br>- Click this tool - Add a cosmetic thread to the side view of a hole:<br>- Specify the line attributes (optional)<br>- Select two parallel lines<br>- Click this tool + Adicionar rosca cosmética à vista lateral de um furo:<br>- Especifique os atributos da linha (opcional)<br>- Selecione duas linhas paralelas<br>- Clique nesta ferramenta @@ -1352,12 +1352,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. Add Cosmetic Thread Hole Side View - Add Cosmetic Thread Hole Side View + Adicionar vista lateral de furo de rosca cosmético Add a cosmetic thread to the side view of a hole:<br>- Specify the line attributes (optional)<br>- Select two parallel lines<br>- Click this tool - Add a cosmetic thread to the side view of a hole:<br>- Specify the line attributes (optional)<br>- Select two parallel lines<br>- Click this tool + Adicionar rosca cosmética à vista lateral de um furo<br>- Especifique os atributos da linha (opcional)<br>- Selecione duas linhas paralelas<br>- Clique nesta ferramenta @@ -1370,12 +1370,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. Add Cosmetic Intersection Vertex(es) - Add Cosmetic Intersection Vertex(es) + Adicionar interseção de vértice(s) cosmética(s) Add cosmetic vertex(es) at the intersection(s) of selected edges:<br>- Select two edges<br>- Click this tool - Add cosmetic vertex(es) at the intersection(s) of selected edges:<br>- Select two edges<br>- Click this tool + Adicionar vértice(s) cosmético(s) à(s) interseção(ões) das bordas selecionadas<br>- Selecione duas bordas<br>- Clique nesta ferramenta @@ -1417,12 +1417,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawGeometricHatch - + TechDraw TechDraw - Desenhos Técnicos - + Apply Geometric Hatch to Face Aplicar hachura geométrica numa face @@ -1430,12 +1430,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawHatch - + TechDraw TechDraw - Desenhos Técnicos - + Hatch a Face using Image File Chocar uma face usando um Arquivo de Imagem @@ -1469,30 +1469,30 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawImage - + TechDraw TechDraw - Desenhos Técnicos - + Insert Bitmap Image Inserir imagem Bitmap - - + + Insert Bitmap from a file into a page Insere um bitmap de um arquivo em uma Página - + Select an Image File Selecione um arquivo de imagem - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) - Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) + Arquivos de imagem (*.jpg *.jpeg *.png *.bmp);;Todos os arquivos (*) @@ -1563,12 +1563,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawPageDefault - + TechDraw TechDraw - Desenhos Técnicos - + Insert Default Page Inserir página padrão @@ -1576,22 +1576,22 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawPageTemplate - + TechDraw TechDraw - Desenhos Técnicos - + Insert Page using Template Inserir Página usando Modelo - + Select a Template File Selecione um arquivo de modelo - + Template (*.svg) Modelo (*.svg) @@ -1599,12 +1599,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawPrintAll - + TechDraw TechDraw - Desenhos Técnicos - + Print All Pages Imprimir todas as páginas @@ -1612,12 +1612,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawProjectShape - + TechDraw TechDraw - Desenhos Técnicos - + Project shape... Projetar forma... @@ -1625,17 +1625,17 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawProjectionGroup - + TechDraw TechDraw - Desenhos Técnicos - + Insert Projection Group Inserir grupo de projeção - + Insert multiple linked views of drawable object(s) Inserir várias vistas ligadas dos objetos desenháveis @@ -1669,12 +1669,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawRedrawPage - + TechDraw TechDraw - Desenhos Técnicos - + Redraw Page Redesenhar página @@ -1695,22 +1695,22 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawSectionGroup - + TechDraw TechDraw - Desenhos Técnicos - + Insert a simple or complex Section View - Insert a simple or complex Section View + Insira uma vista de corte simples ou complexa - + Section View Vista de Seção - + Complex Section Seção Complexa @@ -1718,12 +1718,12 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawSectionView - + TechDraw TechDraw - Desenhos Técnicos - + Insert Section View Inserir vista de corte @@ -1744,17 +1744,17 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawSpreadsheetView - + TechDraw TechDraw - Desenhos Técnicos - + Insert Spreadsheet View Inserir vista da Planilha - + Insert View to a spreadsheet Inserir vista em uma planilha @@ -1854,28 +1854,28 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. Create a Surface Finish Symbol - Create a Surface Finish Symbol + Criar um símbolo de conclusão de superfície Select a view<br> - click this button<br> - select surface finish symbol attributes in opened panel - Select a view<br> - click this button<br> - select surface finish symbol attributes in opened panel + Selecione uma vista<br>- clique neste botão<br>- selecione os atributos de conclusão de superfície no painel aberto CmdTechDrawSymbol - + TechDraw TechDraw - Desenhos Técnicos - + Insert SVG Symbol Inserir símbolo SVG - + Insert symbol from an SVG file Inserir o símbolo de um arquivo SVG @@ -1883,13 +1883,13 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawToggleFrame - + TechDraw TechDraw - Desenhos Técnicos - - + + Turn View Frames On/Off Ligar/desligar molduras das vistas @@ -1923,31 +1923,31 @@ Clique com o botão esquerdo em um espaço vazio para validar a dimensão atual. CmdTechDrawView - + TechDraw TechDraw - Desenhos Técnicos - + Insert View Inserir uma vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - Insert a View in current page. -Selected objects, spreadsheets or Arch WB section planes will be added. -Without a selection, a file browser lets you select a SVG or image file. + Insira uma vista na página ativa. +Objetos selecionados, folhas ou planos de corte da bancada Arch serão adicionados. +Caso não haja seleção, um navegador permitirá selecionar um arquivo no formato SVG ou outro formato de imagem. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. + Se desejar inserir uma vista de objetos existentes, por favor selecione-os antes de recorrer a esta ferramenta. Caso não haja seleção, um navegador será aberto, para inserção de um arquivo no formato SVG ou outro formato de imagem. - + Do not show this message again Não mostrar esta mensagem novamente @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Criar página - + Create BIM View Criar vista BIM - + Create view Criar vista - + Create broken view Criar vista quebrada - + Create Projection Group Criar grupo de projeção - + Create Clip Criar recorte - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Salvar página em DXF - - + + Create Symbol Criar símbolo - + Create DraftView Criar vista Draft - + Create ArchView Criar vista Arch - - + + Create spreadsheet view Criar vista de planilha - + Save page to dxf Salvar página para dxf @@ -2090,36 +2090,36 @@ Without a selection, a file browser lets you select a SVG or image file. Add DistanceX Chamfer dimension - Add DistanceX Chamfer dimension + Adicionar DistânciaX de dimensão de chanfro Add horizontal chain dimensions - Add horizontal chain dimensions + Adicionar dimensões horizontais em cadeia Add horizontal coordinate dimensions - Add horizontal coordinate dimensions + Adicionar dimensões de coordenadas horizontais Add 3-points angle dimension - Add 3-points angle dimension + Adicionar dimensão de ângulo com três pontos Add horizontal chain dimension - Add horizontal chain dimension + Adicionar dimensão horizontal em cadeia Add point to line Distance dimension - Add point to line Distance dimension + Adicionar ponto à dimensão de distância linear @@ -2136,12 +2136,12 @@ Without a selection, a file browser lets you select a SVG or image file. Add circle to line Distance dimension - Add circle to line Distance dimension + Adicionar círculo à dimensão de distância linear Add ellipse to line Distance dimension - Add ellipse to line Distance dimension + Adicionar elipse à dimensão de distância linear @@ -2157,12 +2157,12 @@ Without a selection, a file browser lets you select a SVG or image file. Add circle to circle Distance dimension - Add circle to circle Distance dimension + Adicionar círculo à dimensão de distância circular Add ellipse to ellipse Distance dimension - Add ellipse to ellipse Distance dimension + Adicionar elipse à dimensão de distância elíptica @@ -2177,52 +2177,52 @@ Without a selection, a file browser lets you select a SVG or image file. Add DistanceX dimension - Add DistanceX dimension + Adicionar dimensão de DistânciaX Add DistanceY Chamfer dimension - Add DistanceY Chamfer dimension + Adicionar dimensão de DistânciaY de chanfro Add DistanceY dimension - Add DistanceY dimension + Adicionar dimensão de DistânciaY Add DistanceX extent dimension - Add DistanceX extent dimension + Adicionar dimensão de DistânciaX de extensão Add DistanceY extent dimension - Add DistanceY extent dimension + Adicionar dimensão de DistânciaY de extensão Add horizontal coord dimensions - Add horizontal coord dimensions + Adicionar dimensões de corda horizontais Add vertical chain dimensions - Add vertical chain dimensions + Adicionar dimensões verticais em cadeia Add vertical coord dimensions - Add vertical coord dimensions + Adicionar dimensões de corda verticais Add oblique chain dimensions - Add oblique chain dimensions + Adicionar dimensões oblíquas em cadeia Add oblique coord dimensions - Add oblique coord dimensions + Adicionar dimensões oblíquas de corda @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Criar dimensão - + Create Hatch Criar hachura - + Update Hatch Atualizar hachura - + Remove old Hatch Remover hachura antiga - + Create GeomHatch Criar hachura geométrica - - + + Create Image Criar imagem - + Drag Balloon Arrastar Balão @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Arrastar Dimensão - + Create Balloon Criar Balão - + Create ActiveView Criar vista ativa @@ -2289,12 +2289,12 @@ Without a selection, a file browser lets you select a SVG or image file. Create Cosmetic Circle - Create Cosmetic Circle + Criar Círculo Cosmético Update CosmeticCircle - Update CosmeticCircle + Atualizar Círculo Cosmético @@ -2339,7 +2339,7 @@ Without a selection, a file browser lets you select a SVG or image file. Create ComplexSection - Create ComplexSection + @@ -2390,7 +2390,7 @@ Without a selection, a file browser lets you select a SVG or image file. Pos Horiz Chain Dim - Pos Horiz Chain Dim + @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Seleção errada - - + + No Shapes, Groups or Links in this selection Sem formas, grupos ou links nesta seleção - + Empty selection Limpar seleção - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Selecione pelo menos 1 objeto DrawViewPart como Base. - + I do not know what base view to use. Eu não sei que visão a usar. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Selecione um objeto primeiro - + Too many objects selected Demasiados objetos selecionados - + Create a page first. Primeiro, crie uma página. - + No View of a Part in selection. Nenhuma vista de uma peça na seleção. - + Select one Clip group and one View. Selecione um grupo de Clip e uma Visão. - + Select exactly one View to add to group. Selecione exatamente uma vista para adicionar ao grupo. - + Select exactly one Clip group. Selecione exatamente um grupo de recorte. - + Clip and View must be from same Page. Recorte e Vista devem estar na mesma página. - + Select exactly one View to remove from Group. Selecione exatamente uma vista para remover do grupo. - + View does not belong to a Clip A Vista não pertence a um Clip - + Choose an SVG file to open Escolha um arquivo SVG para abrir - + Scalable Vector Graphic Gráficos vetoriais escaláveis (Svg) - - + + All Files Todos os Arquivos - + Select at least one object. Selecione pelo menos um objeto. - + Select exactly one Spreadsheet object. Selecione exatamente um objeto de planilha. - + No Drawing View Nenhuma Folha de desenho - + Open Drawing View before attempting export to SVG. Abra a folha de desenho antes de tentar a exportação de SVG. - + Can not export selection Não é possível exportar a seleção - + Page contains DrawViewArch which will not be exported. Continue? A página contém vistas de tipo DrawViewArch que não serão exportados. Continuar? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Aviso de curva BSpline - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Substituir a hachura? - + Some Faces in selection are already hatched. Replace? Algumas faces na seleção já estão hachuradas. Substituir? - + No TechDraw Page Nenhuma página TechDraw - + Need a TechDraw Page for this command Uma página TechDraw é necessária para este comando - + Select a Face first Selecione uma face primeiro - + No TechDraw object in selection Nenhum objeto TechDraw na seleção - + Create a page to insert. Crie uma página para inserir. - - + + No Faces to hatch in this selection Sem faces para preencher nesta seleção @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Não há páginas no documento. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Todos os arquivos (*.*) - + Export Page As PDF Exportar página para PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportar página para SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Selecione um símbolo - + ActiveView to TD View Vista ativa para vista TD - + No Main Window Sem Janela Principal - + Can not find the main window Não foi possível encontrar a janela principal - + No 3D Viewer Sem Visualizador 3D - + Can not find a 3D viewer Não é possível encontrar um visualizador 3D @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Comprimento de porção horizontal das linhas de balões - - - Ballon Leader Kink Length - Comprimento da dobra das linhas de balões - Length of balloon leader line kink @@ -5852,90 +5852,80 @@ Rápido, mas produz uma coleção de linhas retas simples. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Alternar manter atualizado &k - + Toggle &Frames Alternar Quadros &F - + &Export SVG &Exportar para SVG - + Export DXF Exportar para DXF - + Export PDF Exportar PDF - + Print All Pages Imprimir todas as páginas - + Different orientation Orientação diferente - + The printer uses a different orientation than the drawing. Do you want to continue? A impressora utiliza uma orientação diferente do que o desenho. Deseja continuar? - + Different paper size Tamanho de papel diferente - + The printer uses a different paper size than the drawing. Do you want to continue? A impressora usa um tamanho de papel diferente do que o desenho. Deseja continuar? - - Opening file failed - Falha ao abrir arquivo - - - - Can not open file %1 for writing. - Não é possível abrir o arquivo '%1' para a gravação. - - - + Save DXF file Salvar arquivo DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Selecionado: @@ -8454,7 +8444,7 @@ usando o espaçamento X/Y fornecido Check this box to reapply autofill to this field. - Check this box to reapply autofill to this field. + Marque esta caixa para reaplicar autopreenchimento neste campo. @@ -8486,7 +8476,7 @@ usando o espaçamento X/Y fornecido TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ usando o espaçamento X/Y fornecido TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - Desenhos Técnicos - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-PT.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-PT.ts index 85ad9a125f..45e64ffb31 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-PT.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_pt-PT.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Active View (3D View) Inserir a vista 3D ativa @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Balloon Annotation Inserir um balão de anotação @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Clip Group Inserir grupo de recorte @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw (Desenhos Técnicos) - + Add View to Clip Group Adicionar vista ao grupo de recorte @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw (Desenhos Técnicos) - + Remove View from Clip Group Remover vista do grupo de recorte @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Detail View Inserir vista de detalhe @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Draft Workbench Object Inserir objeto da bancada de trabalho Traço - + Insert a View of a Draft Workbench object Inserir uma vista de um objeto da bancada de trabalho Draft @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Ficheiro - + Export Page as DXF Exportar página como DXF - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Ficheiro - + Export Page as SVG Exportar página como SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw (Desenhos Técnicos) - + Apply Geometric Hatch to Face Aplica trama numa Vista @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw (Desenhos Técnicos) - + Hatch a Face using Image File Colocar Trama numa face usando um Ficheiro de Imagem @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Bitmap Image Inserir Imagem de Mapa de Bits - - + + Insert Bitmap from a file into a page Inserir ficheiro Mapa de bits numa página - + Select an Image File Selecione um Ficheiro de imagem - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Default Page Inserir Folha predefinida @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Page using Template Inserir Folha usando Modelo - + Select a Template File Selecione um Ficheiro de modelo - + Template (*.svg) Modelo (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw (Desenhos Técnicos) - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw (Desenhos Técnicos) - + Project shape... Projetar forma... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Projection Group Inserir grupo de projeção - + Insert multiple linked views of drawable object(s) Inserir varias vistas ligadas dos objeto(s) "desenháveis" @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw (Desenhos Técnicos) - + Redraw Page Redesenhar Folha @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw (Desenhos Técnicos) - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Section View Inserir Vista de Seção @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert Spreadsheet View Inserir Vista de Tabela (folha de cálculo) - + Insert View to a spreadsheet Inserir vista numa Tabela (folha de cálculo) @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw (Desenhos Técnicos) - + Insert SVG Symbol Inserir símbolo SVG - + Insert symbol from an SVG file Inserir símbolo de ficheiro SVG @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw (Desenhos Técnicos) - - + + Turn View Frames On/Off Ligar/desligar molduras das vistas @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw (Desenhos Técnicos) - + Insert View Inserir vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Criar folha de desenho - + Create BIM View Create BIM View - + Create view Criar vista - + Create broken view Create broken view - + Create Projection Group Criar Grupo de Projeção - + Create Clip Criar recorte - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Criar símbolo - + Create DraftView Create DraftView - + Create ArchView Criar Vista de Arquitetura - - + + Create spreadsheet view Criar vista de folha de cálculo - + Save page to dxf Salvar folha para dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Criar cotagem - + Create Hatch Criar Trama - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Criar TramaGeometrica - - + + Create Image Criar imagem - + Drag Balloon Arrastar Balão @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Arrastar Dimensão - + Create Balloon Criar Balão - + Create ActiveView Create ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Seleção errada - - + + No Shapes, Groups or Links in this selection Sem formas, grupos ou ligações nesta seleção - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Selecione pelo menos 1 objeto DrawViewPart como Base. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Selecione um objeto primeiro - + Too many objects selected Demasiados objetos selecionados - + Create a page first. Primeiro, crie uma página. - + No View of a Part in selection. Nenhuma vista de uma peça na seleção. - + Select one Clip group and one View. Selecione um grupo de recorte e uma vista. - + Select exactly one View to add to group. Selecione exatamente uma vista para adicionar ao grupo. - + Select exactly one Clip group. Selecione exatamente um grupo de recorte. - + Clip and View must be from same Page. Recorte e Vista devem estar na mesma folha. - + Select exactly one View to remove from Group. Selecione exatamente uma vista para remover do grupo. - + View does not belong to a Clip A Vista não pertence a um recorte - + Choose an SVG file to open Escolha um ficheiro SVG para abrir - + Scalable Vector Graphic Gráficos vetoriais escaláveis (Svg) - - + + All Files Todos os Ficheiros - + Select at least one object. Selecione pelo menos um objeto. - + Select exactly one Spreadsheet object. Selecione apenas um objeto folha de cálculo. - + No Drawing View Nenhuma Folha de desenho - + Open Drawing View before attempting export to SVG. Abra a folha de desenho antes de tentar a exportação de SVG. - + Can not export selection Não é possível exportar a seleção - + Page contains DrawViewArch which will not be exported. Continue? A página contém vistas de arquitetura que não serão exportados. Continuar? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Aviso de Curva BSpline - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Substituir a Trama? - + Some Faces in selection are already hatched. Replace? Algumas faces na seleção já estão sombreadas. Substituir? - + No TechDraw Page Nenhuma folha TechDraw - + Need a TechDraw Page for this command É necessária uma folha TechDraw para este comando - + Select a Face first Seleccione uma face primeiro - + No TechDraw object in selection Nenhum objeto TechDraw na seleção - + Create a page to insert. Criar uma página para inserir. - - + + No Faces to hatch in this selection Sem faces para preencher nesta seleção @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Não há folhas de desenho no documento. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Todos os Ficheiros (*. *) - + Export Page As PDF Exportar folha como PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportar folha como SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Selecione um símbolo - + ActiveView to TD View Vista Ativa para a vista TD - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5852,89 +5852,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Alternar &manter atualizado - + Toggle &Frames Alternar &Molduras - + &Export SVG &Exportar SVG - + Export DXF Exportar DXF - + Export PDF Exportar PDF - + Print All Pages Print All Pages - + Different orientation Orientação diferente - + The printer uses a different orientation than the drawing. Do you want to continue? A impressora utiliza uma orientação diferente da folha de desenho. Deseja continuar? - + Different paper size Tamanho de papel diferente - + The printer uses a different paper size than the drawing. Do you want to continue? A impressora usa um tamanho de papel diferente da folha de desenho. Deseja continuar? - - Opening file failed - Falha ao abrir ficheiro - - - - Can not open file %1 for writing. - Não é possível abrir o ficheiro %1 para a escrita. - - - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Selecionado: @@ -8485,7 +8475,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8546,7 +8536,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9796,13 +9786,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw (Desenhos Técnicos) - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ro.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ro.ts index ba1862818c..cd6e3bba48 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ro.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ro.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Desen tehnic - + Insert Active View (3D View) Inserare Vedere Activă (vizualizare 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Desen tehnic - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Desen tehnic - + Insert Balloon Annotation Insert Balloon Annotation @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Desen tehnic - + Insert Clip Group Insert Clip Group @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Desen tehnic - + Add View to Clip Group Add View to Clip Group @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Desen tehnic - + Remove View from Clip Group Remove View from Clip Group @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Desen tehnic - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Desen tehnic - + Insert Detail View Insert Detail View @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Desen tehnic - + Insert Draft Workbench Object Insert Draft Workbench Object - + Insert a View of a Draft Workbench object Insert a View of a Draft Workbench object @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Fişier - + Export Page as DXF Export Page as DXF - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Fişier - + Export Page as SVG Export Page as SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Desen tehnic - + Apply Geometric Hatch to Face Aplicați o hașură geometrică pe o fațetă @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Desen tehnic - + Hatch a Face using Image File Hatch a Face using Image File @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Desen tehnic - + Insert Bitmap Image Insert Bitmap Image - - + + Insert Bitmap from a file into a page Insert Bitmap from a file into a page - + Select an Image File Selectează o imagine - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Desen tehnic - + Insert Default Page Insert Default Page @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Desen tehnic - + Insert Page using Template Insert Page using Template - + Select a Template File Select a Template File - + Template (*.svg) Șablon (*.SVG) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Desen tehnic - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Desen tehnic - + Project shape... Proiectează forma... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Desen tehnic - + Insert Projection Group Insert Projection Group - + Insert multiple linked views of drawable object(s) Insert multiple linked views of drawable object(s) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Desen tehnic - + Redraw Page Redraw Page @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Desen tehnic - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Vizualizare secțiune - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Desen tehnic - + Insert Section View Insert Section View @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Desen tehnic - + Insert Spreadsheet View Insert Spreadsheet View - + Insert View to a spreadsheet Insert View to a spreadsheet @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Desen tehnic - + Insert SVG Symbol Introduceți SVG & Simbol - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Desen tehnic - - + + Turn View Frames On/Off Turn View Frames On/Off @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Desen tehnic - + Insert View Insert View - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Create BIM View - + Create view Create view - + Create broken view Create broken view - + Create Projection Group Create Projection Group - + Create Clip Create Clip - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Create Symbol - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Save page to dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Create Dimension - + Create Hatch Create Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Create Image - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selecţie greşită - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Selectaţi cel puţin 1 obiect DrawViewPart ca bază. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Selectaţi un obiect mai întâi - + Too many objects selected Prea multe obiecte selectate - + Create a page first. Creați /selectați o pagină mai întâi. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Select one Clip group and one View. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Select exactly one Clip group. - + Clip and View must be from same Page. Clip şi View trebuie să fie din aceeaşi pagină. - + Select exactly one View to remove from Group. Select exactly one View to remove from Group. - + View does not belong to a Clip View nu aparține unui Clip - + Choose an SVG file to open Alegeţi un fişier SVG pentru deschidere - + Scalable Vector Graphic Vector Grafic Scalabil (Svg) - - + + All Files Toate fișierele - + Select at least one object. Selectaţi cel puţin un obiect. - + Select exactly one Spreadsheet object. Selectați doar un singur obiect tip foaie de calcul Spreadsheet. - + No Drawing View Nu vezi desen în plan - + Open Drawing View before attempting export to SVG. Deschide vederea în plan înainte de a încerca exportul ca SVG. - + Can not export selection Can not export selection - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.BSpline Curve Warning - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Replace Hatch? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page Nici o pagină de TechDraw - + Need a TechDraw Page for this command Aveți nevoie de o TechDraw Page pentru această comandă - + Select a Face first Selectaţi mai întâi o fațetă - + No TechDraw object in selection Nici un obiect de TechDraw în selecţie - + Create a page to insert. Creează o pagină pentru inserare - - + + No Faces to hatch in this selection Nici o fațetă în această selecţie @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Toate fișierele (*.*) - + Export Page As PDF Exportă pagina ca PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportă pagina ca SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Select a symbol - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5852,89 +5852,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Comuta & actualizează - + Toggle &Frames Comutare & cadre - + &Export SVG & Export SVG - + Export DXF Exportă PDF - + Export PDF Exportă PDF - + Print All Pages Print All Pages - + Different orientation Orientare diferită - + The printer uses a different orientation than the drawing. Do you want to continue? Imprimanta utilizează o orientare diferită decât desenul. Doriţi să continuaţi? - + Different paper size Hârtie de dimensiune diferită - + The printer uses a different paper size than the drawing. Do you want to continue? Imprimanta utilizează o altă dimensiune de hârtie decât desenul. Doriţi să continuaţi? - - Opening file failed - Deschiderea fișierului a eșuat - - - - Can not open file %1 for writing. - Imposibil de deschis fișierul %1 la scriere. - - - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Selectat: @@ -8486,7 +8476,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Desen tehnic - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ru.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ru.ts index 6425ccf525..82a2b053d8 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ru.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_ru.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Технический чертёж - + Insert Active View (3D View) Вставить Активный вид (3D Вид) @@ -127,30 +127,30 @@ CmdTechDrawArchView - + TechDraw Технический чертёж - + Insert BIM Workbench Object - Insert BIM Workbench Object + Вставить объект рабочего стола BIM - + Insert a View of a Section Plane from BIM Workbench - Insert a View of a Section Plane from BIM Workbench + Вставьте вид плоскости сечения из BIM Workbench CmdTechDrawBalloon - + TechDraw Технический чертёж - + Insert Balloon Annotation Вставить примечание в выноску @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Технический чертёж - + Insert Clip Group Создать группу Видов @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Технический чертёж - + Add View to Clip Group Добавляет Вид в группу @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Технический чертёж - + Remove View from Clip Group Удалить Вид из группы @@ -215,19 +215,19 @@ CmdTechDrawComplexSection - + TechDraw Технический чертёж - + Insert Complex Section View - Insert Complex Section View + Вставить вид сложного сечения - + Insert a Complex Section View - Insert a Complex Section View + Вставить вид комплексного разреза @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Технический чертёж - + Insert Detail View Вставить выносной элемент @@ -335,25 +335,25 @@ Dimension contextually based on your selection. Depending on your selection you might have several dimensions available. You can cycle through them using the M key. Left clicking on empty space will validate the current Dimension. Right clicking or pressing Esc will cancel. - Dimension contextually based on your selection. -Depending on your selection you might have several dimensions available. You can cycle through them using the M key. -Left clicking on empty space will validate the current Dimension. Right clicking or pressing Esc will cancel. + Контекстное измерение на основе вашего выбора. +В зависимости от вашего выбора у вас может быть несколько доступных измерений. Вы можете переключаться между ними с помощью клавиши M. +Нажатие левой кнопкой мыши на пустом месте подтвердит текущее измерение. Щелчок правой кнопкой мыши или нажатие клавиши Esc отменит действие. CmdTechDrawDraftView - + TechDraw Технический чертёж - + Insert Draft Workbench Object Вставить Объект верстака Draft - + Insert a View of a Draft Workbench object Вставить вид объекта из верстака Draft @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Файл - + Export Page as DXF Экспорт листа в DXF - + Save DXF file Сохранить файл в DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Файл - + Export Page as SVG Экспорт листа в SVG @@ -427,7 +427,7 @@ Left clicking on empty space will validate the current Dimension. Right clicking Select several faces then click this tool - Select several faces then click this tool + Выбрать несколько граней- Щёлкните этот инструмент @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Технический чертёж - + Apply Geometric Hatch to Face Применить геометрическую штриховку к грани @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Технический чертёж - + Hatch a Face using Image File Штриховать грань, используя файл изображения @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Технический чертёж - + Insert Bitmap Image Вставить растровое изображение - - + + Insert Bitmap from a file into a page Вставить растровое изображение из файла на страницу - + Select an Image File Выберите файл изображения - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Файлы изображений (*.jpg *.jpeg *.png *.bmp);;Все файлы (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Технический чертёж - + Insert Default Page Вставить страницу по умолчанию @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Технический чертёж - + Insert Page using Template Вставить страницу используя шаблон - + Select a Template File Выбрать файл шаблона - + Template (*.svg) Шаблон (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Технический чертёж - + Print All Pages Распечатать все страницы @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Технический чертёж - + Project shape... Проекция фигуры... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Технический чертёж - + Insert Projection Group Вставить группу проекций - + Insert multiple linked views of drawable object(s) Вставка нескольких связанных видов объектов чертежа @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Технический чертёж - + Redraw Page Обновить содержимое листа @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Технический чертёж - + Insert a simple or complex Section View Вставить вид простого или сложного сечения - + Section View Вид Сечения - + Complex Section Ступенчатый разрез @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Технический чертёж - + Insert Section View Вставить сечение Вида @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Технический чертёж - + Insert Spreadsheet View Вставить вид Электронной Таблицы - + Insert View to a spreadsheet Вставить Вид электронной таблицы @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Технический чертёж - + Insert SVG Symbol Вставить SVG знак - + Insert symbol from an SVG file Вставить символ из файла SVG @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Технический чертёж - - + + Turn View Frames On/Off Скрыть/показать элементы для редактирования чертежа @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Технический чертёж - + Insert View Вставить Вид - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Если вы хотите вставить вид из существующих объектов, выберите их перед вызовом этого инструмента. Без выбора откроется файловый браузер для вставки файла SVG или изображения. - + Do not show this message again Больше не показывать это сообщение @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Страница создания рисунка - + Create BIM View - Create BIM View + Создать представление BIM - + Create view Создать вид - + Create broken view Создать разбитое представление - + Create Projection Group Создать группу проекций - + Create Clip Создать Сечение - + ClipGroupAdd Добавить Вид в группу - + ClipGroupRemove Удалить Вид из группы - + Save page to DXF - Save page to DXF + Сохранить страницу в DXF - - + + Create Symbol Создать Знак - + Create DraftView Создать Draft Вид - + Create ArchView Создать Arch Вид - - + + Create spreadsheet view Создать электронную таблицу - + Save page to dxf Сохранить лист в DXF формате @@ -2071,158 +2071,158 @@ Without a selection, a file browser lets you select a SVG or image file. Add Extent dimension - Add Extent dimension + Добавить измерение экстента Add Area dimension - Add Area dimension + Добавить размер области Add Distance dimension - Add Distance dimension + Добавить размер расстояния Add DistanceX Chamfer dimension - Add DistanceX Chamfer dimension + Добавить размер фаски DistanceX Add horizontal chain dimensions - Add horizontal chain dimensions + Добавить размеры горизонтальной цепи Add horizontal coordinate dimensions - Add horizontal coordinate dimensions + Добавить размеры горизонтальных координат Add 3-points angle dimension - Add 3-points angle dimension + Добавить размер угла 3-х точек Add horizontal chain dimension - Add horizontal chain dimension + Добавить размеры горизонтальной цепи Add point to line Distance dimension - Add point to line Distance dimension + Добавить точку к размеру расстояния Add length dimension - Add length dimension + Добавить размер длины Add Angle dimension - Add Angle dimension + Добавить размер угла Add circle to line Distance dimension - Add circle to line Distance dimension + Добавить круг в размер расстояния Add ellipse to line Distance dimension - Add ellipse to line Distance dimension + Добавить эллипс в размер расстояния Add Radius dimension - Add Radius dimension + Добавить размер радиуса Add Arc Length dimension - Add Arc Length dimension + Добавить размер дуги длины Add circle to circle Distance dimension - Add circle to circle Distance dimension + Добавить круг в размер расстояния круга Add ellipse to ellipse Distance dimension - Add ellipse to ellipse Distance dimension + Добавить эллипс в размер расстояния эллипса Add edge length dimension - Add edge length dimension + Добавить размер длины ребра Add Diameter dimension - Add Diameter dimension + Добавить размер диаметра Add DistanceX dimension - Add DistanceX dimension + Добавить измерение расстояния X Add DistanceY Chamfer dimension - Add DistanceY Chamfer dimension + Добавить расстояние Y размера фаски Add DistanceY dimension - Add DistanceY dimension + Добавить измерение расстояния Y Add DistanceX extent dimension - Add DistanceX extent dimension + Добавить измерение расстояния X Add DistanceY extent dimension - Add DistanceY extent dimension + Добавить измерение расстояния Y Add horizontal coord dimensions - Add horizontal coord dimensions + Добавить горизонтальные размеры координат Add vertical chain dimensions - Add vertical chain dimensions + Добавить размеры вертикальной цепи Add vertical coord dimensions - Add vertical coord dimensions + Добавить вертикальные координаты Add oblique chain dimensions - Add oblique chain dimensions + Добавить размеры косой цепи Add oblique coord dimensions - Add oblique coord dimensions + Добавить размеры косых координат @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Указать размер - + Create Hatch Создать штриховку - + Update Hatch Обновить штриховку - + Remove old Hatch Удалить старые штриховки - + Create GeomHatch Создать геометрическую штриховку - - + + Create Image Создать изображение - + Drag Balloon Переместить позиционную выноску @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Перетащите размер - + Create Balloon Создать позиционную выноску - + Create ActiveView Создать активный вид @@ -2635,7 +2635,7 @@ Without a selection, a file browser lets you select a SVG or image file. Create Centerline - Create Centerline + Создать осевую линию @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Неправильное выделение - - + + No Shapes, Groups or Links in this selection Нет Фигур, Групп или Ссылок в выделении - + Empty selection Пустой выбор - + Select a SVG or Image file to open Выберите SVG или файл изображения для открытия - + SVG or Image files SVG или файлы изображений - + Please select objects to break or a base view and break definition objects. Выберите объекты для разрушения или базовый вид и объекты определения разрыва. - + No Break objects found in this selection В этом выделенном фрагменте не найдено объектов Break - - + + Select at least 1 DrawViewPart object as Base. Выберите хотя бы один вид детали как базовый. - + I do not know what base view to use. Я не знаю, какой базовый обзор использовать. - + No Base View, Shapes, Groups or Links in this selection В этом выборе нет базового вида, фигур, групп или ссылок - + No profile object found in selection Не найдено объектов профиля в выборке - + Please select only 1 BIM Section. - Please select only 1 BIM Section. + Пожалуйста, выберите только 1 раздел BIM. - + No BIM Sections in selection. - No BIM Sections in selection. + Нет BIM разделов в выбранном виде. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Сначала выберите объект - + Too many objects selected Выбрано слишком много объектов - + Create a page first. Сначала создайте страницу. - + No View of a Part in selection. Нет видов детали в выбранном. - + Select one Clip group and one View. Выберите одну группу и один Вид. - + Select exactly one View to add to group. Выберите ровно одно представление для добавления в группу. - + Select exactly one Clip group. Вы можете выбрать только одну группу. - + Clip and View must be from same Page. Сечение и вид должны быть из одного листа. - + Select exactly one View to remove from Group. Выберите ровно одно представление для удаления из группы. - + View does not belong to a Clip Вид не принадлежит сечению - + Choose an SVG file to open Выберите файл SVG для открытия - + Scalable Vector Graphic Масштабируемая векторная графика - - + + All Files Все файлы - + Select at least one object. Выберите хотя бы один объект. - + Select exactly one Spreadsheet object. Выберите только один объект типа Таблица. - + No Drawing View Нет видов чертежа - + Open Drawing View before attempting export to SVG. Открыть вид чертежа перед экспортом в SVG. - + Can not export selection Невозможно экспортировать выбранное - + Page contains DrawViewArch which will not be exported. Continue? Страница содержит DrawViewArch, который не будет экспортирован. Продолжить? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Предупреждение кривой BSpline - - + + @@ -3147,7 +3147,7 @@ Without a selection, a file browser lets you select a SVG or image file. Selection contains both 2d and 3d geometry - Selection contains both 2d and 3d geometry + Выборка содержит и 2d и 3d геометрию @@ -3167,27 +3167,27 @@ Without a selection, a file browser lets you select a SVG or image file. Can not make 2D dimension from selection - Can not make 2D dimension from selection + Невозможно создать 2D-размер из выделенного объекта Can not make 3D dimension from selection - Can not make 3D dimension from selection + Невозможно создать 3D-размер из выделения Selected edge is an Ellipse. Value will be approximate. Continue? - Selected edge is an Ellipse. Value will be approximate. Continue? + Выбранный край — эллипс. Значение будет приблизительным. Продолжить? Selected edge is a B-spline. Value will be approximate. Continue? - Selected edge is a B-spline. Value will be approximate. Continue? + Выбранный край — B-сплайн. Значение будет приблизительным. Продолжить? Selected edge is a B-spline and a radius/diameter can not be calculated. - Selected edge is a B-spline and a radius/diameter can not be calculated. + Выбранное ребро представляет собой B-сплайн, радиус/диаметр не может быть рассчитан. @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Нет %1 в выборе - + Replace Hatch? Заменить штриховку? - + Some Faces in selection are already hatched. Replace? Некоторые Грани в выборке уже заштрихованы. Заменить? - + No TechDraw Page Отсутствует лист чертежа - + Need a TechDraw Page for this command Требуется лист чертежа для этой команды - + Select a Face first Сначала выберите поверхность - + No TechDraw object in selection В вашем выборе нет объекта технического чертежа - + Create a page to insert. Создать страницу для вставки. - - + + No Faces to hatch in this selection Нет граней для штриховки в этом выделении @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.В документе нет страниц чертежа. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Все файлы (*.*) - + Export Page As PDF Экспорт листа в PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Экспорт листа в SVG @@ -3589,7 +3589,7 @@ Without a selection, a file browser lets you select a SVG or image file. Toggle Keep Updated - Toggle Keep Updated + Переключить - Следите за обновлениями @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Выберите знак - + ActiveView to TD View Активный вид в вид TD - + No Main Window Нет главного окна - + Can not find the main window Не удается найти главное окно - + No 3D Viewer Нет 3D просмотра - + Can not find a 3D viewer Не удалось найти средство 3D просмотра @@ -3921,18 +3921,18 @@ Without a selection, a file browser lets you select a SVG or image file. - %1 defines these line widths: - thin: %2 - graphic: %3 - thick: %4 + %1 определяет следующие ширины линий: +тонкая: %2 +графическая: %3 +толстая: %4 - + Create Face Hatch Создать штриховку грани - + Edit Face Hatch Изменить штриховку грани @@ -4015,10 +4015,10 @@ Without a selection, a file browser lets you select a SVG or image file. Parameter Error - Parameter Error + Ошибка параметра - + Document Name: Название документа: @@ -4514,9 +4514,9 @@ when hatching a face with a PAT pattern Limit of 64x64 pixel SVG tiles used to hatch a single face. For large scalings you might get an error about too many SVG tiles. Then you need to increase the tile limit. - Limit of 64x64 pixel SVG tiles used to hatch a single face. -For large scalings you might get an error about too many SVG tiles. -Then you need to increase the tile limit. + Ограничение на плитки SVG размером 64x64 пикселя, используемые для штриховки одной грани. +При больших масштабах может возникнуть ошибка о слишком большом количестве плиток SVG. +Тогда вам нужно увеличить лимит плиток. @@ -4590,12 +4590,12 @@ Then you need to increase the tile limit. If checked, the section annotation will be drawn on the Source view. If unchecked, no section line, arrows or symbol will be shown in the Source view. - If checked, the section annotation will be drawn on the Source view. If unchecked, no section line, arrows or symbol will be shown in the Source view. + Если флажок установлен, аннотация раздела будет нарисована на исходном виде. Если флажок не установлен, в исходном виде не будут отображаться ни линия раздела, ни стрелки, ни символы. Show Section Line in Source View - Show Section Line in Source View + Показать линию раздела в исходном представлении @@ -4610,32 +4610,37 @@ Then you need to increase the tile limit. If checked, the cut line will be drawn on the Source view. If unchecked, only the change marks, arrows and symbols will be displayed. - If checked, the cut line will be drawn on the Source view. If unchecked, only the change marks, arrows and symbols will be displayed. + Если флажок установлен, линия разреза будет нарисована на исходном виде. Если флажок не установлен, будут отображаться только метки изменений, стрелки и символы. Include Cut Line in Section Annotation - Include Cut Line in Section Annotation + Включить линию разреза в аннотацию раздела + + + + Balloon Leader Kink Length + Длина перегиба направляющей баллона Broken View Break Type - Broken View Break Type + Тип останова - сломанный вид No Break Lines - No Break Lines + Нет линий разрыва ZigZag Lines - ZigZag Lines + Зигзагообразные линии Simple Lines - Simple Lines + Простые линии @@ -4722,11 +4727,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Длина горизонтальной части выноски - - - Ballon Leader Kink Length - Длина перегиба выноски - Length of balloon leader line kink @@ -4821,12 +4821,12 @@ if you are planning to use a drawing as a 1:1 cutting guide. Break Line Style - Break Line Style + Стиль разрыва линии Style of line to be used in BrokenView. - Style of line to be used in BrokenView. + Стиль линии, который будет использоваться в ломаной проекции (BrokenView). @@ -4990,7 +4990,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. If checked FreeCAD will use a single color for all text and lines. - If checked FreeCAD will use a single color for all text and lines. + Если этот флажок установлен, FreeCAD будет использовать один цвет для всего текста и линий. @@ -5094,7 +5094,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. - Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. + Управляет размером зазора между точкой размера и началом выносной линии для размеров ASME. @@ -5114,7 +5114,7 @@ if you are planning to use a drawing as a 1:1 cutting guide. Dimensioning tools: - Dimensioning tools: + Инструменты размеров: @@ -5123,11 +5123,14 @@ if you are planning to use a drawing as a 1:1 cutting guide. 'Separated tools': Individual tools for each dimensioning tool. 'Both': You will have both the 'Dimension' tool and the separated tools. This setting is only for the toolbar. Whichever you choose, all tools are always available in the menu and through shortcuts. - Select the type of dimensioning tools for your toolbar: -'Single tool': A single tool for all dimensioning in the toolbar: Distance, Distance X / Y, Angle, Radius. (Others in dropdown) -'Separated tools': Individual tools for each dimensioning tool. -'Both': You will have both the 'Dimension' tool and the separated tools. -This setting is only for the toolbar. Whichever you choose, all tools are always available in the menu and through shortcuts. + Выберите тип инструментов для измерения размеров для панели инструментов: + +«Один инструмент»: один инструмент для всех измерений на панели инструментов: расстояние, расстояние X / Y, угол, радиус. (Другие в раскрывающемся списке) + +«Разделенные инструменты»: отдельные инструменты для каждого инструмента измерения размеров. + +«Оба»: у вас будет как инструмент «Размер», так и отдельные инструменты. +Эта настройка только для панели инструментов. Какой бы вариант вы ни выбрали, все инструменты всегда будут доступны в меню и через сочетания клавиш. @@ -5140,10 +5143,13 @@ This setting is only for the toolbar. Whichever you choose, all tools are always 'Auto': The tool will apply radius to arcs and diameter to circles. 'Diameter': The tool will apply diameter to all. 'Radius': The tool will apply radius to all. - While using the Dimension tool you may choose how to handle circles and arcs: -'Auto': The tool will apply radius to arcs and diameter to circles. -'Diameter': The tool will apply diameter to all. -'Radius': The tool will apply radius to all. + При использовании инструмента «Размер» вы можете выбрать способ обработки окружностей и дуг: + +«Авто»: инструмент применит радиус к дугам и диаметр к окружностям. + +«Диаметр»: инструмент применит диаметр ко всем. + +«Радиус»: инструмент применит радиус ко всем. @@ -5230,7 +5236,7 @@ Multiplier of 'Font Size' Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. - Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. + Управляет размером зазора между точкой размера и началом выносной линии для размеров ISO. @@ -5247,16 +5253,16 @@ Multiplier of 'Font Size' Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. Value * linewidth is the gap. Normally, no gap is used. If using a gap, the recommended value is 8. - Controls the size of the gap between the dimension point and the start of the extension line for ISO dimensions. - Value * linewidth is the gap. - Normally, no gap is used. If using a gap, the recommended value is 8. + Управляет размером зазора между точкой размера и началом выносной линии для размеров ISO. +Значение * linewidth — это зазор. +Обычно зазор не используется. Если используется зазор, рекомендуемое значение — 8. Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. Value * linewidth is the gap. Normally, no gap is used. If using a gap, the recommended value is 6. - Controls the size of the gap between the dimension point and the start of the extension line for ASME dimensions. Value * linewidth is the gap. - Normally, no gap is used. If using a gap, the recommended value is 6. + Управляет размером зазора между точкой размера и началом выносной линии для размеров ASME. Значение * linewidth — это зазор. +Обычно зазор не используется. Если используется зазор, рекомендуемое значение — 6. @@ -5440,7 +5446,7 @@ for ProjectionGroups Preferred SVG or bitmap file for hatching. This value will also control the initial directory for choosing hatch patterns. You can use this to get hatch files from a local directory. - Preferred SVG or bitmap file for hatching. This value will also control the initial directory for choosing hatch patterns. You can use this to get hatch files from a local directory. + Предпочтительный файл SVG или bitmap для штриховки. Это значение также будет управлять исходным каталогом для выбора шаблонов штриховки. Вы можете использовать его для получения файлов штриховки из локального каталога. @@ -5510,17 +5516,17 @@ for ProjectionGroups First-angle - First-angle + Первый угол Third-angle - Third-angle + Третий угол Alternate directory to search for SVG symbol files. - Alternate directory to search for SVG symbol files. + Альтернативный каталог для поиска файлов SVG. @@ -5575,27 +5581,27 @@ for ProjectionGroups View Defaults - View Defaults + Показать по умолчанию If checked, the 3d camera direction (or normal of a selected face) will be used as the view direction. If not checked, Views will be created as Front Views. - If checked, the 3d camera direction (or normal of a selected face) will be used as the view direction. If not checked, Views will be created as Front Views. + Если отмечено, направление 3D-камеры (или нормаль выбранной грани) будет использоваться как направление вида. Если не отмечено, виды будут созданы как виды спереди. Use 3d Camera Direction - Use 3d Camera Direction + Использовать 3d направление камеры If checked, view labels will be displayed even when frames are suppressed. - If checked, view labels will be displayed even when frames are suppressed. + Если флажок установлен, метки будут отображаться даже при отключении кадров. Always Show Label - Always Show Label + Всегда показывать метку @@ -5605,22 +5611,22 @@ for ProjectionGroups Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Установите этот флажок, если вы хотите видеть привязку в выравнивание при перетаскивании. Snap View Alignment - Snap View Alignment + Выравнивание отображения привязки View Snapping Factor - View Snapping Factor + Просмотреть фактор привязки When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. - When dragging a view, if it is within this fraction of view size of the correct alignment, it will snap into alignment. + При перетаскивании вида, если он находится в пределах этой доли просмотра размера правильного выравнивания, он будет привязываться к выравниванию. @@ -5848,91 +5854,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Вкл/Выкл обновление - + Toggle &Frames Вкл/Выкл отображения маркеров редактируемых полей рамки - + &Export SVG &Экспорт в SVG - + Export DXF Экспорт в DXF - + Export PDF Экспорт в PDF - + Print All Pages Распечатать все страницы - + Different orientation Другая ориентация - + The printer uses a different orientation than the drawing. Do you want to continue? Принтер использует отличающуюся от чертежа ориентацию бумаги. Хотите продолжить? - + Different paper size Разный размер бумаги - + The printer uses a different paper size than the drawing. Do you want to continue? Принтер использует отличающийся от чертежа формат листа. Хотите продолжить? - - Opening file failed - Ошибка при открытии файла - - - - Can not open file %1 for writing. - Не удалось открыть файл %1 для записи. - - - + Save DXF file Сохранить файл в DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Сохранить PDF файл - + PDF (*.pdf) PDF (*.pdf) - + Selected: Выбрано: @@ -7241,7 +7237,7 @@ be used instead of the dimension value Line Width - Line Width + Толщина линии @@ -7294,27 +7290,27 @@ be used instead of the dimension value Select an SVG or Bitmap file - Select an SVG or Bitmap file + Выберите файл Svg или Bitmap Choose an SVG or Bitmap file as a pattern - Choose an SVG or Bitmap file as a pattern + Выберите файл Svg или Bitmap в качестве штриховки Enlarges/shrinks the pattern (SVG Only) - Enlarges/shrinks the pattern (SVG Only) + Увеличить/уменьшить штриховку (Только для Svg) Color of pattern lines (SVG Only) - Color of pattern lines (SVG Only) + Цвет линий штриховки (Только для Svg) SVG Pattern Scale - SVG Pattern Scale + Шкала стиля SVG @@ -7803,12 +7799,12 @@ using the given X/Y Spacing Horizontal space between borders of projections - Horizontal space between borders of projections + Горизонтальное пространство между границами проекций Vertical space between borders of projections - Vertical space between borders of projections + Вертикальное пространство между границами проекций @@ -8336,12 +8332,12 @@ using the given X/Y Spacing Shaft fit - Shaft fit + Посадка вала Hole fit - Hole fit + Посадка отверстия @@ -8452,17 +8448,17 @@ using the given X/Y Spacing Check this box to reapply autofill to this field. - Check this box to reapply autofill to this field. + Установите этот флажок, чтобы повторно применить автозаполнение к этому полю. Autofill - Autofill + Автозаполнение The autofill replacement value. - The autofill replacement value. + Значение автозаполнения. @@ -8484,7 +8480,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Вставить вид сложного сечения @@ -8545,7 +8541,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Вставить вид простого сечения @@ -8920,7 +8916,7 @@ using the given X/Y Spacing Repair Dimension - Repair Dimension + Восстановление измерений @@ -9323,12 +9319,12 @@ there is an open task dialog. Check this box to make an arc from start angle to end angle in a clockwise direction. - Check this box to make an arc from start angle to end angle in a clockwise direction. + Установите этот флажок, чтобы сделать дугу от начального угла до конечного угла в направлении часовой стрелки. Clockwise Angle - Clockwise Angle + Угол по часовой стрелке @@ -9353,7 +9349,7 @@ there is an open task dialog. Radius must be non-zero positive number - Radius must be non-zero positive number + Радиус должен быть не нулевым положительным числом @@ -9795,13 +9791,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Технический чертёж - - + + Insert Broken View Вставить сломанный вид @@ -9867,7 +9863,7 @@ there is an open task dialog. Insert Area Annotation - Insert Area Annotation + Вставить аннотацию области diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sl.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sl.ts index 4d6819b162..a1ff92634f 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sl.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sl.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TehRisanje - + Insert Active View (3D View) Vstavi dejavni pogled (3D pogled) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TehRisanje - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TehRisanje - + Insert Balloon Annotation Vstavi opisnico @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TehRisanje - + Insert Clip Group Vstavi izsečno skupino @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TehRisanje - + Add View to Clip Group Dodaj pogled izsečni skupini @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TehRisanje - + Remove View from Clip Group Podstrani pogled iz izsečne skupine @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TehRisanje - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TehRisanje - + Insert Detail View Uredi podrobni pogled @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TehRisanje - + Insert Draft Workbench Object Vstavi predmet iz izrisnega (Draft) delovnega okolja - + Insert a View of a Draft Workbench object Vstavi Pogled predmeta iz izrisnega (Draft) delovnega okolja @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Datoteka - + Export Page as DXF Izvozi stran kot DXF - + Save DXF file Shrani datoteko DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Datoteka - + Export Page as SVG Izvozi stran kot SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TehRisanje - + Apply Geometric Hatch to Face Uporabi geometrično črtkanje na ploskvi @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TehRisanje - + Hatch a Face using Image File Počrtkaj ploskev s pomočjo slikovne datoteke @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TehRisanje - + Insert Bitmap Image Vstavi točkovno sliko - - + + Insert Bitmap from a file into a page Vstavi v stran točkovno sliko iz datoteke - + Select an Image File Izberite datoteko slike - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Slikovne datoteke (*.jpg *.jpeg *.png *.bmp);;Vse datoteke (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TehRisanje - + Insert Default Page Vstavi privzeto stran @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TehRisanje - + Insert Page using Template Vstavi stran iz predloge - + Select a Template File Izberite datoteko predloge - + Template (*.svg) Predloga (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TehRisanje - + Print All Pages Natisni vse strani @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TehRisanje - + Project shape... Preslikaj obliko … @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TehRisanje - + Insert Projection Group Vstavi Skupino preslikav - + Insert multiple linked views of drawable object(s) Vstavite več povezanih pogledov risanega(-ih) predmeta(-ov) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TehRisanje - + Redraw Page Ponovno izriši stran @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TehRisanje - + Insert a simple or complex Section View Vstavi pogled enostavnega ali sestavljenega prereza - + Section View Prerezni pogled - + Complex Section Sestavljeni prerez @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TehRisanje - + Insert Section View Vstavi prerezni pogled @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TehRisanje - + Insert Spreadsheet View Vstavi pogled Preglednice - + Insert View to a spreadsheet Vstavi Pogled v preglednico @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TehRisanje - + Insert SVG Symbol Vstavi SVG znak - + Insert symbol from an SVG file Vstavi znak iz datoteke SVG @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TehRisanje - - + + Turn View Frames On/Off Vklopi ali izklopi Okvire Pogledov @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TehRisanje - + Insert View Vstavi pogled - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Stran izdelovanja risbe - + Create BIM View Create BIM View - + Create view Ustvari pogled - + Create broken view Create broken view - + Create Projection Group Ustvari Skupino preslikav - + Create Clip Ustvari izrezek - + ClipGroupAdd DodajIzrezekSkupine - + ClipGroupRemove OdstraniIzrezekSkupine - + Save page to DXF Save page to DXF - - + + Create Symbol Ustvari znak - + Create DraftView Ustvari izrisni (Draft) pogled - + Create ArchView Ustvari ArhitekturniPogled - - + + Create spreadsheet view Ustvari preglednični pogled - + Save page to dxf Shrani stran kot DXF @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Ustvari koto - + Create Hatch Ustvari črtkanje - + Update Hatch Posodobi črtkanje - + Remove old Hatch Odstrani staro črtkanje - + Create GeomHatch Ustvari GeometričnoČrtkanje - - + + Create Image Ustvari sliko - + Drag Balloon Vleci opisnico @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Vleci koto - + Create Balloon Ustvari opisnico - + Create ActiveView Ustvari DejavniPogled @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Napačna izbira - - + + No Shapes, Groups or Links in this selection V tem izboru ni Oblik, Skupin ali Povezav - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Izberite vsaj 1 DrawViewPart predmet kot osnovo. - + I do not know what base view to use. Ne vem, kateri osnovni pogled uporabiti. - + No Base View, Shapes, Groups or Links in this selection V tem izboru ni Osnovnega pogleda, Oblik, Skupin ali Povezav - + No profile object found in selection V izboru ni nobenega prereznega predmeta - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Izberite najprej predmet - + Too many objects selected Izbranih je preveč predmetov - + Create a page first. Najprej ustvarite stran. - + No View of a Part in selection. V izboru ni pogleda na del. - + Select one Clip group and one View. Izberite eno skupino Izrezkov in en Pogled. - + Select exactly one View to add to group. Izberi natanko en Pogled za dodajanje v skupino. - + Select exactly one Clip group. Izberi natanko eno skupino Izrezkov. - + Clip and View must be from same Page. Izrezek in Pogled morata biti iz iste Strani. - + Select exactly one View to remove from Group. Izberi natanko en Pogled za odstranitev iz skupine. - + View does not belong to a Clip Pogled ne pripada Clip-u - + Choose an SVG file to open Izberite datoteko SVG, ki jo želite odpreti - + Scalable Vector Graphic Vektorska slika spremenljive velikosti - - + + All Files Vse datoteke - + Select at least one object. Izberite vsaj en predmet. - + Select exactly one Spreadsheet object. Izberite natanko eno preglednico. - + No Drawing View Ni Risarskega pogleda - + Open Drawing View before attempting export to SVG. Odpri Drawing Pogled preden poskušaš izvoziti v datoteko SVG. - + Can not export selection Izbora ni mogoče izboziti - + Page contains DrawViewArch which will not be exported. Continue? Stran vsebuje DrawViewArch, ki se ne bo izvozil. Želite nadaljevati? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Opozorilo za krivuljo B-zlepka - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.V izboru ni: %1 - + Replace Hatch? Nadomesti črtkanje? - + Some Faces in selection are already hatched. Replace? Nekatere ploskve v izboru so že počrtkane. Želite nadomesti? - + No TechDraw Page Ni strani TehRisbe - + Need a TechDraw Page for this command Za ta ukaz potrebujete stran TehRisbe - + Select a Face first Izberi ploskev najprej - + No TechDraw object in selection V izboru ni predmeta TehRisbe - + Create a page to insert. Ustvari stran za vstavljanje. - - + + No Faces to hatch in this selection V tem izboru ni Ploskev za počrtkanje @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.V dokumentu ni strani risb. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Vse datoteke (*.*) - + Export Page As PDF Izvozi stran v PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Izvozi stran kot SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Izberite znak - + ActiveView to TD View Dejavni pogled v pogled tehnične risbe - + No Main Window Ni glavnega okna - + Can not find the main window Glavnega okna ni mogoče najti - + No 3D Viewer Ni 3D pregledovalnika - + Can not find a 3D viewer 3D pregledovalnika ni mogoče najti @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Ustvari črtkanje ploskve - + Edit Face Hatch Uredi črtkanje ploskve @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Dolžina vodoravnega dela opisnice z oblačkom - - - Ballon Leader Kink Length - Dolžina opisnice z oblačkom do preloma - Length of balloon leader line kink @@ -5851,91 +5851,81 @@ Hitro, vendar dobimo skupek kratkih ravnih črtic. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Preklopi &Ohrani Posodobljeno - + Toggle &Frames Preklopi &Okvirji - + &Export SVG &Izvozi SVG - + Export DXF Izvozi DXF - + Export PDF Izvoz PDF - + Print All Pages Natisni vse strani - + Different orientation Druga usmerjenost - + The printer uses a different orientation than the drawing. Do you want to continue? Tiskalnik uporablja drugo usmerjenost kot risba. Ali želite nadaljevati? - + Different paper size Druga velikost papirja - + The printer uses a different paper size than the drawing. Do you want to continue? Tiskalnik uporablja drugo velikost papirja kot risba. Ali želite nadaljevati? - - Opening file failed - Odpiranje datoteke ni uspelo - - - - Can not open file %1 for writing. - Datoteke %1 ni mogoče odpreti za pisanje. - - - + Save DXF file Shrani datoteko DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Izbrano: @@ -8488,7 +8478,7 @@ s pomočjo podanih X/Y odmikov TechDraw_ComplexSection - + Insert complex Section View Vstavi sestavljen prerezni pogled @@ -8549,7 +8539,7 @@ s pomočjo podanih X/Y odmikov TechDraw_SectionView - + Insert simple Section View Vstavi enostavni prerezni pogled @@ -9798,13 +9788,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TehRisbe (TechDraw) - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr-CS.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr-CS.ts index 896bc9740b..fd254e32ec 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr-CS.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr-CS.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Tehnički crteži - + Insert Active View (3D View) Umetni sliku pogleda @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Tehnički crteži - + Insert BIM Workbench Object Umetni objekat okruženja BIM - + Insert a View of a Section Plane from BIM Workbench Umetni pogled na objekat iz okruženja BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Tehnički crteži - + Insert Balloon Annotation Umetni pozicionu oznaku @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Tehnički crteži - + Insert Clip Group Umetni Grupu pogleda @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Tehnički crteži - + Add View to Clip Group Dodaj pogled u Grupu pogleda @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Tehnički crteži - + Remove View from Clip Group Ukloni pogled iz Grupe pogleda @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Tehnički crteži - + Insert Complex Section View Umetni složeni presek - + Insert a Complex Section View Umetni složeni presek @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Tehnički crteži - + Insert Detail View Umetni detaljni pogled @@ -343,17 +343,17 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawDraftView - + TechDraw Tehnički crteži - + Insert Draft Workbench Object Umetni objekat okruženja Crtanje - + Insert a View of a Draft Workbench object Umetni pogled na objekat iz okruženja Crtanje @@ -361,22 +361,22 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawExportPageDXF - + File Datoteka - + Export Page as DXF Izvezi crtež u DXF formatu - + Save DXF file Sačuvaj DXF datoteku - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawExportPageSVG - + File Datoteka - + Export Page as SVG Izvezi crtež u SVG formatu @@ -1417,12 +1417,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawGeometricHatch - + TechDraw Tehnički crteži - + Apply Geometric Hatch to Face Šrafiraj stranicu geometrijskom šrafurom @@ -1430,12 +1430,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawHatch - + TechDraw Tehnički crteži - + Hatch a Face using Image File Šrafiraj stranicu slikom iz datoteke @@ -1469,28 +1469,28 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawImage - + TechDraw Tehnički crteži - + Insert Bitmap Image Umetni rastersku sliku - - + + Insert Bitmap from a file into a page Umetni rastersku sliku iz datoteke u crtež - + Select an Image File Izaberi datoteku slike - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Slikovne datoteke (*.jpg *.jpeg *.png *.bmp);;Sve datoteke (*) @@ -1563,12 +1563,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawPageDefault - + TechDraw Tehnički crteži - + Insert Default Page Podrazumevani prazni crtež @@ -1576,22 +1576,22 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawPageTemplate - + TechDraw Tehnički crteži - + Insert Page using Template Izaberi prazni crtež - + Select a Template File Izaberi datoteku praznog crteža - + Template (*.svg) Prazni crtež (*.svg) @@ -1599,12 +1599,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawPrintAll - + TechDraw Tehnički crteži - + Print All Pages Štampaj sve stranice @@ -1612,12 +1612,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawProjectShape - + TechDraw Tehnički crteži - + Project shape... Projiciraj objekat u 3D pogled... @@ -1625,17 +1625,17 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawProjectionGroup - + TechDraw Tehnički crteži - + Insert Projection Group Umetni grupu osnovnih pogleda - + Insert multiple linked views of drawable object(s) Umetni nekoliko povezanih osnovnih pogleda objekta na crtež @@ -1669,12 +1669,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawRedrawPage - + TechDraw Tehnički crteži - + Redraw Page Osveži crtež @@ -1695,22 +1695,22 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawSectionGroup - + TechDraw Tehnički crteži - + Insert a simple or complex Section View Umetni pun ili složeni presek - + Section View Pun presek - + Complex Section Složeni presek @@ -1718,12 +1718,12 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawSectionView - + TechDraw Tehnički crteži - + Insert Section View Umetni presek @@ -1744,17 +1744,17 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawSpreadsheetView - + TechDraw Tehnički crteži - + Insert Spreadsheet View Umetni tabelu - + Insert View to a spreadsheet Umetni tabelu u crtež @@ -1865,17 +1865,17 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawSymbol - + TechDraw Tehnički crteži - + Insert SVG Symbol Umetni SVG simbol - + Insert symbol from an SVG file Umetni simbol iz SVG datoteke @@ -1883,13 +1883,13 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawToggleFrame - + TechDraw Tehnički crteži - - + + Turn View Frames On/Off Prikaži/Sakrij okvire oko pogleda @@ -1923,17 +1923,17 @@ Levi klik na prazan prostor potvrdiće trenutnu kotu. Desni klik ili pritisak n CmdTechDrawView - + TechDraw Tehnički crteži - + Insert View Umetni poglede - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Izaberi objekat koji hoćeš da umetneš u trenutni prazni crtež. Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umetnuti SVG ili slikovnu datoteku. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Ako želiš da umetneš pogled od postojećih objekata, izaberi ih pre nego što pokreneš ovu alatku. Bez izbora, otvoriće se pretraživač datoteka pomoću kojeg možeš umetnuti SVG ili slikovnu datoteku. - + Do not show this message again Ne prikazuj više ovu poruku @@ -1968,75 +1968,75 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Command - - + + Drawing create page Napravi crtež - + Create BIM View Napravi BIM pogled - + Create view Napravi pogled - + Create broken view Napravi skraćeni pogled - + Create Projection Group Napravi grupu osnovnih pogleda - + Create Clip Napravi Grupu pogleda - + ClipGroupAdd Dodaj pogled u Grupu pogleda - + ClipGroupRemove Ukloni pogled iz Grupe pogleda - + Save page to DXF Sačuvaj crtež u DXF formatu - - + + Create Symbol Napravi simbol - + Create DraftView Napravi pogled okruženja Crtanje - + Create ArchView Napravi Arch pogled - - + + Create spreadsheet view Napravi pogled of tabele - + Save page to dxf Sačuvaj crtež kao dxf @@ -2236,33 +2236,33 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Napravi kotu - + Create Hatch Napravi šrafuru - + Update Hatch Ažuriraj šrafuru - + Remove old Hatch Ukloni staru šrafuru - + Create GeomHatch Napravi geometrijsku šrafuru - - + + Create Image Napravi sliku - + Drag Balloon Prevuci pozicionu oznaku @@ -2272,12 +2272,12 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Prevuci kotu - + Create Balloon Napravi pozicionu oznaku - + Create ActiveView Napravi aktivni pogled @@ -2909,103 +2909,103 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Pogrešan izbor - - + + No Shapes, Groups or Links in this selection Nisu izabrani oblici, grupe ili veze - + Empty selection Ništa nije izabrano - + Select a SVG or Image file to open Izaberi SVG ili slikovnu datoteku - + SVG or Image files SVG ili slikovna datoteka - + Please select objects to break or a base view and break definition objects. Izaberi pogled ili objekat koji treba skratiti. - + No Break objects found in this selection Među izabranim objektima nije pronađen pogodan za skraćivanje - - + + Select at least 1 DrawViewPart object as Base. Izaberi najmanje jedan pogled kao osnovni. - + I do not know what base view to use. Ne znam koji osnovni pogled da koristim. - + No Base View, Shapes, Groups or Links in this selection Nisu izabrani oblici, grupe, veze ili osnovni pogled - + No profile object found in selection Nije izabran objekat sa profilom - + Please select only 1 BIM Section. Izaberi samo jedan BIM presek. - + No BIM Sections in selection. Nije izabran nijedan BIM presek. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet - + Select an object first Prvo izaberi objekat - + Too many objects selected Previše objekata je izabrano - + Create a page first. Prvo napravi stranicu. - + No View of a Part in selection. Nije izabran pogled dela. - + Select one Clip group and one View. Izaberi jednu Grupu pogleda i jedan pogled. - + Select exactly one View to add to group. Izaberi pogled koji želiš da dodaš u grupu. - + Select exactly one Clip group. Izaberi samo jednu Grupu pogleda. - + Clip and View must be from same Page. Grupa pogleda i pogled moraju biti sa istog crteža. - + Select exactly one View to remove from Group. Izaberi pogled koji želiš da ukloniš iz grupe. - + View does not belong to a Clip Pogled ne pripada Grupi pogleda - + Choose an SVG file to open Izaberi SVG datoteku za otvaranje - + Scalable Vector Graphic Scalable Vector Graphic - - + + All Files Sve datoteke - + Select at least one object. Izaberi bar jedan objekat. - + Select exactly one Spreadsheet object. Izaberi samo jedan tabelarni objekat. - + No Drawing View Nema pogleda crteža - + Open Drawing View before attempting export to SVG. Pre pokušaja izvoza crteža u SVG formatu moraš ga prvo napraviti. - + Can not export selection Izabrano se ne može izvesti - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Upozorenje za B-Splajn krivu - - + + @@ -3249,9 +3249,9 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet - - - + + + @@ -3300,9 +3300,9 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet - - - + + + @@ -3492,43 +3492,43 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Nije izabran %1 - + Replace Hatch? Zameni šrafuru? - + Some Faces in selection are already hatched. Replace? Neke izabrane stranice su već šrafirane. Zameniti? - + No TechDraw Page Nema crteža okruženje Tehnički crteži - + Need a TechDraw Page for this command Potreban je TechDraw crtež za ovu komandu - + Select a Face first Prvo izaberi stranicu - + No TechDraw object in selection Nije izabran objekat okruženje Tehnički crteži - + Create a page to insert. Napravi stranicu za umetanje. - - + + No Faces to hatch in this selection Nije izabrana stranica za šrafiranje @@ -3549,28 +3549,28 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Nema crteža u dokumentu. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Sve Datoteke (*.*) - + Export Page As PDF Izvezi crtež u PDF formatu - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Izvezi crtež u SVG formatu @@ -3629,27 +3629,27 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Izaberi simbol - + ActiveView to TD View ActiveView to TD View - + No Main Window Nema glavnog prozora - + Can not find the main window Ne mogu da pronađem glavni prozor - + No 3D Viewer Nema 3D prikazivača - + Can not find a 3D viewer Ne mogu da pronađem 3D prikazivač @@ -3927,12 +3927,12 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet debela: %4 - + Create Face Hatch Napravi šrafuru stranice - + Edit Face Hatch Uredi šrafuru stranice @@ -4018,7 +4018,7 @@ Ako ne izabereš ništa, otvoriće se prozor pomoću kog možeš izabrati i umet Grеška paramеtra - + Document Name: Ime dokumenta: @@ -4621,6 +4621,11 @@ potrebno je povećati ovo ograničenje. Include Cut Line in Section Annotation Prikaži i liniju preseka prilikom obeležavanja preseka + + + Balloon Leader Kink Length + Horizontalni deo pozicione oznake + Broken View Break Type @@ -4726,11 +4731,6 @@ potrebno je povećati ovo ograničenje. Length of horizontal portion of Balloon leader Dužina horizontalnog dela pozicione oznake - - - Ballon Leader Kink Length - Horizontalni deo pozicione oznake - Length of balloon leader line kink @@ -5598,22 +5598,22 @@ for ProjectionGroups Snapping - Snapping + Hvatanje za Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Označi ako želiš da se uhvati poravnati položaj pogleda prilikom prevlačanja. Snap View Alignment - Snap View Alignment + Uhvati poravnanje pogleda View Snapping Factor - View Snapping Factor + Koeficijent hvatanja pogleda @@ -5847,91 +5847,81 @@ Brzo, ali rezultat je skup kratkih pravih linija. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Toggle &Keep Updated - + Toggle &Frames Prikaži/Sakrij okvire oko pogleda - + &Export SVG &Izvezi SVG - + Export DXF Izvezi DXF - + Export PDF Izvezi PDF - + Print All Pages Štampaj sve stranice - + Different orientation Drugačija orijentacija - + The printer uses a different orientation than the drawing. Do you want to continue? Štampač koristi drugačiju orijentaciju od crteža. Da li želiš da nastaviš? - + Different paper size Drugačija veličina papira - + The printer uses a different paper size than the drawing. Do you want to continue? Štampač koristi drugačiju veličinu papira od crteža. Da li želiš da nastaviš? - - Opening file failed - Otvaranje datoteke neuspešno - - - - Can not open file %1 for writing. - Ne mogu da otvorim datoteku %1 radi upisa. - - - + Save DXF file Sačuvaj DXF datoteku - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Sačuvaj PDF datoteku - + PDF (*.pdf) PDF (*.pdf) - + Selected: Izabrano: @@ -8482,7 +8472,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Umetni polupresek, stepenasti presek ili zaokrenuti presek @@ -8543,7 +8533,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Umetni pun presek @@ -9791,13 +9781,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Tehnički crteži - - + + Insert Broken View Umetni skraćeni pogled diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr.ts index 4d98dfac06..6250a5267f 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sr.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw Технички цртежи - + Insert Active View (3D View) Уметни слику погледа @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw Технички цртежи - + Insert BIM Workbench Object Уметни објекат окружења BIM - + Insert a View of a Section Plane from BIM Workbench Уметни поглед на објекат из окружења BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw Технички цртежи - + Insert Balloon Annotation Уметни позициону ознаку @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw Технички цртежи - + Insert Clip Group Уметни Групу погледа @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw Технички цртежи - + Add View to Clip Group Додај поглед у Групу погледа @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw Технички цртежи - + Remove View from Clip Group Уклони поглед из Групе погледа @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw Технички цртежи - + Insert Complex Section View Уметни сложени пресек - + Insert a Complex Section View Уметни сложени пресек @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw Технички цртежи - + Insert Detail View Уметни детаљни поглед @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw Технички цртежи - + Insert Draft Workbench Object Уметни објекат окружења Цртање - + Insert a View of a Draft Workbench object Уметни поглед на објекат из окружења Цртање @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Датотека - + Export Page as DXF Извези цртеж у DXF формату - + Save DXF file Сачувај DXF датотеку - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Датотека - + Export Page as SVG Извези цртеж у SVG формату @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw Технички цртежи - + Apply Geometric Hatch to Face Шрафирај страницу геометријском шрафуром @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw Технички цртежи - + Hatch a Face using Image File Шрафирај страницу сликом из датотеке @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw Технички цртежи - + Insert Bitmap Image Уметни растерску слику - - + + Insert Bitmap from a file into a page Уметни растерску слику из датотеке у цртеж - + Select an Image File Изабери датотеку слике - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Сликовне датотеке (*.jpg *.jpeg *.png *.bmp);;Све датотеке (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw Технички цртежи - + Insert Default Page Подразумевани празни цртеж @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw Технички цртежи - + Insert Page using Template Изабери празни цртеж - + Select a Template File Изабери датотеку празног цртежа - + Template (*.svg) Празни цртеж (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw Технички цртежи - + Print All Pages Штампај све странице @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw Технички цртежи - + Project shape... Пројицирај објекат у 3Д поглед... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw Технички цртежи - + Insert Projection Group Уметни групу основних погледа - + Insert multiple linked views of drawable object(s) Уметни неколико повезаних основних погледа објекта на цртеж @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw Технички цртежи - + Redraw Page Освежи цртеж @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw Технички цртежи - + Insert a simple or complex Section View Уметни пун или сложени пресек - + Section View Пун пресек - + Complex Section Сложени пресек @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw Технички цртежи - + Insert Section View Уметни пресек @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw Технички цртежи - + Insert Spreadsheet View Уметни табелу - + Insert View to a spreadsheet Уметни табелу у цртеж @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw Технички цртежи - + Insert SVG Symbol Уметни SVG симбол - + Insert symbol from an SVG file Уметни симбол из SVG датотеке @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw Технички цртежи - - + + Turn View Frames On/Off Прикажи/Сакриј оквире око погледа @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw Технички цртежи - + Insert View Уметни погледе - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Ако желиш да уметнеш поглед од постојећих објеката, изабери их пре него што покренеш ову алатку. Без избора, отвориће се претраживач датотека помоћу којег можеш уметнути SVG или сликовну датотеку. - + Do not show this message again Не приказуј ову поруку поново @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Направи цртеж - + Create BIM View Направи BIM поглед - + Create view Направи поглед - + Create broken view Направи скраћени поглед - + Create Projection Group Направи групу основних погледа - + Create Clip Направи Групу погледа - + ClipGroupAdd Додај поглед у Групу погледа - + ClipGroupRemove Уклони поглед из Групе погледа - + Save page to DXF Сачувај цртеж у DXF формату - - + + Create Symbol Направи симбол - + Create DraftView Направи поглед окружења Цртање - + Create ArchView Направи поглед окружења Архитектура - - + + Create spreadsheet view Направи поглед од табеле - + Save page to dxf Сачувај цртеж као dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Направи коту - + Create Hatch Направи шрафуру - + Update Hatch Ажурирај шрафуру - + Remove old Hatch Уклони стару шрафуру - + Create GeomHatch Направи геометријску шрафуру - - + + Create Image Направи слику - + Drag Balloon Превуци позициону ознаку @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Превуци коту - + Create Balloon Направи позициону ознаку - + Create ActiveView Направи активни поглед @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Погрешан избор - - + + No Shapes, Groups or Links in this selection Нису изабрани облици, групе или везе - + Empty selection Ништа није изабрано - + Select a SVG or Image file to open Изабери SVG или сликовну датотеку - + SVG or Image files SVG или сликовна датотека - + Please select objects to break or a base view and break definition objects. Изабери поглед или објекат који треба скратити. - + No Break objects found in this selection Међу изабраним објектима није пронађен погодан за скраћивање - - + + Select at least 1 DrawViewPart object as Base. Изабери најмање један поглед као основни. - + I do not know what base view to use. Не знам који основни поглед да користим. - + No Base View, Shapes, Groups or Links in this selection Нису изабрани облици, групе, везе или основни поглед - + No profile object found in selection Није изабран објекат са профилом - + Please select only 1 BIM Section. Изабери само један BIM пресек. - + No BIM Sections in selection. Није изабран ниједан BIM пресек. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Прво изабери објекат - + Too many objects selected Превише објеката је изабрано - + Create a page first. Прво направи страницу. - + No View of a Part in selection. Није изабран поглед дела. - + Select one Clip group and one View. Изабери једну Групу погледа и један поглед. - + Select exactly one View to add to group. Изабери поглед који желиш да додаш у групу. - + Select exactly one Clip group. Изабери само једну Групу погледа. - + Clip and View must be from same Page. Група погледа и поглед морају бити са истог цртежа. - + Select exactly one View to remove from Group. Изабери поглед који желиш да уклониш из групе. - + View does not belong to a Clip Поглед не припада Групи погледа - + Choose an SVG file to open Изабери SVG датотеку за отварање - + Scalable Vector Graphic Scalable Vector Graphic - - + + All Files Све датотеке - + Select at least one object. Изабери бар један објекат. - + Select exactly one Spreadsheet object. Изабери само један табеларни објекат. - + No Drawing View Нема погледа цртежа - + Open Drawing View before attempting export to SVG. Пре покушаја извоза цртежа у SVG формату мораш га прво направити. - + Can not export selection Изабрано се не може извести - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Упозорење за Б-Сплајн криву - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Није изабран %1 - + Replace Hatch? Замени шрафуру? - + Some Faces in selection are already hatched. Replace? Неке изабране странице су већ шрафиране. Заменити? - + No TechDraw Page Нема цртежа окружења Технички цртежи - + Need a TechDraw Page for this command Потребан је TechDraw цртеж за ову команду - + Select a Face first Прво изабери страницу - + No TechDraw object in selection Није изабран објекат окружења Технички цртежи - + Create a page to insert. Направи страницу за уметање. - - + + No Faces to hatch in this selection Није изабрана страница за шрафирање @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Нема цртежа у документу. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Све Датотеке (*.*) - + Export Page As PDF Извези цртеж у PDF формату - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Извези цртеж у SVG формату @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Изабери симбол - + ActiveView to TD View ActiveView to TD View - + No Main Window Нема главног прозора - + Can not find the main window Не могу да пронађем главни прозор - + No 3D Viewer Нема 3Д приказивача - + Can not find a 3D viewer Не могу да пронађем 3Д приказивач @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Направи шрафуру странице - + Edit Face Hatch Уреди шрафуру странице @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Грешка параметра - + Document Name: Име документа: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Прикажи и линију пресека приликом обележавања пресека + + + Balloon Leader Kink Length + Хоризонтални део позиционе ознаке + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Дужина хоризонталног дела позиционе ознаке - - - Ballon Leader Kink Length - Хоризонтални део позиционе ознаке - Length of balloon leader line kink @@ -5598,22 +5598,22 @@ for ProjectionGroups Snapping - Snapping + Хватање за Check this box if you want views to snap into alignment when being dragged. - Check this box if you want views to snap into alignment when being dragged. + Означи ако желиш да се ухвати поравнати положај погледа приликом превлачања. Snap View Alignment - Snap View Alignment + Ухвати поравнање погледа View Snapping Factor - View Snapping Factor + Коефицијент хватања погледа @@ -5847,91 +5847,81 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Укљ/Искљ одржавај ажурним - + Toggle &Frames Прикажи/Сакриј оквире око погледа - + &Export SVG &Извези SVG - + Export DXF Извези DXF - + Export PDF Извези PDF - + Print All Pages Штампај све странице - + Different orientation Другачија оријентација - + The printer uses a different orientation than the drawing. Do you want to continue? Штампач користи другачију оријентацију од цртежа. Да ли желиш да наcтавиш? - + Different paper size Другачија величина папира - + The printer uses a different paper size than the drawing. Do you want to continue? Штампач користи другачију величину папира од цртежа. Да ли желиш да наставиш? - - Opening file failed - Отварање датотеке неуcпешно - - - - Can not open file %1 for writing. - Не могу да отворим датотеку %1 ради уписа. - - - + Save DXF file Сачувај DXF датотеку - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Сачувај PDF датотеку - + PDF (*.pdf) PDF (*.pdf) - + Selected: Изабрано: @@ -8482,7 +8472,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Уметни полупресек, степенасти пресек или заокренути пресек @@ -8543,7 +8533,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Уметни пун пресек @@ -9791,13 +9781,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw Технички цртежи - - + + Insert Broken View Уметни скраћени поглед diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sv-SE.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sv-SE.ts index f50e5b2dee..4b6808db84 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sv-SE.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_sv-SE.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Infoga aktiv vy (3D-vy) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Infoga ballonganteckning @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Infoga clip-grupp @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Lägg till vy i Clip-grupp @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Ta bort Vy från Clip Group @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Detaljvy för infoga @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Infoga utkast workbench-objekt - + Insert a View of a Draft Workbench object Infoga en vy av ett objekt från arbetsytan Draft @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Fil - + Export Page as DXF Exportera sida som DXF - + Save DXF file Spara DXF-fil - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Fil - + Export Page as SVG Exportera sida som SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Applicera geometrisk snittfyllning på yta @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Skrafferera en yta med en bildfil @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Infoga bitmappsbild - - + + Insert Bitmap from a file into a page Infoga Bitmapp från en fil till en sida - + Select an Image File Välj en bildfil - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Bildfiler (*.jpg *.jpeg *.png *.bmp);;Alla filer (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Infoga standardsida @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Infoga sida med hjälp av mall - + Select a Template File Välj en mallfil - + Template (*.svg) Mall (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Skriv ut alla sidor @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projekt former... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Infoga projektionsgrupp - + Insert multiple linked views of drawable object(s) Infoga flera länkade vyer av det/de inritbara objekten(erna) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Rita om Sida @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Infoga avsnittsvy @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Infoga kalkylbladsvy - + Insert View to a spreadsheet Infoga vy till ett kalkylblad @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Infoga SVG-symbol - + Insert symbol from an SVG file Infoga symbol från en SVG-fil @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Växla vyramar av/på @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View Infoga vy - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Sidan Skapa ritning - + Create BIM View Create BIM View - + Create view Skapa vy - + Create broken view Create broken view - + Create Projection Group Skapa projektionsgrupp - + Create Clip Skapa klipp - + ClipGroupAdd ClipGroupLägg till - + ClipGroupRemove ClipGroupTaBort - + Save page to DXF Save page to DXF - - + + Create Symbol Skapa symbol - + Create DraftView Skapa UtkastVy - + Create ArchView Skapa ArchView - - + + Create spreadsheet view Skapa kalkylbladsvy - + Save page to dxf Spara sida på dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Skapa dimension - + Create Hatch Skapa Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Skapa GeomHatch - - + + Create Image Skapa bild - + Drag Balloon Dra ballong @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Dra dimension - + Create Balloon Skapa ballong - + Create ActiveView Skapa ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Fel val - - + + No Shapes, Groups or Links in this selection Inga former, grupper eller länkar i den här markeringen - + Empty selection Tom markering - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Markera minst ett DrawViewPart-objekt som bas. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Markera ett objekt först - + Too many objects selected För många objekt markerade - + Create a page first. Skapa en sida först. - + No View of a Part in selection. Ingen delvy i markeringen. - + Select one Clip group and one View. Markera en beskärningsgrupp och en vy. - + Select exactly one View to add to group. Markera exakt en vy att lägga till grupp. - + Select exactly one Clip group. Markera exakt en beskärningsgrupp. - + Clip and View must be from same Page. Beskärning och vy måste vara från samma sida. - + Select exactly one View to remove from Group. Markera exakt en vy att ta bort från grupp. - + View does not belong to a Clip Vy tillhör inte en beskärning - + Choose an SVG file to open Välj en SVG fil att öppna - + Scalable Vector Graphic Skalbar vektorgrafik - - + + All Files Alla filer - + Select at least one object. Markera minst ett objekt. - + Select exactly one Spreadsheet object. Välj exakt ett sprängskissobjekt. - + No Drawing View Ingen ritningsvy - + Open Drawing View before attempting export to SVG. Öppna ritningsvy innan försök att exportera till SVG. - + Can not export selection Kan inte exportera urval - + Page contains DrawViewArch which will not be exported. Continue? Sidan innehåller DrawViewArch som inte kommer att exporteras. Fortsätta? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.B-spline-kurva-varning - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Ersätta Hatch? - + Some Faces in selection are already hatched. Replace? Vissa Ansikten i valet är redan kläckta. Ersätta? - + No TechDraw Page Ingen TechDraw-sida - + Need a TechDraw Page for this command En TechDraw-sida behövs för detta kommando - + Select a Face first Markera en yta först - + No TechDraw object in selection Inget TechDraw-objekt i markering - + Create a page to insert. Skapa en sida att infoga. - - + + No Faces to hatch in this selection Inga ytor att snittfylla i aktuell markering @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Inga Ritsidor i dokumentet. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Alla filer (*.*) - + Export Page As PDF Exportera sida som PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportera sida som SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Välj en symbol - + ActiveView to TD View ActiveView till TD-vy - + No Main Window Inget huvudfönster - + Can not find the main window Can not find the main window - + No 3D Viewer Ingen 3D-visare - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4621,6 +4621,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4726,11 +4731,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Längd på horisontell del av Ballongledare - - - Ballon Leader Kink Length - Ballon Leader Kink Längd - Length of balloon leader line kink @@ -5852,90 +5852,80 @@ Snabbt, men resultatet är en samling korta raka linjer. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Växla automatisk uppdatering - + Toggle &Frames Växla ramvisning - + &Export SVG &Exportera SVG - + Export DXF Exportera DXF - + Export PDF Exportera PDF - + Print All Pages Skriv ut alla sidor - + Different orientation Annan orientering - + The printer uses a different orientation than the drawing. Do you want to continue? Skrivaren använder en annan orientering än ritningen. Vill du fortsätta? - + Different paper size Annan pappersstorlek - + The printer uses a different paper size than the drawing. Do you want to continue? Skrivaren använder en annan pappersstorlek än ritningen. Vill du fortsätta? - - Opening file failed - Fel vid filöppning - - - - Can not open file %1 for writing. - Kan inte öppna fil %1 i skrivläge. - - - + Save DXF file Spara DXF-fil - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Spara PDF-fil - + PDF (*.pdf) PDF (*.pdf) - + Selected: Vald: @@ -8486,7 +8476,7 @@ med hjälp av det givna X/Y-avstånden TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ med hjälp av det givna X/Y-avstånden TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_tr.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_tr.ts index e4776cbe8f..23079d51e5 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_tr.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_tr.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TeknikÇizim - + Insert Active View (3D View) Etkin görünüm ekle (3B görünüm) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TeknikÇizim - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TeknikÇizim - + Insert Balloon Annotation Balon Açıklama Ekle @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TeknikÇizim - + Insert Clip Group Kesim grubu ekleyin @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TeknikÇizim - + Add View to Clip Group Görüntüyü Kesim Grubu'na ekle @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TeknikÇizim - + Remove View from Clip Group KesimGrubu'ndan görüntü çıkarın @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TeknikÇizim - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TeknikÇizim - + Insert Detail View Detay Görünümü Ekle @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TeknikÇizim - + Insert Draft Workbench Object Mimari tezgah(Arch Workbench) objesi ekle - + Insert a View of a Draft Workbench object Taslak Çalışma Tezgahının (Draft Workbench) bir görünümünü ekle @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Dosya - + Export Page as DXF Sayfayı DXF olarak dışa aktar - + Save DXF file DXF dosyası olarak kaydet - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Dosya - + Export Page as SVG Sayfayı SVG olarak dışa aktar @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TeknikÇizim - + Apply Geometric Hatch to Face Yüze Geometrik çizgilerle süleme uygula @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TeknikÇizim - + Hatch a Face using Image File Görüntü Dosyasını Kullanarak Bir Yüzü Taratın @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TeknikÇizim - + Insert Bitmap Image Bitmap resmi ekle - - + + Insert Bitmap from a file into a page Bir dosyadan bir sayfaya bir bitmap ekler - + Select an Image File Bir Resim Dosyası Seç - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TeknikÇizim - + Insert Default Page Yeni varsayılan sayfa ekle @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TeknikÇizim - + Insert Page using Template Şablondan yeni bir sayfa ekle - + Select a Template File Şablon dosyası seçin - + Template (*.svg) Şablon (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TeknikÇizim - + Print All Pages Tüm Sayfaları Yazdır @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TeknikÇizim - + Project shape... Proje şekilleri... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TeknikÇizim - + Insert Projection Group Projeksiyon grubu ekle - + Insert multiple linked views of drawable object(s) Çizilebilir nesne(ler) in çok bağlantılı görünümlerini ekle @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TeknikÇizim - + Redraw Page Sayfayı yeniden çiz @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TeknikÇizim - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Kesit Görünümü - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TeknikÇizim - + Insert Section View Kesit Görünümü Ekle @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TeknikÇizim - + Insert Spreadsheet View Hesap tablosu görünümü ekle - + Insert View to a spreadsheet Hesap tablosuna görünüm ekle @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TeknikÇizim - + Insert SVG Symbol SVG Simgesi ekle - + Insert symbol from an SVG file Bir svg dosyasından simge ekle @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TeknikÇizim - - + + Turn View Frames On/Off Görünüm Çerçevelerini Aç / Kapat @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TeknikÇizim - + Insert View Görünüm ekle - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Çizim oluşturma sayfası - + Create BIM View Create BIM View - + Create view Görünüm oluştur - + Create broken view Create broken view - + Create Projection Group Projeksiyon Grubu Oluştur - + Create Clip Pens oluştur - + ClipGroupAdd PensGrubuEkle - + ClipGroupRemove PensGrubuKaldır - + Save page to DXF Save page to DXF - - + + Create Symbol Sembol Oluştur - + Create DraftView TaslakGörünüm Oluştur - + Create ArchView MimariGörünümü Oluştur - - + + Create spreadsheet view Elektronik tablo görünümü oluştur - + Save page to dxf Sayfayı dxf olarak kaydedin @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Ölçü Oluştur - + Create Hatch Tarama Oluştur - + Update Hatch Taramayı Güncelle - + Remove old Hatch Eski Taramayı Sil - + Create GeomHatch GeoTarama oluştur - - + + Create Image Resim oluştur - + Drag Balloon Balonu Sürükle @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Ölçüyü Sürükle - + Create Balloon Balon Oluştur - + Create ActiveView AktifGörüntü Oluşturun @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Yanlış seçim - - + + No Shapes, Groups or Links in this selection Bu seçimde Şekil, Grup veya Bağlantı Yok - + Empty selection Seçimi boşalt - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. En az 1 DrawViewPart nesnesini Temel olarak seçin. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Önce bir nesne seçin - + Too many objects selected Çok fazla nesne seçili - + Create a page first. Önce bir sayfa oluşturun. - + No View of a Part in selection. Seçimde Parça Görünümü Yok. - + Select one Clip group and one View. Bir kesim Grubu ve bir görünüm seçin. - + Select exactly one View to add to group. Gruba eklemek için tam olarak bir Görünüm seçin. - + Select exactly one Clip group. Tam olarak bir Kesim grubu seçin. - + Clip and View must be from same Page. Klip ve görünümü bakarak aynı sayfada olması gerekir. - + Select exactly one View to remove from Group. Gruptan kaldırmak için tam olarak bir Görünüm seçin. - + View does not belong to a Clip Görünüm bir klibe ait değil - + Choose an SVG file to open Açmak için bir SVG dosyası seçin - + Scalable Vector Graphic Ölçeklenebilir Vektör Grafiği - - + + All Files Tüm Dosyalar - + Select at least one object. En az bir nesne seçin. - + Select exactly one Spreadsheet object. Tam olarak bir Hesap Tablosu nesnesi seçin. - + No Drawing View Çizim görünümü yok - + Open Drawing View before attempting export to SVG. Çizim Önizlemeyi açmadan SVG dosyasını dışarı aktarmayın. - + Can not export selection Seçim dışa aktarılamıyor - + Page contains DrawViewArch which will not be exported. Continue? Sayfa dışa aktarılamayan DrawViewArch içeririyor. Devam edilsin mi? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Bspline Eğri Uyarısı - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.Seçimde %1 Yok - + Replace Hatch? Kapak değiştirilsin mi? - + Some Faces in selection are already hatched. Replace? Seçimdeki bazı Yüzler zaten taralı. Değiştirilsin mi? - + No TechDraw Page TechDraw sayfa yok - + Need a TechDraw Page for this command Bu komut için bir TechDraw sayfa gerekiyor - + Select a Face first Önce bir etki alanı seçin - + No TechDraw object in selection TechDraw nesne seçimi yok - + Create a page to insert. İçeri aktarmak için bir sayfa oluşturun. - - + + No Faces to hatch in this selection Seçim içinde taranacak yüzey bulunmuyor @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.Dökümanda Teknik Resim Sayfası Yok. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Tüm dosyalar (*. *) - + Export Page As PDF Sayfayı PDF olarak dışa aktar - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Sayfayı SVG olarak dışa aktar @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Sembol seç - + ActiveView to TD View TR Görünümü' ne EtkinGörünüm - + No Main Window Ana Pencere Yok - + Can not find the main window Ana pencere bulunamıyor - + No 3D Viewer 3D Görüntüleyici Yok - + Can not find a 3D viewer 3D görüntüleyici bulunamıyor @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Yüzey Taraması Oluştur - + Edit Face Hatch Yüzey Taramasını Düzenle @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4617,6 +4617,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4722,11 +4727,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Balon başlığın yatay pay uzunluğu - - - Ballon Leader Kink Length - Balon Başlık Çevre Uzunluğu - Length of balloon leader line kink @@ -5848,90 +5848,80 @@ Hızlıdır ama sonucu, kısa düz çizgilerin derlemesidir. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Ayarla & Güncel Tut - + Toggle &Frames Ayarla & Çerçeveler - + &Export SVG &SVG olarak dışarıya aktar - + Export DXF DXF olarak dışa aktar - + Export PDF PDF olarak dışa aktar - + Print All Pages Tüm Sayfaları Yazdır - + Different orientation Ekran yönü - + The printer uses a different orientation than the drawing. Do you want to continue? Yazıcı çizim daha farklı bir yönelim kullanır. Devam etmek istiyor musunuz? - + Different paper size Farklı kağıt boyutu - + The printer uses a different paper size than the drawing. Do you want to continue? Yazıcı, çizimden farklı bir kağıt boyutu kullanıyor. Devam etmek istiyor musun? - - Opening file failed - Dosya açılamadı - - - - Can not open file %1 for writing. - %1 dosyasını yazmak için açamazsın. - - - + Save DXF file DXF dosyası olarak kaydet - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Seçili: @@ -8482,7 +8472,7 @@ gösterimleri otomatik dağıtır TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8543,7 +8533,7 @@ gösterimleri otomatik dağıtır TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9793,13 +9783,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TeknikÇizim - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_uk.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_uk.ts index 3ef5b7e949..933915a32c 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_uk.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_uk.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw ТехМалюнок - + Insert Active View (3D View) Вставити активний вид (3D перегляд) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw ТехМалюнок - + Insert BIM Workbench Object Вставити об'єкт робочого простору BIM - + Insert a View of a Section Plane from BIM Workbench Вставка вигляду площини перерізу з робочого простору BIM @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw ТехМалюнок - + Insert Balloon Annotation Вставити анотацію кулі @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw ТехМалюнок - + Insert Clip Group Вставити групу видів @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw ТехМалюнок - + Add View to Clip Group Додати Вид до Групи видів @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw ТехМалюнок - + Remove View from Clip Group Видалити Вид із Групи видів @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw ТехМалюнок - + Insert Complex Section View Вставити вигляд складного перерізу - + Insert a Complex Section View Вставка вигляду складного перерізу @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw ТехМалюнок - + Insert Detail View Вставити детальний вигляд @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw ТехМалюнок - + Insert Draft Workbench Object Вставити об'єкт з Arch Workbench - + Insert a View of a Draft Workbench object Вставити Вид чернетки в об'єкт Workbench @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Файл - + Export Page as DXF Експортувати лист у DXF - + Save DXF file Зберегти файл DXF - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Файл - + Export Page as SVG Експортувати лист у SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw ТехМалюнок - + Apply Geometric Hatch to Face Apply Geometric Hatch to Face @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw ТехМалюнок - + Hatch a Face using Image File Hatch a Face using Image File @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw ТехМалюнок - + Insert Bitmap Image Вставити растрове зображення - - + + Insert Bitmap from a file into a page Вставити на сторінку растрове зображення з файлу - + Select an Image File Обрати файл зображення - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw ТехМалюнок - + Insert Default Page Вставити сторінку за замовчуванням @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw ТехМалюнок - + Insert Page using Template Вставити сторінку з використанням шаблону - + Select a Template File Вибрати файл шаблону - + Template (*.svg) Шаблон (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw ТехМалюнок - + Print All Pages Друкувати всі сторінки @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw ТехМалюнок - + Project shape... Проект форми... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw ТехМалюнок - + Insert Projection Group Insert Projection Group - + Insert multiple linked views of drawable object(s) Insert multiple linked views of drawable object(s) @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw ТехМалюнок - + Redraw Page Redraw Page @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw ТехМалюнок - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Перегляд розділу - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw ТехМалюнок - + Insert Section View Вставити розріз @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw ТехМалюнок - + Insert Spreadsheet View Insert Spreadsheet View - + Insert View to a spreadsheet Insert View to a spreadsheet @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw ТехМалюнок - + Insert SVG Symbol Вставити SVG-символ - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw ТехМалюнок - - + + Turn View Frames On/Off Turn View Frames On/Off @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw ТехМалюнок - + Insert View Вставити вигляд - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. Якщо ви хочете вставити вигляд з наявних об'єктів, виберіть їх, перш ніж викликати цей інструмент. Без виділення буде відкрито браузер файлів, щоб вставити файл SVG або зображення. - + Do not show this message again Більше не показувати це повідомлення @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Створити сторінку креслення - + Create BIM View Create BIM View - + Create view Створити вигляд - + Create broken view Create broken view - + Create Projection Group Створити групу проєкцій - + Create Clip Створити переріз - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Створити символ - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Зберегти сторінку в dxf файл @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Створити розмір - + Create Hatch Створити штрихування - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Створити зображення - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2909,104 +2909,104 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Невірний вибір - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Порожній вибір - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Будь ласка, виберіть об'єкти для розриву або базовий вигляд та об'єкти для визначення розриву. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Select at least 1 DrawViewPart object as Base. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3014,102 +3014,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Оберіть об'єкт для початку - + Too many objects selected Обрано забагато об'єктів - + Create a page first. Спочатку створіть сторінку. - + No View of a Part in selection. No View of a Part in selection. - + Select one Clip group and one View. Select one Clip group and one View. - + Select exactly one View to add to group. Select exactly one View to add to group. - + Select exactly one Clip group. Select exactly one Clip group. - + Clip and View must be from same Page. Clip and View must be from same Page. - + Select exactly one View to remove from Group. Select exactly one View to remove from Group. - + View does not belong to a Clip View does not belong to a Clip - + Choose an SVG file to open Виберіть файл SVG для відкриття - + Scalable Vector Graphic Масштабована Векторна графіка - - + + All Files Всі файли - + Select at least one object. Оберіть принаймні один об'єкт. - + Select exactly one Spreadsheet object. Виберіть саме один об'єкт електронної таблиці. - + No Drawing View No Drawing View - + Open Drawing View before attempting export to SVG. Open Drawing View before attempting export to SVG. - + Can not export selection Can not export selection - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3124,8 +3124,8 @@ Without a selection, a file browser lets you select a SVG or image file.BSpline Curve Warning - - + + @@ -3250,9 +3250,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3301,9 +3301,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3493,43 +3493,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Replace Hatch? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page No TechDraw Page - + Need a TechDraw Page for this command Need a TechDraw Page for this command - + Select a Face first Оберіть поверхню першою - + No TechDraw object in selection No TechDraw object in selection - + Create a page to insert. Створити сторінку для вставки. - - + + No Faces to hatch in this selection No Faces to hatch in this selection @@ -3550,28 +3550,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Всі файли (*.*) - + Export Page As PDF Експорт в PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Експорт в SVG @@ -3630,27 +3630,27 @@ Without a selection, a file browser lets you select a SVG or image file.Вибрати символ - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3928,12 +3928,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4019,7 +4019,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Назва документа: @@ -4620,6 +4620,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4725,11 +4730,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Length of horizontal portion of Balloon leader - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5851,89 +5851,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Toggle &Keep Updated - + Toggle &Frames Toggle &Frames - + &Export SVG &Експорт SVG - + Export DXF Export DXF - + Export PDF Експорт в PDF - + Print All Pages Друкувати всі сторінки - + Different orientation Відмінна орієнтація - + The printer uses a different orientation than the drawing. Do you want to continue? Принтер використовує відмінну від креслення орієнтацію. Бажаєте продовжити? - + Different paper size Відмінний розмір паперу - + The printer uses a different paper size than the drawing. Do you want to continue? Принтер використовує відмінний від креслення розмір паперу. Бажаєте продовжити? - - Opening file failed - Відкриття файлу не вдалося - - - - Can not open file %1 for writing. - Can not open file %1 for writing. - - - + Save DXF file Зберегти файл DXF - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Виділено: @@ -8486,7 +8476,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8547,7 +8537,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9797,13 +9787,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw ТехМалюнок - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_val-ES.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_val-ES.ts index 6ab4b8f390..ec78f32630 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_val-ES.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_val-ES.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw TechDraw - + Insert Active View (3D View) Insereix una vista activa (vista 3D) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw TechDraw - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw TechDraw - + Insert Balloon Annotation Insereix una anotació en un globus @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw TechDraw - + Insert Clip Group Insereix un grup clip @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw TechDraw - + Add View to Clip Group Afig una vista al grup clip @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw TechDraw - + Remove View from Clip Group Elimina una vista del ClipGroup @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw TechDraw - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw TechDraw - + Insert Detail View Insereix una vista de detall @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw TechDraw - + Insert Draft Workbench Object Insereix un objecte del banc de treball d'esborranys - + Insert a View of a Draft Workbench object Insereix una vista d'un objecte d'un banc de treball d'esborrany @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File Fitxer - + Export Page as DXF Exporta la pàgina com a DXF - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File Fitxer - + Export Page as SVG Exportar una pàgina com a SVG @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face Aplica trama geomètrica a la cara @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File Tramat d'una cara utilitzant un fitxer d'imatges @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image Insereix una imatge de mapa de bits - - + + Insert Bitmap from a file into a page Insereix una imatge de mapa de bits d'un fitxer en una pàgina - + Select an Image File Selecciona un fitxer d'imatge - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page Insereix una pàgina per defecte @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template Insereix una pàgina utilitzant una plantilla - + Select a Template File Selecciona un fitxer de plantilla - + Template (*.svg) Template (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... Projecta la forma... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group Insereix un grup de projeccions - + Insert multiple linked views of drawable object(s) Insereix diverses vistes enllaçades d'objectes dibuixables @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page Torna a dibuixar una pàgina @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View Section View - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw TechDraw - + Insert Section View Insereix una vista de secció @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View Inserta una vista de full de càlcul - + Insert View to a spreadsheet Insereix vista a un full de càlcul @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol Inserta un símbol SVG - + Insert symbol from an SVG file Insert symbol from an SVG file @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off Activa o desactiva els marcs de la vista @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View Insereix vista - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page Drawing create page - + Create BIM View Create BIM View - + Create view Create view - + Create broken view Create broken view - + Create Projection Group Create Projection Group - + Create Clip Create Clip - + ClipGroupAdd ClipGroupAdd - + ClipGroupRemove ClipGroupRemove - + Save page to DXF Save page to DXF - - + + Create Symbol Create Symbol - + Create DraftView Create DraftView - + Create ArchView Create ArchView - - + + Create spreadsheet view Create spreadsheet view - + Save page to dxf Save page to dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.Create Dimension - + Create Hatch Create Hatch - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch Create GeomHatch - - + + Create Image Create Image - + Drag Balloon Drag Balloon @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.Drag Dimension - + Create Balloon Create Balloon - + Create ActiveView Create ActiveView @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection Selecció incorrecta - - + + No Shapes, Groups or Links in this selection No hi ha cap forma, grup ni enllaç en aquesta selecció - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. Seleccioneu com a mínim 1 objecte DrawViewPart com a base. - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first Seleccioneu primer un objecte - + Too many objects selected Massa objectes seleccionats - + Create a page first. Creeu una pàgina primer - + No View of a Part in selection. No hi ha cap vista d'una peça en la selecció. - + Select one Clip group and one View. Seleccioneu un grup clip i una vista. - + Select exactly one View to add to group. Seleccioneu exactament una vista per a afegir al grup. - + Select exactly one Clip group. Seleccioneu exactament un grup clip. - + Clip and View must be from same Page. Clip i Vista han de ser de la mateixa pàgina. - + Select exactly one View to remove from Group. Seleccioneu exactament una vista per a eliminar del grup. - + View does not belong to a Clip La Vista no pertany a un Clip - + Choose an SVG file to open Trieu un fitxer SVG per a obrir-lo - + Scalable Vector Graphic Gràfic vectorial escalable - - + + All Files Tots els fitxers - + Select at least one object. Seleccioneu com a mínim un objecte. - + Select exactly one Spreadsheet object. Seleccioneu exactament un sol objecte full de càlcul. - + No Drawing View Sense vistes de dibuix - + Open Drawing View before attempting export to SVG. Obri les vistes de dibuix abans d'intentar l'exportació a SVG. - + Can not export selection No es pot exportar la selecció - + Page contains DrawViewArch which will not be exported. Continue? La pàgina conté DrawViewArch que no s'exportaran. Voleu continuar? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.Advertència de corba BSpline - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? Voleu reemplaçar la trama? - + Some Faces in selection are already hatched. Replace? Algunes cares en la selecció ja tenen trama. Voleu reemplaçar-les? - + No TechDraw Page No hi ha cap pàgina TechDraw - + Need a TechDraw Page for this command Es necessita una pàgina TechDraw per a aquesta ordre - + Select a Face first Seleccioneu primer una cara - + No TechDraw object in selection No hi ha cap objecte TechDraw en la selecció - + Create a page to insert. Creeu una pàgina per a inserir. - - + + No Faces to hatch in this selection No hi ha cares on aplicar el tramat en aquesta selecció @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No hi ha cap pàgina de dibuix en el document. - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) Tots els fitxers (*.*) - + Export Page As PDF Exporta una pàgina com a PDF - + SVG (*.svg) SVG (*.svg) - + Export page as SVG Exportar una pàgina com a SVG @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.Seleccioneu un símbol - + ActiveView to TD View VistaActiva en Vista TD - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4617,6 +4617,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4722,11 +4727,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader Longitud de la part horitzontal de la línia guia del globus - - - Ballon Leader Kink Length - Llargària del plec de la línia guia del globus - Length of balloon leader line kink @@ -5846,89 +5846,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated Activa/desactiva l'&actualització automàtica - + Toggle &Frames Activa/desactiva els &marcs - + &Export SVG &Exporta SVG - + Export DXF Exporta DXF - + Export PDF Exporta a PDF - + Print All Pages Print All Pages - + Different orientation Orientació diferent - + The printer uses a different orientation than the drawing. Do you want to continue? La impressora utilitza una orientació diferent de la del dibuix. Voleu continuar? - + Different paper size Mida de paper diferent - + The printer uses a different paper size than the drawing. Do you want to continue? La impressora utilitza una mida de paper diferent de la del dibuix. Voleu continuar? - - Opening file failed - No s'ha pogut obrir el fitxer. - - - - Can not open file %1 for writing. - No s'ha pogut obrir el fitxer %1 per a escriure-hi. - - - + Save DXF file Save DXF file - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (*.pdf) - + Selected: Seleccionat: @@ -8478,7 +8468,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8539,7 +8529,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9789,13 +9779,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-CN.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-CN.ts index fe72fbc3f5..65c3df2c3e 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-CN.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-CN.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw 工程图 - + Insert Active View (3D View) 插入活动视图 (三维视图) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw 工程图 - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw 工程图 - + Insert Balloon Annotation 插入气球批注 @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw 工程图 - + Insert Clip Group 插入剪辑组 @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw 工程图 - + Add View to Clip Group 添加视图到剪辑组 @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw 工程图 - + Remove View from Clip Group 从剪辑组中删除视图 @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw 工程图 - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw 工程图 - + Insert Detail View 插入局部视图 @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw 工程图 - + Insert Draft Workbench Object 插入草稿工作台对象 - + Insert a View of a Draft Workbench object 插入底图工作台对象视图 @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File 文件 - + Export Page as DXF 以DXF格式导出页面 - + Save DXF file 保存为 Dxf 文件 - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File 文件 - + Export Page as SVG 以SVG格式导出页面 @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw 工程图 - + Apply Geometric Hatch to Face 将几何剖面线应用于面 @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw 工程图 - + Hatch a Face using Image File 使用图像文件为面打剖面线 @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw 工程图 - + Insert Bitmap Image 插入位图 - - + + Insert Bitmap from a file into a page 从文件插入位图到页面 - + Select an Image File 选择图像文件 - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw 工程图 - + Insert Default Page 插入默认页 @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw 工程图 - + Insert Page using Template 使用模板插入页面 - + Select a Template File 选择模板文件 - + Template (*.svg) 模板 (*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw 工程图 - + Print All Pages Print All Pages @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw 工程图 - + Project shape... 投影形体... @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw 工程图 - + Insert Projection Group 插入投影组 - + Insert multiple linked views of drawable object(s) 插入可绘制对象的多个关联视图 @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw 工程图 - + Redraw Page 重绘页面 @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw 工程图 - + Insert a simple or complex Section View Insert a simple or complex Section View - + Section View 截面视图 - + Complex Section Complex Section @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw 工程图 - + Insert Section View 插入剖面图 @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw 工程图 - + Insert Spreadsheet View 插入数据表视图 - + Insert View to a spreadsheet 将视图插入数据表 @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw 工程图 - + Insert SVG Symbol 插入 SVG 符号 - + Insert symbol from an SVG file 从 SVG 文件插入符号 @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw 工程图 - - + + Turn View Frames On/Off 打开或关闭视图框 @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw 工程图 - + Insert View 插入视图 - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. - + Do not show this message again Do not show this message again @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page 图纸创建页面 - + Create BIM View Create BIM View - + Create view 创建视图 - + Create broken view Create broken view - + Create Projection Group 创建投影组 - + Create Clip 创建剪辑 - + ClipGroupAdd 添加剪辑组 - + ClipGroupRemove 移除剪辑组 - + Save page to DXF Save page to DXF - - + + Create Symbol 创建符号 - + Create DraftView 创建草稿视图 - + Create ArchView 创建拱门视图 - - + + Create spreadsheet view 创建电子表格视图 - + Save page to dxf 保存页面到 dxf @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.创建尺寸 - + Create Hatch 创建剖面线 - + Update Hatch Update Hatch - + Remove old Hatch Remove old Hatch - + Create GeomHatch 创建 GeomHatch - - + + Create Image 创建图像 - + Drag Balloon 拖动气球 @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.拖动尺寸 - + Create Balloon 创建气球 - + Create ActiveView 创建活动视图 @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection 选择错误 - - + + No Shapes, Groups or Links in this selection No Shapes, Groups or Links in this selection - + Empty selection Empty selection - + Select a SVG or Image file to open Select a SVG or Image file to open - + SVG or Image files SVG or Image files - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. 选中至少1个绘制视图零件对象作为基准。 - + I do not know what base view to use. I do not know what base view to use. - + No Base View, Shapes, Groups or Links in this selection No Base View, Shapes, Groups or Links in this selection - + No profile object found in selection No profile object found in selection - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first 首先选择对象 - + Too many objects selected 选择的对象过多 - + Create a page first. 首先创建一个页面。 - + No View of a Part in selection. 没有选择中零件的视图。 - + Select one Clip group and one View. 选择一个剪辑组和一个视图。 - + Select exactly one View to add to group. 仅选择一个视图添加到组。 - + Select exactly one Clip group. 仅选择一个剪辑组。 - + Clip and View must be from same Page. 剪辑和视图必须来自同一页。 - + Select exactly one View to remove from Group. 仅选择一个视图从组中移除。 - + View does not belong to a Clip 视图不属于剪辑 - + Choose an SVG file to open 选择一个SVG文件打开 - + Scalable Vector Graphic 可缩放矢量图形 - - + + All Files 所有文件 - + Select at least one object. 请至少选择一个对象。 - + Select exactly one Spreadsheet object. 选择一个电子表格对象。 - + No Drawing View 无绘图视图 - + Open Drawing View before attempting export to SVG. 在尝试导出到 SVG 之前打开绘图视图。 - + Can not export selection 无法导出所选对象 - + Page contains DrawViewArch which will not be exported. Continue? Page contains DrawViewArch which will not be exported. Continue? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.贝赛尔曲线警告 - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.No %1 in Selection - + Replace Hatch? 替换剖面线? - + Some Faces in selection are already hatched. Replace? Some Faces in selection are already hatched. Replace? - + No TechDraw Page 无 TechDraw 页 - + Need a TechDraw Page for this command 此命令需要TechDraw 页 - + Select a Face first 先选择一个面 - + No TechDraw object in selection 选择中没有 TechDraw 对象 - + Create a page to insert. 创建一个插入页面. - - + + No Faces to hatch in this selection 在此选择中没有面可以填充剖面线 @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.No Drawing Pages in document. - + PDF (*.pdf) PDF (* pdf) - - + + All Files (*.*) 所有文件(*.*) - + Export Page As PDF 以 PDF 格式导出页面 - + SVG (*.svg) SVG (*.svg) - + Export page as SVG 以 SVG格式导出页面 @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.选择符号 - + ActiveView to TD View ActiveView to TD View - + No Main Window No Main Window - + Can not find the main window Can not find the main window - + No 3D Viewer No 3D Viewer - + Can not find a 3D viewer Can not find a 3D viewer @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch Create Face Hatch - + Edit Face Hatch Edit Face Hatch @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.Parameter Error - + Document Name: Document Name: @@ -4620,6 +4620,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4725,11 +4730,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader 气球指引线水平部分的长度 - - - Ballon Leader Kink Length - Ballon Leader Kink Length - Length of balloon leader line kink @@ -5851,89 +5851,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated 切换和保持更新 - + Toggle &Frames Toggle &Frames - + &Export SVG &导出 SVG - + Export DXF 导出 DXF - + Export PDF 导出PDF - + Print All Pages Print All Pages - + Different orientation 不同方向 - + The printer uses a different orientation than the drawing. Do you want to continue? 打印机和图纸使用了不同的定位位置。你想要继续吗? - + Different paper size 不同的图纸大小 - + The printer uses a different paper size than the drawing. Do you want to continue? 打印机和当前图纸使用了不同大小的图纸,是否继续? - - Opening file failed - 打开文件失败 - - - - Can not open file %1 for writing. - 无法打开文件“%1”进行写入。 - - - + Save DXF file 保存为 Dxf 文件 - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file Save PDF file - + PDF (*.pdf) PDF (* pdf) - + Selected: 已选择: @@ -8483,7 +8473,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View Insert complex Section View @@ -8544,7 +8534,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View Insert simple Section View @@ -9794,13 +9784,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw 工程图 - - + + Insert Broken View Insert Broken View diff --git a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-TW.ts b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-TW.ts index 11e8282275..b002908a67 100644 --- a/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-TW.ts +++ b/src/Mod/TechDraw/Gui/Resources/translations/TechDraw_zh-TW.ts @@ -88,12 +88,12 @@ CmdTechDrawActiveView - + TechDraw 工程製圖 - + Insert Active View (3D View) 插入活動視圖(3D 視圖) @@ -127,17 +127,17 @@ CmdTechDrawArchView - + TechDraw 工程製圖 - + Insert BIM Workbench Object Insert BIM Workbench Object - + Insert a View of a Section Plane from BIM Workbench Insert a View of a Section Plane from BIM Workbench @@ -145,12 +145,12 @@ CmdTechDrawBalloon - + TechDraw 工程製圖 - + Insert Balloon Annotation 插入件號圓圈註解 @@ -176,12 +176,12 @@ CmdTechDrawClipGroup - + TechDraw 工程製圖 - + Insert Clip Group 插入裁剪群組 @@ -189,12 +189,12 @@ CmdTechDrawClipGroupAdd - + TechDraw 工程製圖 - + Add View to Clip Group 添加視圖至裁剪群組 @@ -202,12 +202,12 @@ CmdTechDrawClipGroupRemove - + TechDraw 工程製圖 - + Remove View from Clip Group 自裁剪群組中移除視圖 @@ -215,17 +215,17 @@ CmdTechDrawComplexSection - + TechDraw 工程製圖 - + Insert Complex Section View Insert Complex Section View - + Insert a Complex Section View Insert a Complex Section View @@ -295,12 +295,12 @@ CmdTechDrawDetailView - + TechDraw 工程製圖 - + Insert Detail View 插入細節視圖 @@ -343,17 +343,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawDraftView - + TechDraw 工程製圖 - + Insert Draft Workbench Object 插入草圖工作台物件 - + Insert a View of a Draft Workbench object 插入由Draft Workbench 物件事角 @@ -361,22 +361,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageDXF - + File 檔案 - + Export Page as DXF 匯出為DXF檔 - + Save DXF file 儲存DXF檔 - + DXF (*.dxf) DXF (*.dxf) @@ -384,12 +384,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawExportPageSVG - + File 檔案 - + Export Page as SVG 滙出為SVG檔 @@ -1417,12 +1417,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawGeometricHatch - + TechDraw TechDraw - + Apply Geometric Hatch to Face 應用幾何填充至面 @@ -1430,12 +1430,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawHatch - + TechDraw TechDraw - + Hatch a Face using Image File 使用圖像檔來填充一個面 @@ -1469,28 +1469,28 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawImage - + TechDraw TechDraw - + Insert Bitmap Image 插入點陣圖片 - - + + Insert Bitmap from a file into a page 由一個檔案案插入點陣圖到一頁 - + Select an Image File 選擇一個影像檔 - + Image files (*.jpg *.jpeg *.png *.bmp);;All files (*) 圖片檔(*.bmp *.jpg *.png *.tif);;所有檔案 (*.*) @@ -1563,12 +1563,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageDefault - + TechDraw TechDraw - + Insert Default Page 插入預設頁 @@ -1576,22 +1576,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPageTemplate - + TechDraw TechDraw - + Insert Page using Template 插入頁使用樣板 - + Select a Template File 撰擇一個樣板檔 - + Template (*.svg) 型版(*.svg) @@ -1599,12 +1599,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawPrintAll - + TechDraw TechDraw - + Print All Pages 列印全部頁面 @@ -1612,12 +1612,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectShape - + TechDraw TechDraw - + Project shape... 專案形式 @@ -1625,17 +1625,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawProjectionGroup - + TechDraw TechDraw - + Insert Projection Group 插入專案群組 - + Insert multiple linked views of drawable object(s) 插入可繪製物件的多個可鏈接視圖 @@ -1669,12 +1669,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawRedrawPage - + TechDraw TechDraw - + Redraw Page 重繪制頁 @@ -1695,22 +1695,22 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionGroup - + TechDraw TechDraw - + Insert a simple or complex Section View 插入一簡單或複雜剖面視圖 - + Section View 剖面視圖 - + Complex Section 複雜剖面 @@ -1718,12 +1718,12 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSectionView - + TechDraw 工程製圖 - + Insert Section View 插入剖面圖 @@ -1744,17 +1744,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSpreadsheetView - + TechDraw TechDraw - + Insert Spreadsheet View 插入試算表視圖 - + Insert View to a spreadsheet 插入視圖至試算表 @@ -1865,17 +1865,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawSymbol - + TechDraw TechDraw - + Insert SVG Symbol 插入 SVG 符號 - + Insert symbol from an SVG file 從一個 SVG 檔中插入符號 @@ -1883,13 +1883,13 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawToggleFrame - + TechDraw TechDraw - - + + Turn View Frames On/Off 開/關 視圖幀 @@ -1923,17 +1923,17 @@ Left clicking on empty space will validate the current Dimension. Right clicking CmdTechDrawView - + TechDraw TechDraw - + Insert View 插入檢視 - + Insert a View in current page. Selected objects, spreadsheets or Arch WB section planes will be added. Without a selection, a file browser lets you select a SVG or image file. @@ -1942,12 +1942,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + If you want to insert a view from existing objects, please select them before invoking this tool. Without a selection, a file browser will open, to insert a SVG or image file. 如果要從現有物件中插入視圖,請在調用此工具之前選擇它們。如果沒有選擇對象,將打開檔案瀏覽器,以插入 SVG 或影像檔案。 - + Do not show this message again 不要再顯示此訊息 @@ -1968,75 +1968,75 @@ Without a selection, a file browser lets you select a SVG or image file. Command - - + + Drawing create page 繪圖建立頁面 - + Create BIM View Create BIM View - + Create view 建立視圖 - + Create broken view 建立截斷視圖 - + Create Projection Group 建立投射群組 - + Create Clip 建立裁剪 - + ClipGroupAdd 添加裁剪群組 - + ClipGroupRemove 移除裁剪群組 - + Save page to DXF Save page to DXF - - + + Create Symbol 建立符號 - + Create DraftView 建立 DraftView - + Create ArchView 建立 ArchView - - + + Create spreadsheet view 建立試算表視圖 - + Save page to dxf 儲存頁面為 DXF 格式 @@ -2236,33 +2236,33 @@ Without a selection, a file browser lets you select a SVG or image file.建立標註 - + Create Hatch 建立填充 - + Update Hatch 更新填充 - + Remove old Hatch 移除舊填充 - + Create GeomHatch 建立幾何填充(GeomHatch) - - + + Create Image 建立圖片 - + Drag Balloon 拖曳件號圓圈 @@ -2272,12 +2272,12 @@ Without a selection, a file browser lets you select a SVG or image file.拖曳標註 - + Create Balloon 建立件號圓圈 - + Create ActiveView 建立活動視圖 @@ -2909,103 +2909,103 @@ Without a selection, a file browser lets you select a SVG or image file. - - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + + Wrong selection 錯誤的選取 - - + + No Shapes, Groups or Links in this selection 此選擇中沒有形狀、群組或連結 - + Empty selection 選擇為空 - + Select a SVG or Image file to open 選擇一個 SVG 或是影像檔來開啟 - + SVG or Image files SVG 或影像檔案 - + Please select objects to break or a base view and break definition objects. Please select objects to break or a base view and break definition objects. - + No Break objects found in this selection No Break objects found in this selection - - + + Select at least 1 DrawViewPart object as Base. 選擇至少一個 DrawViewPart 物件作為基礎。 - + I do not know what base view to use. 我不知道要使用什麼基礎視圖 - + No Base View, Shapes, Groups or Links in this selection 在此選擇中沒有基礎視圖 (Base View)、形狀、群組或鏈結 - + No profile object found in selection 在選擇中找不到輪廓物件 - + Please select only 1 BIM Section. Please select only 1 BIM Section. - + No BIM Sections in selection. No BIM Sections in selection. - - - + + + - - - - + + + + Incorrect selection @@ -3013,102 +3013,102 @@ Without a selection, a file browser lets you select a SVG or image file. - + Select an object first 請先選一個物件 - + Too many objects selected 太多物件被選擇 - + Create a page first. 請先建立一個頁面 - + No View of a Part in selection. 選擇中的零件沒有視圖。 - + Select one Clip group and one View. 選擇一個裁剪群組與一個視圖 - + Select exactly one View to add to group. 請選擇正好一個視圖來加入群組。 - + Select exactly one Clip group. 選擇正好一個裁剪群組 - + Clip and View must be from same Page. 裁剪與視圖必須來自相同頁面。 - + Select exactly one View to remove from Group. 請選擇正好一個視圖來從群組中移除。 - + View does not belong to a Clip 視圖不屬於裁剪 - + Choose an SVG file to open 選擇要開啟的 SVG 檔 - + Scalable Vector Graphic 可縮放向量圖檔 - - + + All Files 所有檔案 - + Select at least one object. 至少選擇一個物件 - + Select exactly one Spreadsheet object. 請僅選擇一個試算表物件 - + No Drawing View 沒有繪圖視圖 - + Open Drawing View before attempting export to SVG. 在嘗試導出到 SVG 之前打開繪圖視圖。 - + Can not export selection 無法匯出選擇的 - + Page contains DrawViewArch which will not be exported. Continue? 頁面包含 DrawViewArch 將不會被匯出。繼續? @@ -3123,8 +3123,8 @@ Without a selection, a file browser lets you select a SVG or image file.BSpline 曲線警告 - - + + @@ -3249,9 +3249,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3300,9 +3300,9 @@ Without a selection, a file browser lets you select a SVG or image file. - - - + + + @@ -3492,43 +3492,43 @@ Without a selection, a file browser lets you select a SVG or image file.選擇中沒有 %1 - + Replace Hatch? 替代填充? - + Some Faces in selection are already hatched. Replace? 某些選擇中的面已被填充,是否更換? - + No TechDraw Page 沒有 TechDraw 頁面 - + Need a TechDraw Page for this command 本命令需要一個 TechDraw 頁面 - + Select a Face first 請先選擇一個面 - + No TechDraw object in selection 沒有 TechDraw 物件在選擇中 - + Create a page to insert. 建立要插入的頁面。 - - + + No Faces to hatch in this selection 此填充中沒有面要填充 @@ -3549,28 +3549,28 @@ Without a selection, a file browser lets you select a SVG or image file.文件中沒有繪圖頁面 - + PDF (*.pdf) PDF (*.pdf) - - + + All Files (*.*) 所有檔 (*.*) - + Export Page As PDF 匯出頁面為 PDF 檔 - + SVG (*.svg) SVG (*.svg) - + Export page as SVG 匯出頁面為 SVG 檔 @@ -3629,27 +3629,27 @@ Without a selection, a file browser lets you select a SVG or image file.選擇一個符號 - + ActiveView to TD View 活動視圖至 TD 視圖 - + No Main Window 沒有主視窗 - + Can not find the main window 找不到主視窗 - + No 3D Viewer 沒有 3D 檢視器 - + Can not find a 3D viewer 找不到 3D 檢視器 @@ -3927,12 +3927,12 @@ Without a selection, a file browser lets you select a SVG or image file. - + Create Face Hatch 建立面填充 - + Edit Face Hatch 編輯面填充 @@ -4018,7 +4018,7 @@ Without a selection, a file browser lets you select a SVG or image file.參數錯誤 - + Document Name: 文件名稱: @@ -4616,6 +4616,11 @@ Then you need to increase the tile limit. Include Cut Line in Section Annotation Include Cut Line in Section Annotation + + + Balloon Leader Kink Length + Balloon Leader Kink Length + Broken View Break Type @@ -4721,11 +4726,6 @@ Then you need to increase the tile limit. Length of horizontal portion of Balloon leader 件號圓圈指線水平部份長度 - - - Ballon Leader Kink Length - 件號圓圈指線紐結長度 - Length of balloon leader line kink @@ -5845,89 +5845,79 @@ Fast, but result is a collection of short straight lines. TechDrawGui::MDIViewPage - + Toggle &Keep Updated 切換&保持更新 - + Toggle &Frames 切換&框架 - + &Export SVG &匯出 SVG - + Export DXF 匯出 DXF - + Export PDF 匯出 PDF - + Print All Pages 列印全部頁面 - + Different orientation 不同方向 - + The printer uses a different orientation than the drawing. Do you want to continue? 印表機與圖面使用之方向不同,您要繼續嗎? - + Different paper size 紙張尺寸不同 - + The printer uses a different paper size than the drawing. Do you want to continue? 印表機與圖面之紙張尺寸不同,您要繼續嗎? - - Opening file failed - 開啟檔案失敗 - - - - Can not open file %1 for writing. - 無法開啟要寫入的檔案 %1 。 - - - + Save DXF file 儲存DXF檔 - + DXF (*.dxf) DXF (*.dxf) - + Save PDF file 儲存 PDF 檔 - + PDF (*.pdf) PDF (*.pdf) - + Selected: 已選取: @@ -8474,7 +8464,7 @@ using the given X/Y Spacing TechDraw_ComplexSection - + Insert complex Section View 插入複雜剖面視圖 @@ -8535,7 +8525,7 @@ using the given X/Y Spacing TechDraw_SectionView - + Insert simple Section View 插入簡單剖面視圖 @@ -9784,13 +9774,13 @@ there is an open task dialog. CmdTechDrawBrokenView - + TechDraw TechDraw - - + + Insert Broken View 插入截斷視圖 diff --git a/src/Mod/TechDraw/Gui/TaskActiveView.cpp b/src/Mod/TechDraw/Gui/TaskActiveView.cpp index 75147a4d14..9ef1d05a03 100644 --- a/src/Mod/TechDraw/Gui/TaskActiveView.cpp +++ b/src/Mod/TechDraw/Gui/TaskActiveView.cpp @@ -40,6 +40,7 @@ #include #include #include +#include #include "TaskActiveView.h" #include "ui_TaskActiveView.h" @@ -51,6 +52,7 @@ using namespace Gui; using namespace TechDraw; using namespace TechDrawGui; +using DU = DrawUtil; constexpr int SXGAWidth{1280}; constexpr int SXGAHeight{1024}; @@ -207,12 +209,9 @@ TechDraw::DrawViewImage* TaskActiveView::createActiveView() Base::Console().Error("ActiveView could not save file: %s\n", fileSpec.c_str()); } - //backslashes in windows fileSpec upsets python - std::regex rxBackslash("\\\\"); //this rx really means match to a single '\' - std::string noBackslash = std::regex_replace(tempName, rxBackslash, "/"); - + tempName = DU::cleanFilespecBackslash(tempName); Command::doCommand(Command::Doc, "App.getDocument('%s').%s.ImageFile = '%s'", - documentName.c_str(), imageName.c_str(), noBackslash.c_str()); + documentName.c_str(), imageName.c_str(), tempName.c_str()); Command::doCommand(Command::Doc, "App.getDocument('%s').%s.Width = %.5f", documentName.c_str(), imageName.c_str(), ui->qsbWidth->rawValue()); Command::doCommand(Command::Doc, "App.getDocument('%s').%s.Height = %.5f", documentName.c_str(), diff --git a/src/Mod/TechDraw/Gui/TaskGeomHatch.cpp b/src/Mod/TechDraw/Gui/TaskGeomHatch.cpp index 89b68fa7d0..9c4c540ce4 100644 --- a/src/Mod/TechDraw/Gui/TaskGeomHatch.cpp +++ b/src/Mod/TechDraw/Gui/TaskGeomHatch.cpp @@ -27,12 +27,14 @@ #include #include +#include #include #include #include #include #include #include +#include #include "TaskGeomHatch.h" #include "ui_TaskGeomHatch.h" @@ -42,6 +44,7 @@ using namespace Gui; using namespace TechDraw; using namespace TechDrawGui; +using DU = DrawUtil; TaskGeomHatch::TaskGeomHatch(TechDraw::DrawGeomHatch* inHatch, TechDrawGui::ViewProviderGeomHatch* inVp, bool mode) : ui(new Ui_TaskGeomHatch), @@ -91,7 +94,8 @@ void TaskGeomHatch::initUi() void TaskGeomHatch::onFileChanged() { - m_file = ui->fcFile->fileName().toUtf8().constData(); + auto filespec = Base::Tools::toStdString(ui->fcFile->fileName()); + m_file = DU::cleanFilespecBackslash(filespec); std::vector names = PATLineSpec::getPatternList(m_file); QStringList qsNames = listToQ(names); ui->cbName->clear(); diff --git a/src/Mod/TechDraw/Gui/TaskHatch.cpp b/src/Mod/TechDraw/Gui/TaskHatch.cpp index 71280a0555..7466b0309a 100644 --- a/src/Mod/TechDraw/Gui/TaskHatch.cpp +++ b/src/Mod/TechDraw/Gui/TaskHatch.cpp @@ -48,6 +48,7 @@ using namespace Gui; using namespace TechDraw; using namespace TechDrawGui; +using DU = DrawUtil; //ctor for creation TaskHatch::TaskHatch(TechDraw::DrawViewPart* inDvp, std::vector subs) : @@ -208,9 +209,11 @@ void TaskHatch::createHatch() m_hatch = static_cast(doc->getObject(FeatName.c_str())); m_hatch->Source.setValue(m_dvp, m_subs); + auto filespec = Base::Tools::toStdString(ui->fcFile->fileName()); + filespec = DU::cleanFilespecBackslash(filespec); Command::doCommand(Command::Doc, "App.activeDocument().%s.HatchPattern = '%s'", FeatName.c_str(), - Base::Tools::toStdString(ui->fcFile->fileName()).c_str()); + filespec.c_str()); //view provider properties Gui::ViewProvider* vp = Gui::Application::Instance->getDocument(doc)->getViewProvider(m_hatch); @@ -236,9 +239,11 @@ void TaskHatch::updateHatch() Command::openCommand(QT_TRANSLATE_NOOP("Command", "Update Hatch")); + auto filespec = Base::Tools::toStdString(ui->fcFile->fileName()); + filespec = DU::cleanFilespecBackslash(filespec); Command::doCommand(Command::Doc, "App.activeDocument().%s.HatchPattern = '%s'", FeatName.c_str(), - Base::Tools::toStdString(ui->fcFile->fileName()).c_str()); + filespec.c_str()); App::Color ac; ac.setValue(ui->ccColor->color()); diff --git a/src/Mod/TechDraw/Gui/ViewProviderDimension.cpp b/src/Mod/TechDraw/Gui/ViewProviderDimension.cpp index d40b75a455..2f4562640d 100644 --- a/src/Mod/TechDraw/Gui/ViewProviderDimension.cpp +++ b/src/Mod/TechDraw/Gui/ViewProviderDimension.cpp @@ -197,7 +197,7 @@ void ViewProviderDimension::setPixmapForType() } else if (getViewObject()->Type.isValue("Angle3Pt")) { sPixmap = "TechDraw_3PtAngleDimension"; } else if (getViewObject()->Type.isValue("Area")) { - sPixmap = "TechDraw_ExtensionAreaAnnotation"; + sPixmap = "TechDraw_AreaDimension"; } } diff --git a/src/Mod/Tux/NavigationIndicatorGui.py b/src/Mod/Tux/NavigationIndicatorGui.py index f7c97ec5a8..457e543eaf 100644 --- a/src/Mod/Tux/NavigationIndicatorGui.py +++ b/src/Mod/Tux/NavigationIndicatorGui.py @@ -756,7 +756,7 @@ def onOrbit(): def onOrbitShow(): """Set turntable or trackball orbit style.""" - OrbitStyle = pView.GetInt("OrbitStyle", 0) + OrbitStyle = pView.GetInt("OrbitStyle", 1) gOrbit.blockSignals(True) if OrbitStyle == 0: aTurntable.setChecked(True) diff --git a/src/Tools/plugins/widget/CMakeLists.txt b/src/Tools/plugins/widget/CMakeLists.txt index d909c156a1..9052694f28 100644 --- a/src/Tools/plugins/widget/CMakeLists.txt +++ b/src/Tools/plugins/widget/CMakeLists.txt @@ -57,7 +57,7 @@ target_compile_options(FreeCAD_widgets PRIVATE ${COMPILE_OPTIONS}) # Get the install location of a plugin to determine the path to designer plguins get_target_property(QMAKE_EXECUTABLE Qt${FREECAD_QT_MAJOR_VERSION}::qmake LOCATION) -exec_program(${QMAKE_EXECUTABLE} ARGS "-query QT_INSTALL_PLUGINS" RETURN_VALUE return_code OUTPUT_VARIABLE DEFAULT_QT_PLUGINS_DIR ) +execute_process(COMMAND ${QMAKE_EXECUTABLE} "-query" "QT_INSTALL_PLUGINS" RESULT_VARIABLE return_code OUTPUT_VARIABLE DEFAULT_QT_PLUGINS_DIR OUTPUT_STRIP_TRAILING_WHITESPACE) set(DESIGNER_PLUGIN_LOCATION ${DEFAULT_QT_PLUGINS_DIR}/designer CACHE PATH "Path where the plugin will be installed to") if (NOT IS_SUB_PROJECT)